sudo apt -get update
E: Command line option 'g' [from -get] is not understood in combination with the other options.
sudo apt -get
E: Command line option 'g' [from -get] is not understood in combination with the other options.
答案1
“apt” 和 “-get” 之间有一个空格;“apt-get” 是您要使用的命令。因此:
apt-get update
apt-get upgrade
apt-get install apache2
apt-get remove apache2
等等等等。
或者,您可以使用“apt”来管理软件包。我在 16.04 中使用它,它有一些额外的功能,使它成为我使用 apt-get 的首选软件包管理器:
apt update
apt upgrade
apt install apache2
apt remove apache2
等等等等。