文章目錄
Linux 找不到 ifconfig、wget 指令?
公司部份服務架設在 Linux 環境上,讓之前完全沒有 Linux 操作經驗的我有些苦手,雖然不像 Windows 那麼習慣與熟悉,但學習不同的東西還是非常有趣的
今天剛好在模擬某個特定問題時,重新安裝了 CentOS 7,以往都是選擇網頁伺服器版本,今天心血來潮使用 最小安裝
,馬上卡關XD 就來看看遇到的問題以及解決方式吧
錯誤訊息
ifconfig
訊息內容
[root@localhost ~]# ifconfig -bash: ifconfig:命令找不到
錯誤截圖
wget
訊息內容
[root@localhost ~]# wget http://download.redis.io/releases/redis-4.0.1.tar.gz -bash: wget:命令找不到
錯誤截圖
解決方式
ifconfig
改用
ip addr
wget
直接安裝 wget
該安裝哪個套件?
看到這是不是覺得奇怪?同樣是 command not found,為什麼解決問題的方法不同?!我看到 command not found 的第一念頭就是缺什麼裝什麼,但安裝 ifconfig 時就遇到問題:No package ifconfig available.
表示 ifconfig 不是單獨存在的套件,而是附屬在其他套件下,這樣怎麼知道該裝哪個套件,此時就可以透過 yum search
來找到所屬套件名稱
ifconfig
yum search ifconfig
就可以發現ifconfig
屬於net-tools
的一部份[root@localhost ~]# yum search ifconfig Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: centos.cs.nctu.edu.tw * extras: centos.cs.nctu.edu.tw * updates: centos.cs.nctu.edu.tw =================================================================== Matched: ifconfig ==================================================================== net-tools.x86_64 : Basic networking tools
wget
yum search wget
就可以發現wget
就是套件本身了[root@localhost ~]# yum search wget Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: centos.cs.nctu.edu.tw * extras: centos.cs.nctu.edu.tw * updates: centos.cs.nctu.edu.tw =================================================================== N/S matched: wget ==================================================================== wget.x86_64 : A utility for retrieving files using the HTTP or FTP protocols Name and summary matches only, use "search all" for everything.
心得
Linux 真的博大精深呀,好多東西觀念都跟 Windows 不同,實在是學不完呀,幸虧現在工作需要多了不少動力跟挑戰
參考資訊
文章作者 Yowko Tsai
上次更新 2021-11-02
授權合約
本部落格 (Yowko's Notes) 所有的文章內容(包含圖片),任何轉載行為,必須通知並獲本部落格作者 (Yowko Tsai) 的同意始得轉載,且轉載皆須註明出處與作者。
Yowko's Notes 由 Yowko Tsai 製作,以創用CC 姓名標示-非商業性-相同方式分享 3.0 台灣 授權條款 釋出。