檢視核心版本:
uname -a
檢視發行版本:
cat /etc/*elease
設定靜態ip:
cd /etc/sysconfig/network-scripts
看到類似這樣的乙個檔案 ifcfg-eno16777736
vim ifcfg-eno16777736
修改如下:
bootproto改為static
ipaddr=192.168.40.15
netmask=255.255.255.0
gateway=192.168.40.1
dns1=111.222.3.4
onboot=yes
最終效果:
hwaddr=00:0c:29:0f:85:0f
type=ethernet
bootproto=static
ipaddr=192.168.40.15
netmask=255.255.255.0
gateway=192.168.40.1
dns1=111.222.3.4
nm_controlled=no
defroute=yes
peerdns=yes
peerroutes=yes
ipv4_failure_fatal=no
ipv6init=yes
ipv6_autoconf=yes
ipv6_defroute=yes
ipv6_peerdns=yes
ipv6_peerroutes=yes
ipv6_failure_fatal=no
name=eno16777736
uuid=3e1c3d6a-866e-4498-9c50-eb644608e5d5
onboot=yes
重啟網路:
systemctl restart network.service
如果不行可以試試 service network restart,
注意如果是虛擬機器的話要把網路設定為橋接模式
參考這裡centos7設定靜態ip
關閉防火牆:
service firewalld status #檢視狀態
service firewalld start
service firewalld stop
systemctl disable firewalld #永久禁止
參考這裡centos7 關閉防火牆
清除快取:
to free pagecache:
echo 1 > /proc/sys
/vm/drop_caches
to free dentries and inodes:
echo 2 > /proc/sys
/vm/drop_caches
to free pagecache, dentries and inodes:
echo 3 > /proc/sys
/vm/drop_caches
設定ulimit:
vim /etc/sysctl.conf
fs.file-max = 100000
vim /etc/security/limits.conf
* soft nproc 65535
* hard nproc 65535
* soft nofile 65535
* hard nofile 65535
sudo sysctl -p
檢視埠情況:
netstat -ntlp
CentOS7使用筆記
在centos7中用的全新服務啟動管理器 systemctl 在centos6做服務的啟停用service systemctl 代替service chkconfig 在centos6中只需要把啟動的服務檔案放到 etc ini.d目錄下就可以了,但是在centos7中怎麼處理了?檢視服務列表狀態 ...
centos7使用筆記(一)
首先,在已經裝有win7系統的電腦上安裝centos7,安裝步驟略過。一 配置雙系統啟動項 1 安裝完成centos7後,啟動電腦,出現的啟動選項中沒有win7,只能從centos7啟動。2 先進入centos7中配置grub檔案 一般不要直接去修改grub.conf檔案,在 etc grb.d 4...
centos7應用筆記 鍵盤重影射
我的鍵盤右shift鍵無法使用了。想使用右alt鍵代替。查詢了一下 xmodmap 命令可以實現該功能。以下是我的配置方法的記錄。建立乙個 xmodmap 配置檔案 etc xmodmap.config xmodmap 配置檔案內容 swap alt r and shift r remove shi...