[Ubuntu] - Instalación Zoom sin extensiones (ibus)
Introducción
Al realizar la instalación de zoom en ubuntu, trae una dependencia llamada ibus que utiliza zoom para detectar múltiples lenguajes en el sistema operativo. (leer más).
Mediante la solución de un usuario de Stack Exchange(Grief) muestra la solución para quitar esa instalación que viene acompañada.
Aplicación
Crear un script zoom.sh
con las siguientes líneas:
#!/bin/sh
set -xe
tmp=$(mktemp -d)
cd "${tmp}"
name='zoom.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 "${tmp}"
El código anterior extrae zoom de la página oficial, descarga y remueve ibus y vuelve a empaquetarlo.
Luego de crearlo ejecuté en la ruta donde está el .sh : chmod +x zoom.sh
luego ./zoom.sh
Con ello podrán disfrutar de zoom sin componentes adicionales o invasivos.
Fuentes:
Subscribe to my newsletter
Read articles from Christian Loza Peralta directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
Christian Loza Peralta
Christian Loza Peralta
I am Christian Loza Peralta, working as a technical leader specialized in software engineering and software architecture. My expertise lies in the development of scalable and secure applications, utilizing agile methodologies, as well as in the implementation of cloud-based solutions and the adoption of microservices architectures. Furthermore, my interest in philosophy and anthropology shapes my holistic approach to designing solutions that are not only technically robust but also contribute to technological culture. With a constant commitment to learning and improvement, I aim to tackle projects from a comprehensive perspective that combines technical and cultural effectiveness