1、常用文件
/etc/hosts DNS设置
2、基础命令
删除文件或者文件夹:rm -rf 文件夹or文件
查看操作系统信息:uname -a
磁盘大小:df -lh
查看当前路径下文件/文件夹占用磁盘大小:du -h ./ --max-depth=1
查看cpu型号:# cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c
3、使用命令
编码转换:iconv -f gbk -t utf-8 -c text.txt -o text.out