清理apt缓存并更新:清理apt的缓存,重新更新软件包列表。 apt-getcleanapt-getupdate 1. 2. 网上找的各种源的地址: 企业源: 阿里云开源镜像站:http://mirrors.aliyun.com/搜狐开源镜像站:http://mirrors.sohu.com/网易开源镜像站:http://mirrors.163.com/ 教育源:重庆大学:http://mirrors.cqu.edu.cn/北京...
1、原文件备份 sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak 2、编辑源列表文件 sudo vim /etc/apt/sources.list 3、将原来的列表删除,添加如下内容(中科大镜像源) deb http://mirrors.ustc.edu.cn/ubuntu/ xenial main restricted universe multiverse deb http:...
Ubuntu 修改 apt-get 源为国内镜像源的方法 1、原文件备份 sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak 2、编辑源列表文件 sudo vim /etc/apt/sources.list 3、将原来的列表删除,添加如下内容(阿里镜像源) deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse ...
1.编辑源列表文件 sudo vim /etc/apt/sources.list 2.将原来的列表删除,添加如下内容(中科大镜像源) deb http://mirrors.ustc.edu.cn/ubuntu/ xenial main restricted universe multiverse deb http://mirrors.…
简介:修改apt-get源为国内镜像源 # 备份cp /etc/apt/sources.list /etc/apt/sources.list.baksudo vim /etc/apt/sources.list # 阿里镜像deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiversedeb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe mult...
备份默认的源 $ sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak 修改为国内的阿里云镜像源 $ sudo sed -i "s/archive.ubuntu.com/mirrors.aliyun.com/g" /etc/apt/sources.list 删除注释行 $ sed -i '/^#/d' /etc/apt/sources.list 更新apt-get 源 $ sudo apt-get update ©...
修改为国内的华为云镜像源 sudo sed -i"s@http://.*archive.ubuntu.com@http://repo.huaweicloud.com@g"/etc/apt/sources.list sudo sed -i"s@http://.*security.ubuntu.com@http://repo.huaweicloud.com@g"/etc/apt/sources.list 更新apt-get 源 ...
使用文本编辑器(如nano或vim)打开并编辑/etc/apt/sources.list文件,将原有的镜像源地址替换为新的镜像源地址。例如,将文件中的所有内容替换为以下清华大学镜像源的内容: bash sudo nano /etc/apt/sources.list 然后,将文件内容替换为(以下仅为示例,具体源地址可能有所不同): plaintext # 默认注释了源码镜像以...
编辑: vi /etc/apt/sources.list 写入以下: # 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释 deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multivers...
使用dockerfile 创建 php-fpm 镜像。在进行 apt-get install 安装包时下载很慢。严重影响镜像的构建速度。 可以使用如下方法进行替换 FROM php:7.1-fpm # 使用 阿里源 替换 RUN sed -i "s@http://deb.debian.org@http://mirrors.aliyun.com@g" /etc/apt/sources.list && rm -Rf /var/lib/apt/lists...