ubuntu卸载sudo apt install
时间: 2023-08-22 19:59:15 浏览: 102
ubuntu卸载
5星 · 资源好评率100%
要卸载一个软件包,你可以使用以下命令:
```
sudo apt remove <软件包名称>
```
或者如果你想连同配置文件一起卸载,可以使用:
```
sudo apt purge <软件包名称>
```
请将 `<软件包名称>` 替换为你要卸载的实际软件包的名称。例如,要卸载 Firefox 浏览器,你可以运行:
```
sudo apt remove firefox
```
或者
```
sudo apt purge firefox
```
希望对你有所帮助!如果你有其他问题,请随时提问。
阅读全文