1、终端里 apt-get:
- 安装软件
sudo apt-get install softname1 softname2softname3……
- 卸载软件
sudo apt-get remove softname1 softname2 softname3……
- 卸载并清除配置
sudo apt-get remove --purges softname1
- 更新软件信息数据库
sudo apt-get update
- 进行系统升级
sudo apt-get upgrade
sudo apt-get distupgrade
- 搜索软件包
sudo apt-cache search softname1 softname2 softname3……
2、更新apt镜像源
- 首先备份系统自带的源,以防修改错误!
sudo cp /etc/apt/sources.list /etc/apt/sources.list.save
- 修改系统镜像源
sudo vim /etc/apt/sources.list
- 更新镜像源列表索引
sudo apt-get update
- 更新更换源后的软件版本
sudo apt-get upgrade
各镜像源地址:
https://mirrors.tuna.tsinghua.edu.cn/ #清华源
https://mirrors.aliyun.com/ubuntu/ #阿里云源
http://mirrors.163.com/ubuntu/ #网易源
https://mirrors.ustc.edu.cn/ #中科大源
http://repo.huaweicloud.com/ #华为源
3、清理cache
- 清理所有软件缓存
sudo apt-get clean
- 清理旧版本的软件缓存
sudo apt-get autoclean
- 删除系统不再使用的孤立软件
sudo apt-get autoremove