ifconfig 命令
查看网络信息eth0 eth1em1 em2p2p2 p2p3systemctl status network 查看网络状态
systemctl start networksystemctl stop networksystemctl restart network
网络管理
网络管理设置ipsetupservice network restart网卡配置文件/etc/sysconfig/network-scripts/ifcfg-eth0ifconfig eth0
ifconfig eth0 10.10.10.10ifconfig eth0 down
ifconfig eth0 upifdown eth0ifup eth0ifdown eth0 || ifup eth0 前一个命令正确执行,后一个命令不执行
ifdown eth0 && ifup eth0 前一个命令必须正确执行,然后执行后一个命令ifdown eth0 ; ifup eth0 不管前一个命令是否正确执行,后一个命令都要执行网卡别名
ifconfig eth0:0 10.10.10.10永久保存cd /etc/sysconfig/network-scripts/cp ifcfg-eth0 ifcfg-eth0:0vim ifcfg-eth0:0DEVICE=eth0:0BOOTPROTO=noneHWADDR=00:0c:29:d5:0b:2bONBOOT=yesIPADDR=10.10.10.10NETMASK=255.255.255.0GATEWAY=10.10.10.1TYPE=Ethernetservice netwrok restart
route -n
route add default gw 192.168.1.254route del default gw 192.168.1.254traceroute www.baidu.com
arping 192.168.1.254
arp
ping
ip addr show
主机名
hostnamehostname robin.com/etc/sysconfig/network 主机名配置文件HOSTNAME=robin.comvim /etc/hosts
192.168.1.254 robin.com开启路由转发功能
cat /proc/sys/net/ipv4/ip_forward echo 1 > /proc/sys/net/ipv4/ip_forward 查找命令1.which 2.whereis 3.grep4.locate(依赖updatedb)5.findfind / -name initrd.imgfind / -type p -lsfind / -links 10 -lsfind /home -user robin -lsfind /home -group sal -lsfind /home -nogroup -lsfind /home -nouser -lsfind /home \( -nouser -a -nogroup \) -lsfind /home \( -nouser -o -nogroup \) -lsfind /home -nouser -exec rm -rf {} \;find /home -nogroup -ok rm -rf {} \;find /home/test/ -size 300M
find /home/test/ -size +300Mfind /home/test/ -size -300Mfind /home/test/ -size +150M -a -size -350Mfind /home/test/ -size -150M -o -size +350Mtouch -m -d 20101010 aa.txt
touch -m -t 201010101010.10 aa.txtfind /home/test/ -mtime 5find /home/test/ -mtime +8find /home/test/ -mtime -8find /home/test/ -mtime +2 -a -mtime -10 find /home/test/ -mtime -2 -o -mtime +10find /home/test -perm 500 正好匹配
+500 任意匹配 -500 完全匹配find / -type f | xargs file
cut -d: -f 1 /etc/passwd | xargscut -d: -f 1 /etc/passwd | xargs mkdir