tar命令
https://www.cnblogs.com/joe-four/archive/2018/11/13/cnblogs_joe_four_08.html
li(link)创建软连接
https://blog.csdn.net/u010098331/article/details/50730415
CentOS7 复制、删除、移动、压缩、解压等常用命令整理
https://blog.csdn.net/nicolas12/article/details/80890811
终端执行:
for f in stardict*.tar.bz2; do sudo tar -jxvf $f -C /usr/share/stardict/dic; done
这是利用循环解压多个文件,因为tar一次只能解压一个文件,这样就可以避免
很多重复的操作,启动软件会自动加载dic目录下的词典
上面的命令相当于$sudo tar -xjvf stardict-langdao-ec-gb-2.4.2.tar.bz2
$sudo mv stardict-langdao-ec-gb-2.4.2 /usr/share/stardict/dic/
RPM
1 #rpm -i example.rpm 安装 example.rpm 包;
2 #rpm -iv example.rpm 安装 example.rpm 包并在安装过程中显示正在安装的文件信息;
3 #rpm -ivh example.rpm 安装 example.rpm 包并在安装过程中显示正在安装的文件信息及安装进度
https://blog.csdn.net/qq_25544855/article/details/79313496
查看usb设备 使用的是哪个串口
vim命令
https://blog.csdn.net/yangshuainan/article/details/78219604
删除软件rm
https://jingyan.baidu.com/article/9faa7231ff0c73473c28cb31.html
https://jingyan.baidu.com/article/4dc4084867f91bc8d946f1eb.html
环境变量:export
https://www.cnblogs.com/whoamme/p/4039998.html
https://jingyan.baidu.com/article/0f5fb099370f146d8234ea43.html