linux基礎命令

2022-07-28 02:24:10 字數 3101 閱讀 1182

① 命令列切換圖形介面:startx &

② 顯示文字轉換命令列輸入:localectl list-locales

localectl set-locale lang=zh_cn.utf8(反之en-us)檢視語言locale

③ 檢視所用shell型別:

】#echo $shell

① ssh協議secure shell:

【root@test~】#ss -tnl

(檢視系統是否監聽於tcp協議的22埠)

檢視ip(ifconfig)

3① 確保防火牆是否關閉:

~】#iptables -l -n

centos 7:(執行)

~】#systemctl disable firewalld.service(先禁用下一步再停止)

#systemctl stop firewalld.service

centos 6:

]#service iptables stop

]#chkconfig iptables off

4 ①,基礎命令:

關機命令:

centos 7:

】#systemctl poweroff(關機)

]#systemctl reboot(重啟)

②普通命令語法格式:/bin,/usr/bin,/usrlocal/bin

管理命令語法格式:/sbin,/usr/sbin,/usr/local/sbin

共享庫:/lib,/lib64,/usr/bin,/usr/local64,/usr/local/lib,/usr/local/lib64

32tits的庫:/lib,/usr/lib,/usr/local/lib

64bits的庫:/lib64,/usr/lib64,/usr/local/lib64

liunx設定靜態ip

編輯 ifcfg-eth0 檔案,vim 最小化安裝時沒有被安裝,需要自行安裝不描述。

# vim /etc/sysconfig/network-scripts/ifcfg-eth0 

修改如下內容

1 bootproto="

static

"#dhcp改為static

2 onboot="

yes"

#開機啟用本配置

3 ipaddr=192.168.7.106

#靜態ip

4 gateway=192.168.7.1

#預設閘道器

5 netmask=255.255.255.0

#子網掩碼

6 dns1=192.168.7.1 #dns 配置

修改後效果

1 # ]# cat /etc/sysconfig/network-scripts/ifcfg-eth0  

2 hwaddr="

00:15:5d:07:f1:02

"3 type="

ethernet

"4 bootproto="

static

"#dhcp改為static

5 defroute="

yes"

6 peerdns="

yes"

7 peerroutes="

yes"

8 ipv4_failure_fatal="no"

9 ipv6init="

yes"

10 ipv6_autoconf="

yes"

11 ipv6_defroute="

yes"

12 ipv6_peerdns="

yes"

13 ipv6_peerroutes="

yes"

14 ipv6_failure_fatal="no"

15 name="

eth0

"16 uuid="

bb3a302d-dc46-461a-881e-d46cafd0eb71

"17 onboot="

yes"

#開機啟用本配置

18 ipaddr=192.168.7.106

#靜態ip

19 gateway=192.168.7.1

#預設閘道器

20 netmask=255.255.255.0

#子網掩碼

21 dns1=192.168.7.1 #dns 配置

重啟下網路服務

# service network restart 

檢視改動後的效果,centois 7 不再使用 ifconfig 而是用 ip 命令檢視網路資訊。

1

# ip addr

21: lo: mtu 65536

qdisc noqueue state unknown

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

4 inet 127.0.0.1/8

scope host lo

5valid_lft forever preferred_lft forever

6 inet6 ::1/128

scope host

7valid_lft forever preferred_lft forever

82: eth0:

mtu 1500 qdisc pfifo_fast state unknown qlen 1000

9 link/ether 00:15:5d:07:f1:02

brd ff:ff:ff:ff:ff:ff

10 inet 192.168.7.106/24 brd 192.168.7.255

scope global eth0

11valid_lft forever preferred_lft forever

12 inet6 fe80::215:5dff:fe07:f102/64

scope link

13 valid_lft forever preferred_lft forever

Linux基礎命令

eg man ls 就可以檢視ls相關的用法 注 按q鍵或者ctrl c退出,在linux下可以使用ctrl c終止當前程式執行。2.ls檢視目錄或者檔案的屬 列舉出任一目錄下面的檔案 eg ls usr man ls l a.d表示目錄 directory 如果是乙個 表示是檔案,如果是l則表示是...

linux基礎 命令

命令自動補全 help幫助 幫助文件 鳥哥linux私房菜 linux命令大全 工具書 man ls useradd utest useradd g group2 utest 建立utesty使用者屬於group2組 usermod g group3 utest 將utest所在的組改為group3...

linux 命令基礎

本週學習知識點 一 linux作業系統的目錄結構 在linux作業系統中,沒有 c d e等這些碟符的概念 只有乙個 代表根目錄。home 使用者的家 media 裝置 掛載 的映象檔案 root 最高許可權使用者 一般情況下不需要使用root 使用者 bin 所有的操作都是通過 命令實現的,這些命...