sudo apt-get install –q
时间: 2023-10-31 14:32:36 浏览: 140
apt-get install 的用法
3星 · 编辑精心推荐
This command is incomplete and cannot be executed. The "-q" flag typically stands for "quiet" and is used to suppress output during installation. However, it needs to be followed by a package name or list of package names to install.
For example, to install the package "nginx" quietly, the command would be:
sudo apt-get install -q nginx
阅读全文