Ubuntu 18.04更換apt-get源

来源:https://www.cnblogs.com/gloria-zhang/archive/2020/04/29/12803075.html
-Advertisement-
Play Games

使用apt-get安裝時,會很慢,更換了國內的源後,就可以解決這個問題了。 1. 備份sources.list文件 sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak 2. 打開sources.list文件 sudo gedit /etc/ ...


使用apt-get安裝時,會很慢,更換了國內的源後,就可以解決這個問題了。

1. 備份sources.list文件

sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak

2. 打開sources.list文件

sudo gedit /etc/apt/sources.list

3. 刪除原內容,添加下列內容

#清華源

deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-security main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-security main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-proposed main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-proposed main restricted universe multiverse

#阿裡雲源
deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse

這兩個源都可以用,我都試過,感覺阿裡雲源速度更快。

4. 更新

保存sources.list文件後需要更新apt-get。

sudo apt-get update

更新完成後就可以正常使用了。


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • zabbix服務端部署軟體流程: ​ 1.清華源 ​ rpm ivh https://mirrors.tuna.tsinghua.edu.cn/zabbix/zabbix/4.0/rhel/7/x86_64/zabbix release 4.0 1.el7.noarch.rpm ​ rpm ivh ...
  • 十三、Shell數組應用實踐 (一)數組介紹 為什麼會產生數組 通常在開發Shell腳本時,我們定義變數採用的形式為a=1;b=2;c=3,可如果有多個變數呢?這時再一個一個定義很費勁,並且要是有多個不確定的變數內容,也難以進行變數定義,此外,快速讀取不同變數的值也是一件很痛苦的事情,於是數組就誕生 ...
  • 十二、迴圈控制及狀態返回值應用實踐 本章將帶著大家學習以下幾個特殊的命令break(迴圈控制)、continue(迴圈控制)、exit(退出腳本)、return(退出函數)。 (一)、break、continue、exit、return的區別和對比 在上述命令中,break、continue在條件語 ...
  • 十一、for迴圈語句應用實踐 (一)、for迴圈語法 (二)範例1 用for迴圈豎向列印1、2、3、4、5共5個數字。 (三)範例2: 通過開發腳本實現僅設置sshd rsyslog crond network sysstat 服務 開機自啟動。 (四)範例3: 計算從1加到100之和。 (五)案例 ...
  • 十、while迴圈及應用實踐 (一)while迴圈語法 (二)範例1: 每隔2s輸出系統負載情況。 1、腳本執行的方法 | 用法 | 說明 | | | | | sh while1.sh & | 把腳本while1.sh放到後臺執行(後臺運行腳本時常用) | | nohup while1.sh & | ...
  • Ansible Jinja2 模板使用、語法與使用案例 主機規劃 添加用戶賬號 說明: 1、 運維人員使用的登錄賬號; 2、 所有的業務都放在 /app/ 下「yun用戶的家目錄」,避免業務數據亂放; 3、 該用戶也被 ansible 使用,因為幾乎所有的生產環境都是禁止 root 遠程登錄的(因此 ...
  • Ncdu (NCurses Disk Usage) :磁碟目錄分析工具 平時大家在Centos系統上使用du命令來查看磁碟目錄及文件的使用情況,今天分享一款更方便更好用的工具:Ncdu,它是一個基於 Ncurses 庫的 du 命令的界面。ncdu命令是對傳統du命令功能上的增強,不需要像du那樣輸 ...
  • 文章來源: "linux下文件的打包和壓縮" "TOC" 一、文件壓縮的原理 簡單來說,壓縮技術就是在存儲時將文件裡面沒有使用的空間利用起來,主要有以下兩種情況。 1. 存儲時去掉沒有用到的空間。假設我們只是存儲一個數字 1 ,二進位表示數字1只需1個bit是1就可以表示(1=1 2^0),但是為了 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...