Linux下的安装包格式
Linux安装包格式分为两种:
*.rpm 或 *.deb(Ubuntu)
Ubuntu下载与安装
Ubuntu中推荐使用apt进行下载安装。默认会从官网下载,下载慢可以从Ubuntu apt-get 中国区镜像下载
安装软件时候需要sudo执行:
指令:
sudo apt-get install 程序名
例如:
sudo apt-get install tree
如图:
Ubuntu的安装过程与安卓apk安装过程一致,一步到位
Ubuntu中软件的卸载
指令:sudo apt-get remove 程序名
示例:sudo apt-get remove tree
如图: