centos常用命令

2021-10-23 22:18:29 字數 1817 閱讀 3418

(1)systemctl restart network

(2)/etc/rc.d/init.d/network restart

firewall-cmd --reload #過載防火牆

firewall-cmd --port-list #檢視允許通過的埠

firewall-cmd --permanent --add-port=12345/tcp #新增允許通過的埠

(1)配置僅允許制定使用者和ip登入

vi /etc/ssh/sshd_config

allowusers [email protected]

systemctl restart sshd

(2)配置自定義埠

vi /etc/ssh/sshd_config

port 22345

firewall-cmd --permanent --add-port=12345/tcp

semanage port -a -t ssh_port_t -p tcp 12345

systemctl restart sshd

(1)nmtui

(2)修改/etc/sysconfig/network-scripts/網絡卡檔案

type

=ethernet

bootproto

=static 靜態ip (如果是dhcp方式將static改為dhcp,並且把ip位址,子網掩碼,閘道器,dns伺服器位址注釋掉)

defroute

=yes

ipv4_failure_fatal

=no

ipv6init

=yes

ipv6_autoconf

=yes

ipv6_defroute

=yes

ipv6_failure_fatal

=no

name

=eno16777736

uuid

=34bbe4fa-f0b9-

4ced-

828a-f7f7e1094e4a

device

=eno16777736

onboot

=yes 在第一次裝好系統之後,這裡是no,需要手動改為yes,意為開機啟動

ipaddr

=192.168

.179

.3 ip位址

netmask

=255.255

.255

.0 子網掩碼

gateway

=192.168

.179

.2 閘道器

dns1

=114.114

.114

.114 dns伺服器位址,dhcp方式下這四者用#注釋

systemctl restart network

(1)centos6

時間同步:ntpq -p

修改時區:/etc/sysconfig/clock

修改語言: /etc/sysconfig/i18n

(2)centos7

時間同步:chronyc sources

修改時區:timedatectl set-timezone asia/shanghai

修改語言: localectl set-locale lang=zh_cn.utf-8

(1)centos6

配置檔案:/etc/sysconfig/network

(2)centos7

配置檔案:/etc/hostname

也可使用命令:hostnamectl set-hostname

CentOS常用命令

1.顯示當前目錄所有的檔案和目錄資訊 ls list ls xx目錄 檢視指定目錄下邊的檔案資訊 2.顯示當前檔案目錄位置 pwd 3.目錄之間切換 cd 目錄名字 cd 切換到上級目錄 4.切換到完全命令模式 init 3 進入命令模式 init 5 進入視覺化操作介面 5.使用者切換到超級管理員...

centos 常用命令

遠端鏈結 連交換機 telnet 192.168.1.241 username password 查埠 dis inter br 退出 ctrl 再按 quit 程序 殺程序 kill 9 5144 或 kill term 5144 9表示無條件 顯示程序 ps auxw 或 ps ef grep ...

centos 常用命令

建立目錄 mkdir p 目錄名 開啟目錄 cd 目錄名 1 cd 進入當前使用者的家目錄 2 cd 進入上次目錄 3 cd 進入上一級目錄 4 cd 進入當前目錄 檢視當前路徑 pwd 刪除目錄 rm rf 目錄名 rm 只能刪除空目錄 複製 cp 選項 目錄或檔案 目標目錄 1 r 複製目錄 2...