linux基础命令

1、cd:切换目录命令

cd /home

2、ls :列出目录的文件信息

ls -l

3、cat :查看文件全部内容

cat test.txt

4、tail :查看文件指定行数内容

tail -n 10 test.txt

5、touch:创建文件

touch test.txt

6、mkdir:创建文件夹

mkdir testdir

7、cp:复制文件或文件夹

cp test.txt > newtext.txt

8、mv :移动文件或文件夹

mv test.txt > /dir

9、rm:删除文件或文件夹

rm test.txt

rm -rf testdir

10、find:查找文件

find / -name test.text

11、vi:编辑文件

vi test.txt

12、rename:文件重命名

rename test.txt  newtext.txt

13、chmod:文件权限修改

chmod 777 text.txt

14、history:最近历史执行过的命令

history

15、wget:下载网络资源文件

wget http://xzwk.cn/test.txt

16、top:查看资源实时用量情况(CPU、内存)

top

17、logout:注销

logout

18、reboot:重启

reboot

19、shutdown: 定时关机

shutdown -s -t 3600 //3600秒后关机

20、poweroff: 立即关机

poweroff