關機-防火牆-編碼集-賬號超時時間
1、shutdown(halt、init 0)關機
shutdown -h now:關機
shutdown -r now:重啟
reboot(init 6):重啟
2、防火牆臨時關閉:/etc/init.d/iptables stop
3、防火牆永久關閉:chkconfig iptables off
[root@localhost ~]# /etc/init.d/iptables status
firewall is stopped.
[root@localhost ~]# chkconfig iptables off
[root@localhost ~]#
4、中文亂碼問題
1)系統設定
2)注意客戶端編碼
[root@localhost ~]#cat /etc/sysconfig/i18n
lang=「en_us.utf-8」
sysfont=「latarcyrheb-sun16」
[root@localhost ~]#echo 『lang=「zh_cn.utf-8」』 >/etc/sysconfig/i18n–相當與vi
[root@localhost ~]# source /etc/sysconfig/i18n–讓配置生效
5、設定賬號超時時間
[root@centos ~]# export tmout=10–臨時生效
6、history歷史記錄
-c:清空所有
-d:刪除指定歷史記錄
[root@centos ~]# history
1 ipconfig
2 ifconfig
linux特殊變數:
export tmount=10 連線時超時時間控制變數
export histsize=5 命令列歷史操作記錄限制只顯示5條,防止黑客攻擊
export histfilesize=5 命令列命令對應檔案的記錄數 ~/.bash_history
注意如果需要命令永久生效:需要放入/etc/profile裡面
echo export tmount=10 >> /etc/profile
echo export histsize=5 >> /etc/profile
echo export histfilesize=5 >> /etc/profile
source /etc/profile–配置生效
禁止登陸的時候檢視伺服器的版本和核心資訊:
原因:很多軟體的漏洞跟系統的版本有關
**>/etc/issue.net
/etc/issuecat /etc/issue.net**
虛擬機器防火牆
檢視防火牆狀態 service iptables status 臨時關閉防火牆 service iptables stop 檢視防火牆開機啟動狀態 chkconfig iptables list linux系統有7個執行級別 runlevel 執行級別0 系統停機狀態,系統預設執行級別不能設為0,否...
centos7虛擬機器防火牆開啟埠
虛擬機器開啟5005埠,系統內部是顯示開了的,但是外部不能訪問埠。一些需要用到的命令 1 firewalld的基本使用 啟動 systemctl start firewalld 檢視狀態 systemctl status firewalld firewall cmd state 這個命令也可以,只是...
主機與虛擬機器互訪 修改虛擬機器防火牆
centos 7.0預設使用的是firewall作為防火牆,這裡改為iptables防火牆。1 關閉firewall systemctl stop firewalld.service systemctl disable firewalld.service systemctl mask firewal...