これは、Ubuntulinuxでの.debファイルのインストールとアンインストールに関する初心者向けチュートリアルになります。
簡単にするために基本的なことだけを説明し、可能な限り簡単な方法でコマンドを実行します。
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)
削除する場合
# Find the install name of the package
dpkg -l | grep chrome
# Remove the package
dpkg -r google-chrome-stable
Code language: Bash (bash)
2番目の方法は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)
削除する場合
apt remove google-chrome-stable
Code language: Brainfuck (brainfuck)
これがこのトピックに関する60秒のビデオです: