淡淡的腥味 發表於 2024-8-30 00:05:00

【Ubuntu】Ubuntu 24.04 配置镜像源

<h1 id="ubuntuubuntu-2404-配置镜像源">【Ubuntu】Ubuntu 24.04 配置镜像源</h1>
<h2 id="零起因">零、起因</h2>
<p>最近在虚拟机中安装了个<code>ubuntu-24.04-desktop-amd64</code>,默认是国外的软件源,很慢,故替换到国内。</p>
<h2 id="壹替换">壹、替换</h2>
<h3 id="源地址阿里源">源地址(阿里源)</h3>
<p><em>其他版本的软件源文件内容看这里:</em>https://developer.aliyun.com/mirror/ubuntu</p>
<h3 id="软件源文件内容">软件源文件内容:</h3>
<p>原位置(<code>/etc/apt/sources.list</code>)</p>
<pre><code>deb https://mirrors.aliyun.com/ubuntu/ noble main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ noble main restricted universe multiverse

deb https://mirrors.aliyun.com/ubuntu/ noble-security main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ noble-security main restricted universe multiverse

deb https://mirrors.aliyun.com/ubuntu/ noble-updates main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ noble-updates main restricted universe multiverse

# deb https://mirrors.aliyun.com/ubuntu/ noble-proposed main restricted universe multiverse
# deb-src https://mirrors.aliyun.com/ubuntu/ noble-proposed main restricted universe multiverse

deb https://mirrors.aliyun.com/ubuntu/ noble-backports main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ noble-backports main restricted universe multiverse
</code></pre>
<p>新位置(<code>/etc/apt/sources.list.d/ubuntu.sources</code>)</p>
<pre><code># 阿里云
Types: deb
URIs: http://mirrors.aliyun.com/ubuntu/
Suites: noble noble-updates noble-security
Components: main restricted universe multiverse
Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
</code></pre>
<p>选择一种方式(新位置)写入到对应文件中去</p>
<h3 id="更新">更新</h3>
<p>更新完软件源后即可使用更新后的镜像源~</p>
<p>更新软件源:</p>
<pre><code class="language-bash">sudo apt-get update
</code></pre>
<p>更新软件(可选):</p>
<pre><code>sudo apt-get upgrade
</code></pre>
<h2 id="贰参考">贰、参考</h2>
<ul>
<li>ubuntu镜像_ubuntu下载地址_ubuntu安装教程-阿里巴巴开源镜像站</li>
<li>Ubuntu 24.04 抢先体验换国内源 清华源 阿里源 中科大源 163源</li>
</ul><br><br>
来源:https://www.cnblogs.com/minuhy/p/18387749
頁: [1]
查看完整版本: 【Ubuntu】Ubuntu 24.04 配置镜像源