首页 > 代码库 > 常用shell命令操作

常用shell命令操作

1.找出系统中所有的*.c 和*.h 文件

$find / -name "*.cpp" -o -name "*.h"

2.设定 eth0 的 IP 地址为 192.168.100.2,掩码为 255.255.255.0,mtu 为 1024

http://blog.chinaunix.net/uid-27789542-id-3518668.html

例1.2:修改IP地址、掩码和MTU

# ifconfig eth0 192.168.100.100 netmask 255.255.255.128 mtu 1024

 

常用shell命令操作