Skip to content

Instantly share code, notes, and snippets.

@KristobalJunta
Created August 2, 2024 14:27
Show Gist options
  • Save KristobalJunta/e4c51b1a2290872a2651ecb7f589f160 to your computer and use it in GitHub Desktop.
Save KristobalJunta/e4c51b1a2290872a2651ecb7f589f160 to your computer and use it in GitHub Desktop.
Fix Zoom deb package: remove ibus from dependencies
#!/bin/sh
# Remove ibus from zoom .deb dependencies
# From https://unix.stackexchange.com/a/705250
set -xe
# tmp=$(mktemp -d)
# cd "${tmp}"
# name='zoom.deb'
name='zoom_amd64.deb'
# wget https://zoom.us/client/latest/zoom_amd64.deb -O "${name}"
dpkg -x "${name}" zoom
dpkg -e "${name}" zoom/DEBIAN
sed -i -E 's/(ibus, |, ibus)//' zoom/DEBIAN/control
dpkg -b zoom "${name}"
sudo dpkg -i "${name}"
rm -rf zoom
# rm -rf "${tmp}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment