修改Linux基本配置

2022-07-29 23:18:20 字數 965 閱讀 5237

1.修改主機名

vi /etc/sysconfig/network

networking=yes

hostname=server1.cn

2.修改ip位址

vi /etc/sysconfig/network-scripts/ifcfg-eth0

device=eth0

type=ethernet

onboot=yes

bootproto=static

ipaddr=192.168.0.101

netmask=255.255.255.0

service network restart

3.修改ip位址和主機名的對映關係

vi /etc/hosts

127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4

::1         localhost localhost.localdomain localhost6 localhost6.localdomain6

192.168.0.101 server1.cn

4.關閉iptables並設定其開機啟動/不啟動

service iptables stop

chkconfig iptables on

chkconfig iptables off

5.使用簡單的socket 傳送訊息和監聽埠

模擬訊息推送

nc和ncat

yum install -y nmap

yum install -y nc

啟動乙個服務端並監聽9999埠

nc -lk 9999

ncat -l 9999

linux基本許可權 基本許可權修改

1.檢視檔案的讀寫執行許可權 root live wu ll total 0 rw r r 1 root root 0 jul 30 07 07 a.txt 2.許可權對檔案的作用說明 r 讀取檔案內容 可以對檔案執行 cat,more,head,tail操作 w 編輯,新增,修改檔案內容 可以執行...

Linux基本網路配置

linux基本網路的配置與網路介面的初始化,主要是通過一組配置檔案 可執行指令碼程式和相應的命令來控制,它們統稱為基本網路引數。1 基本配置檔案 1 etc hosts etc hosts它是將ip位址和主機名聯絡起來的簡單文字檔案。例 127.0.0.1 localhost.localdomain...

linux網路基本配置

1 etc sysconfig network scripts ifcfg eth0 網路配置裝置資訊 第一塊網絡卡的資訊 2 etc resolv.conf dns配置 3 etc host.conf 指定dns查詢順序 order bind,hosts 先是dns後是host檔案 bind是一款...