Ubuntu18.04 apt配置阿里源

lichengbei

2019-12-21

先备份

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

修改配置文件

sudo vim /etc/apt/sources.list

deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse

deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse

deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse

deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse

deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse

deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse

更新软件列表

sudo apt-get update

更新软件包

sudo apt-get upgrade

原文地址:https://www.cnblogs.com/lichengbei/p/12079054.html

时间: 2024-10-10 01:13:05

Ubuntu18.04 apt配置阿里源的相关文章

ubuntu18.04网络配置

ubuntu18.04网络配置 YAML文件格式:常量值,对象,数组 YAML学习 dhcp自动获取: [email protected]:~# grep -Ev "^$|#" /etc/netplan/01-netcfg.yaml network: version: 2 renderer: networkd ethernets: ens33: dhcp4: yes [email protected]:~# netplan apply #应用 静态IP(单个IP): [email pr

centos8 配置阿里源

CentOS 8更改了安装程序,改而使用了dnf 作为安装程序.虽然新增了软件包的安装方式,但是 yum命令还是可以正常使用.centos8 配置阿里源 1.备份CentOS-Base.repo文件 cd /etc/yum.repos.d cp CentOS-Base.repo CentOS-Base.repo.bak 2.配置文件vim tOS- CentOS-Base.repo # CentOS-Base.repo The mirror system uses the connecting

ubuntu18.04错误配置变量环境导致无法进入系统

1.问题描述 错误配置环境变量(直接在/etc/profile文件末尾添加了export xxx),关机后一直在登录界面循环无法进入系统. ###环境变量的添加是在原有变量之后以冒号(:)分隔加入,并非直接使用export在/etc/profile文件中加入 2.解决方法(针对双系统) (1).由于使用Windows10+ubuntu18.04双系统,故能在recovery mode中修改一些文件配置; (2).步骤 a.开机进入grub,选择advanced choice; b.选择recov

Ubuntu18.04修改为阿里云

对源安装时,要先知道系统的版本,以免安装错的版本 使用命令:lsb_release -c 备份原先的配置文件 cd /etc/apt sudo cp sources.list sources.list.backup 修改源文件的内容 sudo vim sources.list # 在 /etc/apt 目录下 阿里源的源文件如下: deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse de

简单快速配置Centos7配置阿里源

进入yum源所在文件路径 cd /etc/yum.repos.d/ 2.用wget命令下载repo文件 wget http://mirrors.aliyun.com/repo/Centos-7.repo 3.若没有wget命令,则要安装wget命令 yum install -y wget 4.当前目录是/etc/yum.repos.d,所以刚刚下载的Centos-7.repo也在这个目录上5.备份原来的repo文件 mv CentOS-Base.repo CentOS-Base.repo_bak

Ubuntu 14.04.1 配置 Android 源码开发环境

# Ubuntu 14.04.1 1.更新源: sudo apt-get update 安装vim工具: sudo apt-get install vim 2.设置Android SDK Tools等环境 我的Android SDK解压在了/home/rengh/adt-bundle/目录下,So: 增加全局变量: sudo vim /etc/profile 添加以下内容: # Set Android SDK enviroment. ANDROID_HOME=/home/rengh/adt-bu

Ubuntu18.04中配置wxWidget3.0.4开发环境

准备工作 在 https://www.wxwidgets.org/downloads/ 下载最新的稳定版 wxWidgets-3.0.4.tar.bz2 安装依赖 sudo apt install libgtk-3-dev build-essential checkinstall 编译安装 $ make # ... 略 ... $ sudo checkinstall checkinstall会需要准备好package的描述等, 详细的输入输出. 使用checkinstall会同时生成deb包,

ubuntu18.04下配置jdk1.8

ubuntu下配置jdk第一步与win10下相同  首先来到官网下载jdk:https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 在这里下载了 压缩包的版本. 1.下载完成后,解压文件 使用命令: tar -zxvf jdk-8u191-linux-x64.tar.gz 2.解压完成后 将文件移动到 /usr/lib mv jdk1.8.0_191 /usr/lib/jdk1.8

虚拟机(Vmware)安装ubuntu18.04和配置调整(三)

三.ubuntu安装软件     1.安装常用软件 python程序员: $ sudo apt install ipython $ sudo apt install ipython3 $ sudo apt install ipython-pip $ sudo apt install ipython3-pip C++程序员: $ sudo apt install cmake $ sudo apt install qtcreator ruby程序员: $ sudo apt install ruby