基礎教程 4 CentOS 7 x基本設定

2021-09-03 01:33:01 字數 3462 閱讀 5750

短**:

hosts是乙個沒有副檔名的系統檔案(文字檔案),可以用記事本等工具開啟,其作用就是將一些常用的**ip位址與對應的網域名稱建立乙個關聯「資料庫」,當使用者在瀏覽器中輸入乙個需要登入的**時,系統會首先自動從hosts檔案中尋找對應的ip位址,一旦找到,系統會立即開啟對應網頁,如果沒有找到,則系統會再將**提交dns網域名稱解析伺服器進行ip位址的解析。

[root@localhost ~]# vi /etc/hosts
編輯後的hosts檔案內容如下。注意,是ip位址與網域名稱對應關係,也就是說ip位址在前,網域名稱在後。

(2)通過echo命令

[root@localhost ~]# echo "192.168.60.101	node1" >> /etc/hosts

[root@localhost ~]# echo "192.168.60.102 node2" >> /etc/hosts

[root@localhost ~]# echo "192.168.60.103 node3" >> /etc/hosts

[root@localhost ~]# cat /etc/hosts

127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4

::1 localhost localhost.localdomain localhost6 localhost6.localdomain6

192.168.60.101 node1

192.168.60.102 node2

192.168.60.103 node3

[root@localhost ~]#

修改主機名有兩種方法

(1)直接使用hostnamectl 命令

(2)編輯 /etc/hostname檔案

[root@localhost ~]# vi /etc/hostname
首先刪除主機名預設值localhost.localdomain,然後修改為node1

[root@localhost ~]# cat /etc/hostname

node1

建議使用第1種方法修改主機名,簡單方便。

(1)開啟阿里映象

如下圖所示,可以發現,現在阿里映象url已經更名為了

(4)執行yum makecache命令,生成快取

[root@node1 ~]# yum makecache
(1)關閉防火牆

執行下面命令關閉防火牆:

systemctl stop firewalld

systemctl disable firewalld

[root@node1 ~]# systemctl stop firewalld

[root@node1 ~]# systemctl disable firewalld

removed symlink /etc/systemd/system/dbus-org.fedoraproject.firewalld1.service.

removed symlink /etc/systemd/system/basic.target.wants/firewalld.service.

補充:centos 6 關閉防火牆

[root@node1 ~]# service iptables stop

iptables: setting chains to policy accept: filter [ ok ]

iptables: flushing firewall rules: [ ok ]

iptables: unloading modules: [ ok ]

[root@node1 ~]# chkconfig iptables off

(2)關閉selinux

首先執行命令

[root@node1 ~]# setenforce 0
然後修改/etc/selinux/config

方法1:sed命令直接修改

[root@node1 ~]# sed -i "s#selinux=enforcing#selinux=disabled#g" /etc/selinux/config
方法2:使用vi修改/etc/selinux/config

[root@node1 ~]# vi /etc/selinux/config
修改:selinux=disabled

(1)按vim

[root@node1 ~]#  yum install -y vim
(2)編輯~/.bashrc配置檔案

[root@node1 ~]# vi ~/.bashrc
新增一行alias vi='vim'內容如下:

# .bashrc

# user specific aliases and functions

alias rm='rm -i'

alias cp='cp -i'

alias mv='mv -i'

alias vi='vim'

# source global definitions

if [ -f /etc/bashrc ]; then

. /etc/bashrc

fi

(3)使生效

[root@node1 ~]# source ~/.bashrc
(4)檢視vi效果

Python3 x基礎教程1

今天我們講python3.x版本的python 最基礎的就是print,語法是這樣的 print 給乙個例子列印出我和你 print 我和你 但是我們執行不出來咋辦 其實要安裝python環境 怎麼安裝 首先到找到 如你是windows系統x32就選x86的 安裝的頁面應定要記得勾選add pyth...

Python基礎教程4 if語句

if語句是指程式語言中用來判定所給定的條件是否滿足,根據判定的結果 真或假 決定執行給出的兩種操作之一。if的返回值為真或假,可以用bool型變數進行儲存,占用一位元組。elif和else都必須和if聯合使用,不能單獨使用 1.判斷閏年?使用者輸入年份year,判斷是否為閏年?能被4整除但不能被10...

Python3 x基礎教程3上

hello,我是愛學程式設計的小圓子,今天來講if elif else語句 import time as t a 0 while a 1 x input 請輸入乙個數字 1 9 n y 1 2 3 4 5 6 7 8 9 if x in y print 輸入正確!t.sleep 5 a a 1 pa...