Skip to main content

Command Palette

Search for a command to run...

[Ubuntu] - Instalación Zoom sin extensiones (ibus)

Updated
1 min read
[Ubuntu] - Instalación Zoom sin extensiones (ibus)
C

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

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:

  1. https://unix.stackexchange.com/questions/659739/kde-how-to-get-rid-of-ibus-sys-tray-icon-and-keep-zoom
16 views

More from this blog

C

Christian Loza Peralta

13 posts

I’m Christian Loza, passionate about software engineering and emerging technologies, focusing on software and solution architecture, and cloud, to build scalable and efficient systems.