- 论坛徽章:
- 4
|
可以贴一些应用的小技巧
king_819 发表于 2011-11-11 11:58 ![]()
scp root@192.168.1.22:/home/upload/test.txt /usr/test--远程拷贝到本地test目录下
scp -r /usr/test/test.txt root@192.168.1.22:/home/upload/test--本地拷贝到远程test目录下
pkill -kill -t pts/2
useradd xx
passwd
usermod -g/G 组 用户
cat /proc/cpuinfo /proc/version lsb_release -a
ll |grep ^d--目录
ll |grep ^- --文件
mv /xx/xx .---移动到当前目录
find . -size 100000000c (>100M) find . -size +100000000c
netstat -antl | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}'
netstat -an|grep 1521 |grep EST|wc -l--统计连接池数
ps aux|grep -v PID|sort -rn -k +3|head --- 取进程占用 cpu 最高的前10个进程
ps aux|grep -v PID|sort -rn -k +4|head --- 取进程占用内存(MEM)最高的前10个进程
ps aux | grep app | grep -v "grep"---不顯示grep app本身
cat /dev/null ---清空日志
windows定时关机:at xx shutdown -s -t 00
Linux定时关机:at 10:24 2010-12-25
>init 0(ctrl+d)
at -l(列出)
at -r jobs号(删除)
59 23 * * * /usr/bin/wall "warnning:shutdown now."
0 0 * * * /sbin/shutdown -h now
vi /etc/hosts
vi /etc/sysconfig/network 改host名称
hostname 名称
umount -l--设备不忙时卸载
fuser -m /mnt/xxx--找出使用pid |
评分
-
查看全部评分
|