CentOS7常見命令技巧

2021-10-09 18:01:25 字數 2893 閱讀 1545

1、檢視服務狀態

[root@centos ~]

# systemctl status firewalld

● firewalld.service - firewalld - dynamic firewall daemon

loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled)

active: active (running) since 五 2020-07-17 12:50:46 cst; 10s ago

docs: man:firewalld(1)

main pid: 8352 (firewalld)

cgroup: /system.slice/firewalld.service

└─8352 /usr/bin/python2 -es /usr/sbin/firewalld --nofork --nopid

7月 17 12:50:46 centos systemd[1]: starting firewalld - dynamic firewall d..

...7月 17 12:50:46 centos systemd[1]: started firewalld - dynamic firewall daemon.

hint: some lines were ellipsized, use -l to show in full.

2、檢視防火牆狀態

[root@centos ~]

# firewall-cmd --state

running

3、關閉防火牆服務

[root@centos ~]

# systemctl stop firewalld

關閉使用start指令即可

4、關閉防火牆開機自啟動

[root@centos ~]

# systemctl disable firewalld

開機使用systemctl enable firewalld

1、檢視ip資訊

在配置網路之前我們先要知道centos的網絡卡名稱是什麼,centos7不再使用ifconfig命令,可通過命令 ip addr檢視.

[root@centos ~]

# ip addr

1: lo: mtu 65536 qdisc noqueue state unknown group default qlen 1000

link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00

inet 127.0.0.1/8 scope host lo

valid_lft forever preferred_lft forever

inet6 ::1/128 scope host

valid_lft forever preferred_lft forever

2: ens33:

mtu 1500 qdisc pfifo_fast state up group default qlen 1000

link/ether 00:0c:29:ab:c7:54 brd ff:ff:ff:ff:ff:ff

inet 192.168.52.137/24 brd 192.168.52.255 scope global noprefixroute dynamic ens33

valid_lft 1195sec preferred_lft 1195sec

inet6 fe80::ebc:2617:583c:edfb/64 scope link noprefixroute

valid_lft forever preferred_lft forever

2、重啟網路服務

[root@centos ~]

# systemctl restart network

1、修改主機名配置檔案,並且重啟系統

[root@centos ~]

# vi /etc/hostname

centos

linux資源限制配置檔案是/etc/security/limits.conf;限制使用者程序的數量對於linux系統的穩定性非常重要。limits.conf檔案限制著使用者可以使用的最大檔案數,最大執行緒,最大記憶體等資源使用量。

[root@centos ~]

# vi /etc/security/limits.conf

* soft nofile 204800 #任何使用者可以開啟的最大檔案io數

* hard nofile 204800

* soft nproc 204800 # #任何使用者可以開啟的最大程序數

* hard nproc 204800

soft是乙個警告值,而hard則是乙個真正意義的閥值,超過就會報錯

[root@centos ~]

# vi /etc/hosts

127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4

::1 localhost localhost.localdomain localhost6 localhost6.localdomain6

192.168.52.134 centos

CentOS7常見命令

一 使用規則 1.檔案的命名規則 一定不能使用根目錄符號,盡可能不要使用特殊符號,比如空格,製表符,等等 大小寫敏感 避免使用點作為檔名的第乙個字元,因為點作為第乙個字元時,表示是隱藏檔案。2.命令的使用規則 格式 命令名 選項 引數 二 幫助命令 檢視指定命令的幫助文件資訊。1.man 用法 ma...

centos7常見問題

1 在執行yum操作時 報錯 could not retrieve mirrorlist 解決方法 vi etc resolv.conf nameserver 8.8.8.8 search localdomain wq儲存退出即可,之後再執行yum操作,成功!報錯 loaded plugins fa...

Centos7個人常見shell命令

1,輸出資訊彙總後只顯示查詢到的包含 row 的行 執行程式 2 1 grep row 2,使用者變數修改和更新 vi bashrc source bashrc 3,關機和重啟 reboot 普通重啟 shutdown r now 立刻重啟 shutdown r 10 10分鐘後自動重啟 shutd...