CentOS 基本操作

2021-07-22 04:46:42 字數 2652 閱讀 4498

修改更新源

yum makecache標準軟體

yum install -y nc

yum install -y gcc

yum groupinstall -y

"development tools"

yum install -y git

cd /usr/local/src

git clone

cd axel

./configure

make

make install

cd /etc/ssh

sed -i

'/gssapiauthentication/d' sshd_config

sed -i

'/usedns/d' sshd_config

echo 'gssapiauthentication no'

>> sshd_config

echo 'usedns no'

>> sshd_config

service sshd restart

網絡卡名字修改

/etc/udev/rules.d/70

-persistent

-net

.rules

subsystem==

"net", action==

"add", drivers==

"?*", attr==

"08:00:27:eb:88:95", attr==

"1", kernel==

"eth*", name=

"eth0"

網絡卡靜態位址配置

## configure eth0

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

device="eth0"

nm_controlled="yes"

onboot=yes

hwaddr=a4:ba:db:37:f1:04

type=ethernet

bootproto=static

name="system eth0"

uuid=5fb06bd0-0bb0-7ffb-45f1-d6edd65f3e03

ipaddr=192.168

.1.44

netmask=255.255

.255

.0## configure default gateway

## vi /etc/sysconfig/network

networking=yes

hostname=centos6

gateway=192.168

.1.1

## restart network inte***ce

#/etc/init.d/network restart

## configure dns server

## vi /etc/resolv.conf

nameserver 8.8

.8.8 # replace with your nameserver ip

nameserver 192.168

.1.1 # replace with your nameserver ip

磁碟格式化

yum install -y xfsprogs-devel
時區調整

cp /usr/share/zoneinfo/asia/shanghai /etc/localtime

修改為中國的東八區# vi /etc/sysconfig/clockzone="asia/shanghai"

utc=false

arc=false

時鐘同步

ntpdate asia.pool

.ntp

.org

配置主機名

假設機器名為xx

1. 使用hostname xx給系統配置機器名

2. 檢視/etc/sysconfig/network, 確保hostname與上面配置的一致

3. 確保 /etc/hosts檔案裡面有如下三行,至少有最後一行。

127.0

.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4

::1 localhost localhost.localdomain localhost6 localhost6.localdomain6

192.168

.0.111 xx

CentOS 基本操作

初次安裝 centos 一波幾折,內容記錄 1.vi 基本操作 1 進入vi vi myfile 進入vi之後,是處於 命令列模式 command mode 您要切換到 插入模式 insert mode 才能夠輸入文字。2 切換至插入模式 insert mode 編輯檔案 在 命令列模式 comma...

CentOS基本操作

啟動xwindow startx 切換terminal ctrl alt f1 f6,如果有圖形介面f1預設是xwindow 代表家目錄 代表root使用者 代表一般使用者 linux區分大小寫 登出linux exit 顯示日曆 cal cal month year 簡單的計算器 bc quit退...

CentOS 基本操作

1.vi 基本操作 1 進入vi vi myfile 進入vi之後,是處於 命令列模式 command mode 您要切換到 插入模式 insert mode 才能夠輸入文字。2 切換至插入模式 insert mode 編輯檔案 在 命令列模式 command mode 下按一下字母 i 就可以進入...