Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kaineer/00bb29464401c28b3641f4f8671db3b2 to your computer and use it in GitHub Desktop.
Save kaineer/00bb29464401c28b3641f4f8671db3b2 to your computer and use it in GitHub Desktop.
Zoom for Debian - Removing ibus dependency

Patching zoom_amd64.deb to remove ibus dependency

Installing ibus on Debian has a tendency to stop the keyboard working, particularly in KDE system dialogue boxes and search feilds. ibus is not really required, so patching the deb to prevent the install from also installing ibus as a required dependecy solves the problem:

S=$(mktemp -d)
dpkg -x zoom_amd64.deb $S
dpkg -e zoom_amd64.deb $S/DEBIAN
sed -i -E 's/(ibus, |, ibus)//' $S/DEBIAN/control 
dpkg -b $S zoom_amd64-no-ibus.deb 

Original info came from https://hashman.ca/zoom/

@kaineer
Copy link
Author

kaineer commented Apr 9, 2025

Проверено, работает.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment