返回顶部
首页 > 资讯 > 精选 >如何更换Ubuntu软件源
  • 353
分享到

如何更换Ubuntu软件源

2023-07-04 16:07:50 353人浏览 独家记忆
摘要

本文小编为大家详细介绍“如何更换ubuntu软件源”,内容详细,步骤清晰,细节处理妥当,希望这篇“如何更换Ubuntu软件源”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。什么是Ubuntu的软件源?我们在使用De

本文小编为大家详细介绍“如何更换ubuntu软件源”,内容详细,步骤清晰,细节处理妥当,希望这篇“如何更换Ubuntu软件源”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。

什么是Ubuntu的软件源?

我们在使用Debian或者Ubuntu的apt-get工具来安装需要的软件时,其实就是从服务器获取需要安装的软件并把它安装在本地计算机的过程。所谓的软件源,就是我们获取软件的来源,它是定义在/etc/apt/sources.list文件里的。

默认的sources.list文件内容如下:

## deb cdrom:[Ubuntu-Server 16.04.2 LTS _Xenial Xerus_ - Release amd64 (20170215.8)]/ xenial main restricted#deb cdrom:[Ubuntu-Server 16.04.2 LTS _Xenial Xerus_ - Release amd64 (20170215.8)]/ xenial main restricted# See Http://help.ubuntu.com/commUnity/UpgradeNotes for how to upgrade to# newer versions of the distribution.deb http://us.arcHive.ubuntu.com/ubuntu/ xenial main restricted# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial main restricted## Major bug fix updates produced after the final release of the## distribution.deb http://us.archive.ubuntu.com/ubuntu/ xenial-updates main restricted# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-updates main restricted## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu## team. Also, please note that software in universe WILL NOT receive any## review or updates from the Ubuntu security team.deb http://us.archive.ubuntu.com/ubuntu/ xenial universe# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial universedeb http://us.archive.ubuntu.com/ubuntu/ xenial-updates universe# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-updates universe## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu## team, and may not be under a free licence. Please satisfy yourself as to## your rights to use the software. Also, please note that software in## multiverse WILL NOT receive any review or updates from the Ubuntu## security team.deb http://us.archive.ubuntu.com/ubuntu/ xenial multiverse# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial multiversedeb http://us.archive.ubuntu.com/ubuntu/ xenial-updates multiverse# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-updates multiverse## N.B. software from this repository may not have been tested as## extensively as that contained in the main release, although it includes## newer versions of some applications which may provide useful features.## Also, please note that software in backports WILL NOT receive any review## or updates from the Ubuntu security team.deb http://us.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse## Uncomment the following two lines to add software from Canonical's## 'partner' repository.## This software is not part of Ubuntu, but is offered by Canonical and the## respective vendors as a service to Ubuntu users.# deb http://archive.canonical.com/ubuntu xenial partner# deb-src http://archive.canonical.com/ubuntu xenial partnerdeb http://security.ubuntu.com/ubuntu xenial-security main restricted# deb-src http://security.ubuntu.com/ubuntu xenial-security main restricteddeb http://security.ubuntu.com/ubuntu xenial-security universe# deb-src http://security.ubuntu.com/ubuntu xenial-security universedeb http://security.ubuntu.com/ubuntu xenial-security multiverse# deb-src http://security.ubuntu.com/ubuntu xenial-security multiverse

可以看到,官方的默认源是来自美国的us.archive.ubuntu.com和security.ubuntu.com。那么我们怎么样换成速度更快的国内源呢?很简单,把/etc/apt/sources.list文件复制备份一下,然后把原来的内容修改成国内源的网址即可。以下步骤说明以阿里云的源为例:

1. 复制备份原来的配置文件

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

2.使用你喜欢的文本编辑器如vi/vim/nano,打开sources.list文件,把原来的内容替换成以下内容:

deb http://mirrors.aliyun.com/ubuntu/ xenial main restricted universe multiversedeb http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted universe multiversedeb http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted universe multiversedeb http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse##测试版源deb http://mirrors.aliyun.com/ubuntu/ xenial-proposed main restricted universe multiverse# 源码deb-src http://mirrors.aliyun.com/ubuntu/ xenial main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse##测试版源deb-src http://mirrors.aliyun.com/ubuntu/ xenial-proposed main restricted universe multiverse# Canonical 合作伙伴和附加deb http://archive.canonical.com/ubuntu/ xenial partnerdeb http://extras.ubuntu.com/ubuntu/ xenial main

3.运行sudo apt-get update命令,更新软件列表,以后就可以使用阿里云提供的快速源了。同样的方法,也可以替换为网易源、搜狐源、中科大源、清华大学源等。

读到这里,这篇“如何更换Ubuntu软件源”文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注编程网精选频道。

--结束END--

本文标题: 如何更换Ubuntu软件源

本文链接: https://lsjlt.com/news/346327.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • 如何更换Ubuntu软件源
    本文小编为大家详细介绍“如何更换Ubuntu软件源”,内容详细,步骤清晰,细节处理妥当,希望这篇“如何更换Ubuntu软件源”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。什么是Ubuntu的软件源?我们在使用De...
    99+
    2023-07-04
  • linux如何更换软件源
    linux中更换软件源的方法:1、打开linux终端;2、输入“sudo cp /etc/apt/sources.list /etc/apt/sources.list_backup”命令备份源列表;3、输入“sudo vim /etc/ap...
    99+
    2024-04-02
  • ubuntu中的软件源怎么更换
    在Ubuntu中更换软件源可以通过以下步骤进行:1. 打开终端:可以通过按下Ctrl+Alt+T快捷键来打开终端。2. 备份当前的软...
    99+
    2023-10-08
    ubuntu
  • Ubuntu22.04更换软件源
    本文以Ubuntu22.04更换科大源为例演示更改软件源的方法,其他版本的Ubuntu系统或更换其他软件源,如清华源,阿里源等,方法类似。 前言 中国科学技术大学开源软件镜像由中国科学技术大学网络信息中心提供支持。 mirrors.ustc...
    99+
    2023-08-21
    ubuntu linux 服务器
  • ubuntu怎么更新软件源
    要更新Ubuntu的软件源,可以按照以下步骤操作:1. 打开终端,可以使用快捷键`Ctrl + Alt + T`打开。2. 输入以下...
    99+
    2023-10-12
    ubuntu
  • Ubuntu如何更换国内源
    这篇文章主要介绍“Ubuntu如何更换国内源”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“Ubuntu如何更换国内源”文章能帮助大家解决问题。ubuntu本身的源使用的是国内的源,下载速度比较慢,不...
    99+
    2023-07-04
  • Linux更换软件源操作
    前言 当Ubuntu原自带的源在下载安装软件包出错时,一般需采用换源来解决。 第一步,将原配置文件备份,以免后续需要恢复。 sudo cp /etc/apt/sources.list /etc/apt/sources.list....
    99+
    2023-09-09
    linux 服务器 ubuntu
  • Ubuntu中如何更换apt-get源
    今天小编给大家分享一下Ubuntu中如何更换apt-get源的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。使用apt-get...
    99+
    2023-07-04
  • Ubuntu中如何更换国内源
    这篇文章主要介绍了Ubuntu中如何更换国内源的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Ubuntu中如何更换国内源文章都会有所收获,下面我们一起来看看吧。图形界面操作 - 适用于 desktop 版本在桌...
    99+
    2023-07-04
  • 如何给RHEL系统替换软件更新源
    这篇文章主要介绍“如何给RHEL系统替换软件更新源”,在日常操作中,相信很多人在如何给RHEL系统替换软件更新源问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”如何给RHEL系统替换软件更新源”的疑惑有所帮助!...
    99+
    2023-06-10
  • ubuntu18.04如何更新软件源
    ubuntu18.04更新软件源的方法:1、打开终端;2、输入命令备份原有软件源文件;3、打开sources.list文件并添加新的软件源地址;4、输入命令更新系统软件源地址即可。具体操作方法如下:使用快捷键【ctrl+alt+t】打开终端...
    99+
    2024-04-02
  • ubuntu如何更换阿里源实例
    这篇文章将为大家详细讲解有关ubuntu如何更换阿里源实例,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。网上应该可以找到很多关于ubuntu源的设置方法,但是如果不搞清楚就随便设置的话,不仅不能起到应有的...
    99+
    2023-06-12
  • UBUNTU怎么更换源
    这篇“UBUNTU怎么更换源”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“UBUNTU怎么更换源”文章吧。首先备份源列表(f...
    99+
    2023-07-04
  • ubuntu更新软件源命令有哪些
    ubuntu更新软件源命令有:1、apt-get update,更新系统软件源;2、apt-get upgrade,更新升级所有软件;3、apt-get upgrade 软件名,更新某个软件。具体ubuntu更新软件源命令有以下几种:更新系...
    99+
    2024-04-02
  • 如何使用更换ip软件
    小编给大家分享一下如何使用更换ip软件,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!1、下载HTTP代理IP软件,安装登陆后设置使用信息,这一类软件可以通过选择I...
    99+
    2023-06-20
  • 如何在Ubuntu中更新软件包
    要在Ubuntu中更新软件包,可以使用以下命令: 打开终端(Ctrl + Alt + T)。 运行以下命令更新软件包列表: ...
    99+
    2024-04-02
  • ubuntu更新软件源命令怎么使用
    这篇文章主要介绍“ubuntu更新软件源命令怎么使用”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“ubuntu更新软件源命令怎么使用”文章能帮助大家解决问题。1.更新系统软件源的命令。apt-get...
    99+
    2023-07-04
  • 配置Ubuntu软件源
    在Ubuntu系统中,可以通过编辑 `/etc/apt/sources.list` 文件来配置软件源。打开终端,输入以下命令:```...
    99+
    2023-09-13
    ubuntu
  • ubuntu如何更新源
    要更新Ubuntu的软件源,可以按照以下步骤进行操作: 打开终端:按下Ctrl+Alt+T组合键,或者在应用程序菜单中搜索终端。...
    99+
    2023-10-23
    ubuntu
  • debian更换软件源的方法是什么
    要更换Debian的软件源,可以按照以下步骤进行: 打开终端。 编辑 /etc/apt/sources.list 文件,可以...
    99+
    2024-04-02
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作