Centos和ubuntu裝機之後的配置

2021-06-20 10:08:02 字數 1323 閱讀 6006

**:

centos裝機之後的初始化

2.修改hostname: /etc/host

127.0.0.1   ajigege

::1         ajigege

3. 設定預設路由:/etc/sysconfig/network

#vi /etc/sysconfig/network

networking=yes

hostname=ajigege     // 需要和/etc/host 裡面的相同

gateway=192.168.17.1

nozeroconf=yes       // 這個如果不配置,會生成乙個169.254的預設路由

4.設定網絡卡ip位址

vim /etc/sysconfig/network-scripts/ifcfg-eth2

device=eth2

hwaddr=52:54:00:37:6b:16

type=ethernet

uuid=0159ea4d-d309-48e6-8f46-59ba1b030c89

onboot=yes

bootproto=static

ipaddr=192.168.17.133

netmask=255.255.255.0

network=192.168.17.0

gateway=192.168.17.1

ubuntu裝機之後的初始化

1. 關閉network-manager

service network-manager stop

chkconfig network-manager off

2. 配置網絡卡

auto lo

iface lo inet loopback

auto eth0

iface eth0 inet static

address 192.168.17.131

netmask 255.255.255.0

gateway 192.168.17.1

auto tap0

iface tap0 inet manual

auto br0

iface br0 inet static

bridge_ports eth0 tap0

address 192.168.17.132

netmask 255.255.255.0

gateway 192.168.17.1

後面的tap0和br0,是為了方便 kvm的橋接方式而設定的。

ubuntu裝機設定

1 讓人糾結的中文輸入法 使用fcitx,其安裝方法如下 為了防止scim與fcitx衝突,如果你安裝了scim,你最好解除安裝掉scim 有一次我的fcitx莫名其妙無法上屏,解除安裝掉就正常了 sudo apt get purge scim sudo add apt repository ppa...

CentOS裝機常用命令

centos 7 yum install net tools2 安裝ftp ssh服務,遠端控制 yum install vsftpd yum install openssh3 安裝svn版本控制工具yum install subversion yum install lrzsz 5 安裝httpd...

Centos7 x 裝機優化

linux 伺服器裝機後優化 參考 優化初始化指令碼 vim init optimization.sh bin bash author by cc this script is only for centos 7.x check the os platform uname i if platform...