Questo sarà un tutorial per principianti sull'installazione e la disinstallazione dei file .deb in Ubuntu Linux.
Tratteremo solo le basi per semplicità ed eseguiremo i comandi nel modo più semplice possibile.
I primi modi di utilizzare DPKG
# Elevate as root
sudo su
# To list the file
ls
# Go to file dir
cd /home/username/Downloads
# Now installing using dpkg
dpkg -i google-chrome-stable.deb
Code language: Bash (bash)
Per la rimozione
# Find the install name of the package
dpkg -l | grep chrome
# Remove the package
dpkg -r google-chrome-stable
Code language: Bash (bash)
Il secondo modo è usare APT
# Elevate as root
sudo su
# To list the file
ls
# Go to file dir
cd /home/username/Downloads
# Now installing using APT
apt install google-chrome.deb
Code language: Bash (bash)
Per la rimozione
apt remove google-chrome-stable
Code language: Brainfuck (brainfuck)
Ecco un video di 60 secondi sull'argomento: