每日分享三个Linux命令,悄悄培养读者的Linux技能。
测试主机间网络连通性
ping [参数] 目标主机
参数:
ping www.baidu.com
ping -c 3 www.baidu.com
ping -c 3 -i 4 www.baidu.com
ping 96.172.13.137
ping -s 1024 -t 255 www.baidu.com
下载文件
wget [选项] URL
参数:
wget http://www.test.test.txt
wget -i urls.txt
urls.txt是文件地址集合。
wget -O file.txt http://www.test.test.txt
wget -P dir http://www.test.test.txt
wget -c http://www.test.test.txt
wget -b http://www.test.test.txt
实时查看下载进度:tail -f wget-log
远程拷贝文件
和scp
类似的命令有cp
,不过cp
只是在本机进行拷贝不能跨服务器,而且scp
传输是加密的。
scp [参数] [原路径] [目标路径]
参数:
scp [email protected] /home/hhh/file.txt D:/temp/file/
scp -r [email protected] /home/hhh/file.txt D:/temp/file/
scp ../temp/test.txt [email protected] /home/hhh/test/
scp -r ../temp [email protected] /home/hhh/test/
scp -P 8888 [email protected] /home/hhh/file.txt D:/temp/file
[1] 解锁Linux之谜:自由、安全、强大的操作系统
[2] Linux每日智囊-“man,cd,pwd”
[3] Linux每日智囊-“info,tree,stat”
[4] Linux每日智囊-“whatis,touch,which”
[5] Linux每日智囊-“mkdir,rmdir,rm”
[6] Linux每日智囊-“ls,wc,nl”
[7] Linux每日智囊-“mv,cp,md5sum”
[8] Linux每日智囊-“rename,basename,dirname”
[9] Linux每日智囊-“chown,chgrp,chmod”
[10] Linux每日智囊-“cat,more,less”
[11] Linux每日智囊-“find,chattr,file”
[12] Linux每日智囊-“grep,egrep,重定向符”
[13] Linux每日智囊-“head,tail,tac”