linux 命令

① 查看物理CPU的个数
#cat /proc/cpuinfo |grep "physical id"|sort |uniq|wc -l 


② 查看逻辑CPU的个数
#cat /proc/cpuinfo |grep "processor"|wc -l 
24 

③ 查看CPU是几核
#cat /proc/cpuinfo |grep "cores"|uniq 
6  

free
查看内存信息:


nohup
让命令不挂断执行命令
nohup command &

history
history -c: 清空shell终端的命令历史记录

监控java线程数:
ps -eLf | grep java | wc -l

kill -9 进程号

监控网络客户连接数:
netstat -n | grep tcp | grep 侦听端口 | wc -l

top命令:
http://www.2cto.com/os/201209/157960.html


uniq [options][file1 [files]]

$ uniq -c file file中的重复行输出一次,并在每行前显示重复次数
$ uniq -d file file中的重复行输出一次,但不输出唯一的行
$ uniq -u file          只输出file中的唯一行
$ uniq file1 file2 把file1中的重复的相邻行删除,并把每行的一个拷贝送到file2

iptables

vim

cat

tail

cp/scp

mkdir

mv

awk

chmod

chgrp

chown

ls

iostat

xargs

df

你可能感兴趣的:(linux 命令)