常用到的linux shell基本命令大全(2)
常用到的linux shell基本命令大全
常用linux shell命令六、用戶和組相關(guān)命令
1、groupadd命令
功能:添加組
groupadd test1 添加test1組
groupadd -g 1111 test2 添加test2組,組id為1111
2、useradd命令
功能:添加用戶
useradd user1 添加用戶user1,home為/home/user1,組為user1
useradd -g test1 -m -d /home/test1 test1 添加用戶test1,home為/home/test1,組為test1
user list 顯示已登陸的用戶列表
3、passwd命令
功能:更改用戶密碼
passwd user1 修改用戶user1的密碼
passwd -d root 將root用戶的密碼刪除
4、userdel命令
功能:刪除用戶
userdel user1 刪除user1用戶
5、chown命令
功能:改變文件或目錄的所有者
chown user1 /dir 將/dir目錄設(shè)置為user1所有
chown -R user1.user1 /dir 將/dir目錄下所有文件和目錄,設(shè)置為user1所有,組為user1。-R遞歸到下面的每個(gè)文件和目錄
6、chgrp命令
功能:改變文件或目錄的所有組
chgrp user1 /dir 將/dir目錄設(shè)置為user1所有
7、chmod命令
功能:改變用戶的權(quán)限
chmod a+x file 將file文件設(shè)置為可執(zhí)行,腳本類文件一定要這樣設(shè)置一個(gè),否則得用bash file才能執(zhí)行
chmod 666 file 將文件file設(shè)置為可讀寫(xiě)
chmod 750 file 將文件file設(shè)置為,所有者為完全權(quán)限,同組可以讀和執(zhí)行,其他無(wú)權(quán)限
8、id命令
功能:顯示用戶的信息,包括uid、gid等
# id zhoulj
uid=500(zhoulj) gid=500(zhoulj) groups=500(zhoulj)
9、finger命令
功能:顯示用的信息
注意:debian下沒(méi)有該命令。
# finger zhoulj
Login: zhoulj Name:
Directory: /home/zhoulj Shell: /bin/bash
On since Sun May 21 07:59 (CST) on pts/0 from 192.168.1.4
No mail.
No Plan.
常用linux shell命令七、壓縮命令
1、gzip格式命令
功能:壓縮文件,gz格式的
注意:生成的文件會(huì)把源文件覆蓋
gzip -v 壓縮文件,并且顯示進(jìn)度
-d 解壓縮
gnuzip -f 解壓縮
例如:
# gzip a.sh
#ll
-rwxr-xr-x 1 root root 71 12月 18 21:08 a.sh.gz
# gzip -d a.sh.gz
#ll
-rwxr-xr-x 1 root root 48 12月 18 21:08 a.sh
2、zip格式命令
功能:壓縮和解壓縮zip命令
zip
unzip
例如:
# zip a.sh.zip a.sh
adding: a.sh (stored 0%)
# ll
-rw-r--r-- 1 root root 188 5月 21 10:37 a.sh.zip
# unzip a.sh.zip
Archive: a.sh.zip
replace a.sh? [y]es, [n]o, [A]ll, [N]one, [r]ename: r
new name: a1.sh
extracting: a1.sh
# ll
-rwxr-xr-x 1 root root 48 12月 18 21:08 a1.sh
3、bzip2根式命令
功能:bzip2格式壓縮命令,
注意:生成的文件會(huì)把源文件覆蓋
bzip2
bunzip2
例如:
# bzip2 a.sh
# ll
-rwxr-xr-x 1 root root 85 12月 18 21:08 a.sh.bz2
# bunzip2 a.sh.bz2
# ll
-rwxr-xr-x 1 root root 48 12月 18 21:08 a.sh
4、tar命令
功能:歸檔、壓縮等,比較重要,會(huì)經(jīng)常使用。
-cvf 壓縮文件或目錄
-xvf 解壓縮文件或目錄
-zcvf 壓縮文件或,格式tar.gz
-zxvf 解壓縮文件或,格式tar.gz
-zcvf 壓縮文件或,格式tgz
-zxvf 解壓縮文件或,格式tgz
舉例:
# tar cvf abc.tar *.sh
# tar xvf abc.tar
# tar czvf abc.tar.gz *.sh
# ll
-rw-r--r-- 1 root root 20480 5月 21 10:50 abc.tar
-rw-r--r-- 1 root root 1223 5月 21 10:53 abc.tar.gz
# tar xzvf abc.tar.gz
常用linux shell命令八、網(wǎng)絡(luò)相關(guān)命令
1、ifconfig命令
功能:顯示修改網(wǎng)卡的信息
ifconfig 顯示網(wǎng)絡(luò)信息
ifconfig eth0 顯示eth0網(wǎng)絡(luò)信息
修改網(wǎng)絡(luò)信息:
ifconfig eth0 192.168.1.1 netmask 255.255.255.0 設(shè)置網(wǎng)卡1的地址192.168.1.1,掩碼為255.255.255.0
ifconfig eth0:1 192.168.1.2 捆綁網(wǎng)卡1的第二個(gè)地址為192.168.1.2
ifconfig eth0:x 192.168.1.n 捆綁網(wǎng)卡1的第n個(gè)地址為192.168.1.n
例如:
# ifconfig eth0:1 192.168.1.11
# ifconfig
eth0 Link encap:Ethernet HWaddr 00:0C:29:06:9C:24
inet addr:192.168.1.5 Bcast:192.168.1.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:4220 errors:0 dropped:0 overruns:0 frame:0
TX packets:3586 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:342493 (334.4 Kb) TX bytes:469020 (458.0 Kb)
Interrupt:9 Base address:0x1400
eth0:1 Link encap:Ethernet HWaddr 00:0C:29:06:9C:24
inet addr:192.168.1.11 Bcast:192.168.1.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
Interrupt:9 Base address:0x1400
2、route命令
功能:顯示當(dāng)前路由設(shè)置情況
route 顯示當(dāng)前路由設(shè)置情況,比較慢一般不用。
route add -net 10.0.0.0 netmask 255.255.0.0 gw 192.168.1.254 添加靜態(tài)路由
route del -net 10.0.0.0 netmask 255.255.0.0 gw 192.168.1.254 添加靜態(tài)路由
route add default gw 192.168.1.1 metric1 設(shè)置192.168.1.1為默認(rèn)的路由
route del default 將默認(rèn)的路由刪除
舉例:
# route add -net 10.0.0.0 netmask 255.255.0.0 gw 192.168.1.254
# netstat -nr
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
10.0.0.0 192.168.1.254 255.255.0.0 UG 0 0 0 eth0
169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth0
0.0.0.0 192.168.1.254 0.0.0.0 UG 0 0 0 eth0
# route del -net 10.0.0.0 netmask 255.255.0.0 gw 192.168.1.254
# netstat -nr
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth0
0.0.0.0 192.168.1.254 0.0.0.0 UG 0 0 0 eth0
3、netstat命令
功能:顯示網(wǎng)絡(luò)狀態(tài)
netstat -an 查看網(wǎng)絡(luò)端口信息
netstat -nr 查看路由表信息,比route快多了,
4、啟動(dòng)網(wǎng)絡(luò)的命令
redhat族的命令:
/etc/init.d/network
debian命令:
/etc/init.d/networking
例如:
/etc/init.d/network stop 停止網(wǎng)絡(luò),
/etc/init.d/network start 啟動(dòng)網(wǎng)絡(luò),
5、手工修改網(wǎng)絡(luò)配置
(1)、debian系統(tǒng)
配置文件位置為:/etc/network/interfaces
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0 eth1
iface eth0 inet static
address 10.4.5.6
netmask 255.255.255.0
network 10.4.5.0
broadcast 10.4.5.255
iface eth1 inet static
address 219.25.5.60
netmask 255.255.255.192
network 219.25.5.0
broadcast 219.25.5.63
gateway 219.25.5.30
修改后保存配置后,運(yùn)行
/etc/init.d/networking restart
網(wǎng)絡(luò)配置就改變了
(2)、redhat系統(tǒng)
配置文件位置為:/etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
BOOTPROTO=static
BROADCAST=192.168.1.255
IPADDR=192.168.1.5
NETMASK=255.255.255.0
NETWORK=192.168.1.0
GATEWAY=192.168.1.254
ONBOOT=yes
TYPE=Ethernet
修改后保存配置后,運(yùn)行
/etc/init.d/network restart
或者
service network restart
網(wǎng)絡(luò)配置就改變了。
默認(rèn)DNS的文件的位置為:/etc/resolv.conf
#cat /etc/resolv.conf
search test.com.cn
nameserver 192.168.1.11
6、網(wǎng)絡(luò)排錯(cuò)
(1)、ping命令
功能:不說(shuō)了,不知道就用干這行了。
ping
(2)、traceroute命令
功能:路由跟蹤
traceroute
traceroute 207.68.173.7
(3)、nslookup命令
功能:域名解析排錯(cuò)
例如:
$ nslookup
Note: nslookup is deprecated and may be removed from future releases.
Consider using the `dig' or `host' programs instead. Run nslookup with
the `-sil[ent]' option to prevent this message from appearing.
>
Server: 192.168.1.11
Address: 192.168.1.11#53
Non-authoritative answer:
Name:
Address: 202.118.66.66
> server 202.118.66.6
Default server: 202.118.66.6
Address: 202.118.66.6#53
>
Server: 202.118.66.6
Address: 202.118.66.6#53
Non-authoritative answer: canonical name =
.
Name:
Address: 202.108.22.5
常用linux shell命令九、其他命令
1、ssh命令
功能:遠(yuǎn)程登陸到其他UNIX主機(jī)
ssh -l user1 192.168.1.2 使用用戶名user1登陸到192.168.1.2
ssh
使用用戶名user1登陸到192.168.1.2
2、scp命令
功能:安全copy
例如:
scp abc.tar.gz
:~ 將本地的abc.tar.gz 復(fù)制到 192.168.1.5的user1用戶的根(/home/user1)下。
3、telnet命令
功能:登陸到遠(yuǎn)程主機(jī)
例如:
telnet 192.168.1.5