(1)、輸入ifconfig
提示不存在。
(2)、首先確認下是否是環境變數沒有ifconfig
引起。
ls /sbin/ifconfig
(3)、確定了系統是沒有安裝ifconfig
。
yum install ifconfig
(4)、提示沒有ifconfig
安裝包,我們再使用yum search ifconfig
來搜尋下ifconfig
的相關,檢視ifconfig
匹配的是net-tools.x86_64
包,安裝net-tools.x86_64
包。
yum install net-tools.x86_64 -y
(5)、輸入ifconfig
檢視效果,另外輸入ip addr
也是可以查詢。
(1)、檢視:
systemctl status firewalld
(2)、關閉(臨時):
systemctl stop firewalld
關閉後檢視是否關閉成功,如果看到inactive(dead)就意味著防火牆關閉了。
(3)、關閉(預設):
systemctl disable firewalld
(4)、開啟:
systemctl start firewalld
(5)、系統重啟。
reboot
(1)、檢視系統的 ssh 服務是否安裝。
rpm -qa | grep ssh
ps:若沒安裝 ssh 服務則可輸入:
yum install openssh-server
(2)、啟動 ssh 服務。
service sshd start
啟動服務
service sshd stop
停止服務
service sshd restart
重啟 ssh 服務
ps:重啟後可輸入:netstat -antp | grep sshd
,檢視22埠是否啟動。
(3)、如何設定 ssh 服務為開機啟動?
chkconfig sshd on
ps:若是chkconfig sshd off
則禁止 ssh 開機啟動。
方式一:rpm 安裝
2)、執行:
rpm -ivh wget-1.12-8.el6.x86_64.rpm
方式二:yum 安裝
yum -y install wget
(1)、備份一下原本的 yum 源:
mv /etc/yum.repos.d/centos-base.repo /etc/yum.repos.d/centos-base.repo.backup
wget -o /etc/yum.repos.d/centos-base.repo
(3)、之後執行給 install 生成快取。
yum makecache
Linux系統常見問題
mysql中文亂碼 修改mysql配置檔案 vim etc my.cnf在 client 段增加下面 default character set utf8在 mysqld 段增加下面的 default storage engine innodb character set server utf8 c...
linux 常見問題及解決
平時開發中需要連線到虛擬機器linux centos 進行,期間有些常見問題,在此記錄備忘 1 ssh連線突然變慢,在centos中ping一些常見 也特別慢 分析 估計dns解析有問題,檢視vm中的 etc resolv.conf 與本機dns差異,發現第乙個備用dns不同。ping 第乙個nam...
Linux常見問題解決
1 this system is not registered with rhn 紅帽中出現this system is not registered with rhn這個的原因是因為紅帽中沒有註冊rhn。解決辦法 假定你已安裝yum,且網路暢通 更改yum的源,即更換 etc yum.repos....