筆記 CentOS操作

2021-10-13 06:19:30 字數 1538 閱讀 4586

自動同步網路時間

## 安裝ntpdate命令

yum install -y ntpdate

##同步網路時間

ntpdate ntp1.aliyun.com

修改時區

##設定為上海時間

timedatectl set-timezone asia/shanghai

##設定為香港時間

timedatectl set-timezone asia/hong_kong

設定本地時間時區

cp /usr/share/zoneinfo/asia/shanghai /etc/localtime -r
## 檢視對應的網絡卡

ip addr

## 或者安裝net-tools後 使用 ifconfig

ifconfig

然後到 /etc/sysconfig/network-scripts/ 下修改對應網絡卡資訊 (如eth0)

檢視網絡卡的uuid

修改完成後,重啟網路

## 如果沒有systemctl 可以用

service network restart

## 或者

systemctl restart network

對內網開放所有埠

如 我的子網掩碼為 255.255.255.0 閘道器為 192.168.0.1 也就是 192.168.0.0/24

## 對內網所有機器開放所有埠

firewall-cmd --add-rich-rule=

"rule family="ipv4" source address="192.168.0.0/24" accept" --permanent

## 對所有機器(不管內網外)開放80埠

## 方式1

firewall-cmd --add-rich-rule=

"rule family="ipv4" source address="0.0.0.0/0" port port="80" accept" --permanent

## 方式2

firewall-cmd --zone=public --add-port=80/tcp --permanent

## 最後 過載網路

firewall-cmd --reload

CentOS 基本操作

修改更新源 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 c...

CentOS 基本操作

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

centos檔案操作

centos徹底刪除資料夾 檔案命令 centos 新建 刪除 移動 複製等命令 1.新建資料夾 mkdir 檔名 新建乙個名為test的資料夾在home下 view source1 mkdir home test 2.新建文字 在home下新建乙個test.sh指令碼 vi home test.s...