1. 安装操作
- 安装软件~sudo apt-get install
- 卸载软件~sudo apt remove
- 更新软件~sudo apt update
- 更新已安装软件~sudo apt upgrad
----拓展:ubuntu在终端安装python包~sudo pip install
2. 文件操作
- 查看当前路径(目录)、子目录及目录内容~pwd、dir、ls
- 打开文件夹及查看文件~cd、cat
- 返回终端主目录~cd ~
- 创建目录(文件夹)~mkdir
- 强制删除~rm -rf
- 重命名文件及文件夹~mv a b
- 移动文件夹~mv /a /b
----拓展:ubuntu终端copy、paste命令:ctrl+shift+c、ctrl+shift+v