查看系统命令来自哪个rpm包:
yum whatprovides `which pidof`
ubuntu:
sudo apt-get install -y apt-file
apt-file update
apt-file search bin/ifconfig
# strace -c -f -p 26420
strace: Process 26420 attached with 8 threads
^Cstrace: Process 26420 detached
strace: Process 26423 detached
strace: Process 26430 detached
strace: Process 26432 detached
strace: Process 26433 detached
strace: Process 26434 detached
strace: Process 26907 detached
strace: Process 26908 detached
% time seconds usecs/call calls errors syscall
------ ----------- ----------- --------- --------- ----------------
68.22 0.115296 38432 3 2 restart_syscall
31.78 0.053713 13428 4 nanosleep
0.00 0.000002 0 8 2 futex
0.00 0.000000 0 5 rt_sigprocmask
------ ----------- ----------- --------- --------- ----------------
100.00 0.169011 20 4 total
查看一个进程的使用率
[root@appmgr ~]# top -b -n 1 -p 4191
top - 13:10:57 up 1:51, 3 users, load average: 0.00, 0.01, 0.02
Tasks: 1 total, 0 running, 1 sleeping, 0 stopped, 0 zombie
%Cpu(s): 0.0 us, 0.0 sy, 0.0 ni,100.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st
KiB Mem : 5594508 total, 5155188 free, 238040 used, 201280 buff/cache
KiB Swap: 3309564 total, 3309564 free, 0 used. 5109620 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
4191 root 20 0 162016 2224 1544 S 0.0 0.0 0:00.06 top
xargs
ls | xargs -i cp {} /tmp
-a file 从文件中读入作为sdtin
-e flag ,注意有的时候可能会是-E,flag必须是一个以空格分隔的标志,当xargs分析到含有flag这个标志的时候就停止。
-p 当每次执行一个argument的时候询问一次用户。
-n num 后面加次数,表示命令在执行的时候一次用的argument的个数,默认是用所有的。
-t 表示先打印命令,然后再执行。
-i 或者是-I,这得看linux支持了,将xargs的每项名称,一般是一行一行赋值给 {},可以用 {} 代替。
-r no-run-if-empty 当xargs的输入为空的时候则停止xargs,不用再去执行了。
-s num 命令行的最大字符数,指的是 xargs 后面那个命令的最大命令行字符数。
-L num 从标准输入一次读取 num 行送给 command 命令。
-l 同 -L。
-d delim 分隔符,默认的xargs分隔符是回车,argument的分隔符是空格,这里修改的是xargs的分隔符。
-x exit的意思,主要是配合-s使用。。
-P 修改最大的进程数,默认是1,为0时候为as many as it can ,这个例子我没有想到,应该平时都用不到的吧。
shell脚本中获取本机ip地址的方法
$ ipaddr='172.0.0.1'
$ ipaddr=$(ip addr | awk '/^[0-9]+: / {}; /inet.*global/ {print gensub(/(.*)\/(.*)/, "\\1", "g", $2)}')
$ echo $ipaddr
192.168.3.24 172.17.0.1
$ ifconfig -a|grep inet|grep -v 127.0.0.1|grep -v inet6|awk '{print $2}'|tr -d "addr:"
172.17.0.1
192.168.3.24
$ ifconfig -a|grep inet|grep -v 127.0.0.1|grep -v inet6|awk '{print $2}'|tr -d "addr:" | paste -d "," -s
172.17.0.1,192.168.3.24
根据docker mount source操作docker容器
#!/bin/bash
# Test
#docker run --restart=always -d -v /opt:/ddd centos ping www.baidu.com
#export DIR=/opt
#docker ps -qa | xargs docker inspect -f "{{.ID}} {{range .Mounts}} _{{eq .Source \"$DIR\"}}_ {{end}}"
# Usage ./dockerpause.sh /opt/dir_name
if [ -n "$1" ]; then
export DIR=$1
echo $DIR
docker ps -q | xargs -r docker inspect -f "{{.ID}} {{range .Mounts}} _{{eq .Source \"$DIR\"}}_ {{end}}" | grep _true_ | awk '{print $1}' | xargs -r docker pause
echo "success"
fi
autossh
http://linux.51yip.com/search/autossh
设置/var/log/journal/日志目录大小:
journalctl --vacuum-size=500M
Centos 安装NTFS support
# need epel
sudo yum install ntfs-3g
Windows 刷新 DNS 缓存
ipconfig /flushdns
网友评论