1 更新/etc/apt/source.list文件
把源换成
2 sudo apt-get update
3 更新系统
3.1 确保update设置勾选全部
todo 图
3.2 Alt + F2 输入update-manager
按提示升级即可
4 最好了解自己版本的EOL日期,见https://wiki.ubuntu.com/Releases
及早更新可以享受一键升级~
通用系统命令:
awk文本操作命令; -F分隔符 'BEGIN{} {$n} END{}'
sed 批量脚本-e/-f 修改文本 grep 搜索命令bash shell
bash是C语言开发的提供系统内核调用的解释器;一般是指shell脚本,
.sh开头(#!/bin/sh #!/bin/bash 都可以); 变量命名,字母,_ ;调用时前加$; 控制语句if then fi; while condition; do;done;test [-e] 是否存在
输入输出重定向 stin 0,stout1, sterr2
cat < xx.log; echo 1>xx.log; ./test.sh>xx.log 2>&1; ./test.sh>/dev/null
函数
[funciton] my_fuc[a,b]{
do st;
[return ]默认返回最后一条语句执行结果
}
my_fuc
导入文件
. 或 source