常用linux命令scp,grep,free
#1.远程拷贝命令
scp (-r) test rule@hadoop103:/home/rule/
(目录拷贝)文件 用户名@主机:路径
eg:
scp test.txt rule@hadoop103:/home/rule/
将当前目录下的test.txt文件拷贝到Hadoop103的rule用户的/home/rule/目录下。
#2.统计命令
grep "receive" * | wc -l
统计当前目录下所有文件的中含有receive的行数
eg:
grep "receive" rule/log/log-jar | wc -l
#3.打印含有某个单词的所在行的日志
grep -a 'receive' rule/log/log-jar
grep -a 'receive' log/log-jar|grep '6217960601241185'
#4.查看某个端口的占用情况
netstat -nlp | grep :3306
#5.查看内存使用情况
free -m --单位M
free -g --单位G
#6.查看硬盘使用情况
df -hl