Skip to content

Instantly share code, notes, and snippets.

@yspkm
Created October 23, 2023 07:21
Show Gist options
  • Save yspkm/a2cbe1da017d56923e20bfbcbb411c3f to your computer and use it in GitHub Desktop.
Save yspkm/a2cbe1da017d56923e20bfbcbb411c3f to your computer and use it in GitHub Desktop.
우분투 Zoom 설치

Installing Zoom Using Terminal

  1. Download the Zoom DEB installation file:

    wget https://zoom.us/client/5.16.2.8828/zoom_amd64.deb
  2. Install Zoom using the downloaded DEB file:

    sudo apt install ./zoom_amd64.deb -y

Resolving Dependency Issues During Zoom Installation

  1. Update the package database:

    sudo apt update
  2. Install necessary dependencies for Zoom:

    sudo apt install libglib2.0-0 libgstreamer-plugins-base0.10-0 libxcb-shape0 libxcb-shm0 libxcb-xfixes0 libxcb-randr0 libxcb-image0 libfontconfig1 libgl1-mesa-glx libxi6 libsm6 libxrender1 libpulse0 libxcomposite1 libxslt1.1 libsqlite3-0 libxcb-keysyms1 libxcb-xtest0 ibus

Removing Zoom

To uninstall Zoom using the terminal:

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