Temporary failure resolving ‘archive.ubuntu.com‘
總結原因主要有以下幾種:
最終生效版本:
- linux版本docker 配置/etc/docker/daemon.json檔案的DNS屬性
touch daemon.json
{
"dns": ["8.8.8.8", "114.114.114.114"]
}
然後重啟docker即可,問題完美解決,可以正常構建映象。
sudo service docker restart
1. dns沒有配置,解決辦法 加入dns伺服器地址:
vi /etc/resolv.conf
新增下面的資訊
nameserver 202.96.134.133
nameserver 8.8.8.8
然後重啟
sudo vi /etc/resolv.conf
重啟網路卡
systemctl restart network
或 service network restart
重啟網路卡失敗。
linux使用這個:service network-manager restart
實際上,我的重啟之後,這個配置會進行恢復,相當於沒有生效。
網上的解決方法,有的說是解除安裝檔案之後恢復不了,然後我沒有嘗試。
直接解除安裝掉開機重寫該檔案的 resolvconf。 執行命令:sudo apt-get autoremove resolvconf
如果仍需要使用 resolvconf ,則可在解除安裝後,對 /etc/resolv.conf 加鎖後再重新安裝該軟體,這樣
resolvconf 就不會在開機時重寫該檔案。
2. 另一個說法:
選擇修改/etc/resolvconf/resolv.conf.d/base檔案
我的是20版本的Ubuntu 並沒有這個檔案。繼續看別的
3、源的問題,換成國內下載源
有的沒有連上網導致下載失敗,可以嘗試這個辦法
有的下載速度很慢導致失敗,可以嘗試換源
相關文章
- Resolving archive.cloudera.com... failed: Temporary failure in nameHiveCloudAI
- [virtualbox] temporary failure in name resolutionAI
- 【MySQL】ERROR 1878 (HY000): Temporary file write failure.MySqlErrorAI
- GLOBAL TEMPORARY TABLE(轉)
- Rust Reference Cycles: Resolving and Avoiding themRust
- design for failureAI
- Error: Debug Failure at typeToStringErrorAI
- Preferred Read Failure GroupsAI
- DRIVER_POWER_STATE_FAILUREAI
- Vagrant:NS_ERROR_FAILUREErrorAI
- Sybase IQ 錯誤 : Temporary space limit exceededMIT
- ftp_rawlist: Unable to create temporary file.FTP
- temporary、interim、tentative和provisional的區別
- mysql 報錯 Communications link failureMySqlAI
- 轉:Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:]AIUIViewIndex
- [20181112]Private Temporary Tables Oracle Database 18C.txtOracleDatabase
- Agent admitted failure to sign using the key解決MITAI
- SpringBoot+ajax踩的坑Error resolving template, template might not exist or might not be accessibleSpring BootError
- Http failure response 0 Unknown error 錯誤分析HTTPAIError
- 淺談Using filesort和Using temporary 為什麼這麼慢
- [20230227][20230109]Oracle Global Temporary Table ORA-01555 and Undo Retention.tOracle
- [20180613]子游標不共享BIND_EQUIV_FAILUREUIAI
- Maven:Non-resolvable parent POM: Failure to find錯誤MavenAI
- Linux 出現 su: Authentication failure 解決辦法LinuxAI
- Fault-Tolerance, Fast and Slow: Exploiting Failure Asynchrony in Distributed SystemsASTAI
- RPC: Port mapper failure - Unable to receive: errno 113 (No route to host)RPCAPPAI
- SpringBoot檔案上傳異常之提示The temporary upload location xxx is not validSpring Boot
- oracle ocp 19c考題,科目082考試題-temporary undoOracle
- Maven - Non-resolvable parent POM: Failure to find xx:xx:pomMavenAI
- [20200129]子游標不共享BIND_EQUIV_FAILURE.txtUIAI
- RMAN-03009: failure of backup command on ORA_DISK_1 channelAI
- mac 下vscode 更新時提示:Could not create temporary directory: 許可權被拒絕MacVSCode
- 發現laravel8.X檢視元件有個Undefined Variable和Unresolvable dependency resolving錯誤Laravel元件Undefined
- 頻繁GC (Allocation Failure)及young gc時間過長分析GCAI
- Android Studio Run專案出現Failure [INSTALL_FAILED_TEST_ONLY]AndroidAI
- 應用端連線MySQL資料庫報Communications link failureMySql資料庫AI
- [InnoDB] Assertion failure: ut0ut.cc:553 thread 140235111884544【筆記】AIthread筆記
- Authentication failure 以及xxx is not in the sudoers file 問題的解決辦法AI