7 5linux命令 整理中

2022-04-02 16:22:43 字數 1326 閱讀 8676

1、函式命令高於內建命令:

fucnction cd ()

cd123

取消cd命令:

unset cd

2、read命令:

read -p 'pls input your hostname:' name

#echo $name

取name值:echo $name

3、函式使用:

# function test() 必須有; 隔開;{}兩端必須有空格

hostnamectl set-hostname www

4、source a.sh 沒有執行許可權也能執行;

5、使用者改組:

linux修改使用者所在組方法

強行設定某個使用者所在組

usermod -g 使用者組 使用者名稱

把某個使用者改為 group(s)

usermod -g 使用者組 使用者名稱

把使用者新增進入某個組(s),注意:原來的使用者組還存在

usermod -a -g 使用者組 使用者名稱

6、改ip

ifconfig ens33 192.168.16.48/24 

7、改預設閘道器:route add default gw 192.168.2.254 netmask 255.255.255.0

route -n

8、檢視軟體包

which ifconfig

/usr/sbin/ifconfig

rpm -qf /usr/sbin/ifconfig

net-tools-2.0-0.17.20131004git.el7.x86_64

9、除了ping之外需要的mac

arping -i enss 192.168.2.152 有ip跟mac

10、檢視防火牆狀態:sudo ufw status

11、nfs啟動及狀態檢視、掛載:

service rpcbind restart

service nfs-kernel-server restart

systemctl status rpcbind

systemctl status nfs-kernel-server

exportfs

showmount -e

showmount -a 看幾個掛載了;

mount 192.168.16.147:/share /opt/nfs_folder

systemctl enable nfs-server.service(centos)設定開機啟動;

cat /etc/exports

/share 192.168.3.1.0/24(rw,sync,fsid=0)

CentOS7 5常用命令整理

檢視埠是否開放 firewall cmd query port 80 tcp 開啟80埠 firewall cmd add port 80 tcp permanent 開啟後要重啟防火牆 systemctl restart firewalld 檢視所有tcp型別的埠 netstat ntpl 查詢程...

CentOS7 5常用命令整理

檢視埠是否開放 firewall cmd query port 80 tcp 開啟80埠 firewall cmd add port 80 tcp permanent 開啟後要重啟防火牆 systemctl restart firewalld 檢視所有tcp型別的埠 netstat ntpl 查詢程...

CentOS7 5常用命令整理

檢視埠是否開放 firewall cmd query port 80 tcp 開啟80埠 firewall cmd add port 80 tcp permanent 開啟後要重啟防火牆 systemctl restart firewalld 檢視所有tcp型別的埠 netstat ntpl 查詢程...