久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

Linux系統(tǒng)各發(fā)行版換國內(nèi)yum或apt源,,加速軟件下載更新

 昵稱QAb6ICvc 2021-12-22

Centos,、Ubuntu,、Debian,、Fedora,、OpenSUSE、FreeBSD系統(tǒng)換軟件源

Linux系統(tǒng)安裝完后軟件源一般都是國外服務(wù)器,,在國內(nèi)特別慢,,這時候就需要更換國內(nèi)的鏡像源。

高性價比和便宜的VPS/云服務(wù)器推薦:https://blog./archives/383.html

Centos

1,、備份

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

2、更換源

下載新的CentOS-Base.repo/etc/yum.repos.d/

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

或者

curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

注意http://mirrors.aliyun.com/repo/Centos-7.repo中的7改為自己的Centos版本號,,比如Centos 8就是http://mirrors.aliyun.com/repo/Centos-8.repo,。

3、運行yum makecache生成緩存

yum makecache

Ubuntu

1.備份

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

將以前的源備份一下,,以防以后可以用的,。

2.更改文件權(quán)限使其可編輯

sudo  chmod  777  /etc/apt/source.list

3.更換源

sudo nano /etc/apt/sources.list

使用nano打開文本,刪除原來文件里的內(nèi)容,,將下面其中一個源復(fù)制進(jìn)去,,然后保存。

阿里源:

deb http://mirrors.aliyun.com/ubuntu/ xenial main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ xenial-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ xenial main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse

清華源:

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

3.更新

更新源

sudo apt-get update

修復(fù)損壞的軟件包,,嘗試卸載出錯的包,,重新安裝正確版本的。

sudo apt-get -f install

更新軟件

sudo apt-get upgrade

Debian

1.備份

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

2.更換源

一般情況下,,將/etc/apt/sources.list文件中 Debian 默認(rèn)的源地址http://deb.替換為http://mirrors.ustc.edu.cn(清華源)即可,。

sudo sed -i 's/deb./mirrors.ustc.edu.cn/g' /etc/apt/sources.list

也可以直接編輯/etc/apt/sources.list文件(v)

sudo vi /etc/apt/sources.list

加入如下內(nèi)容即可

deb http://mirrors.ustc.edu.cn/debian stable main contrib non-free
# deb-src http://mirrors.ustc.edu.cn/debian stable main contrib non-free
deb http://mirrors.ustc.edu.cn/debian stable-updates main contrib non-free
# deb-src http://mirrors.ustc.edu.cn/debian stable-updates main contrib non-free

# deb http://mirrors.ustc.edu.cn/debian stable-proposed-updates main contrib non-free
# deb-src http://mirrors.ustc.edu.cn/debian stable-proposed-updates main contrib non-free

敲擊i鍵進(jìn)入插入模式,組合鍵ctrl+shift+v將復(fù)制內(nèi)容粘貼至源文件中,,敲擊esc鍵進(jìn)入命令模式,,輸入:wq!保存并退出。

其他鏡像源: 阿里云:http://mirrors.aliyun.com/ 搜狐:http://mirrors.sohu.com/ 網(wǎng)易:http://mirrors.163.com/

3.更新

sudo apt-get update

Fedora

su
cd /etc/yum.repos.d/mv fedora.repo fedora.repo.backup
mv fedora-updates.repo fedora-updates.repo.backup
wget -O /etc/yum.repos.d/fedora.repo http://mirrors.aliyun.com/repo/fedora.repo
wget -O /etc/yum.repos.d/fedora-updates.repo http://mirrors.aliyun.com/repo/fedora-updates.repo
dnf clean all
dnf makecache

OpenSUSE

1.禁用原有軟件源

sudo zypper mr -da

2.添加科大鏡像源

sudo zypper ar -fc https://mirrors.ustc.edu.cn/opensuse/distribution/leap/42.1/repo/oss USTC:42.1:OSSsudo zypper ar -fc https://mirrors.ustc.edu.cn/opensuse/distribution/leap/42.1/repo/non-oss USTC:42.1:NON-OSSsudo zypper ar -fc https://mirrors.ustc.edu.cn/opensuse/update/leap/42.1/oss USTC:42.1:UPDATE-OSSsudo zypper ar -fc https://mirrors.ustc.edu.cn/opensuse/update/leap/42.1/non-oss USTC:42.1:UPDATE-NON-OSS

3.手動刷新軟件源

sudo zypper ref

4.更新系統(tǒng)

sudo zypper up

FreeBSD

1.修改 pkg 源

mkdir -p /usr/local/etc/pkg/repos
vim /usr/local/etc/pkg/repos/FreeBSD.conf

# content of FreeBSD.conf
FreeBSD: {
    url: "pkg+http://mirrors.ustc.edu.cn/freebsd-pkg/${ABI}/quarterly",}

2.修改 ports 源

vim /etc/make.conf

# content of make.confFETCH_CMD=axel -n 10 -aDISABLE_SIZE=yesMASTER_SITE_OVERRIDE?=http://mirrors.ustc.edu.cn/freebsd-ports/distfiles/${DIST_SUBDIR}/

3.修改 portsnap 源

vim /etc/portsnap.conf

# content of porsnap.confSERVERNAME=porsnap.tw.freebsd.org

本文分享自微信公眾號 - Zeruns(zeruns-gzh),,作者:zeruns

原文出處及轉(zhuǎn)載信息見文內(nèi)詳細(xì)說明,,如有侵權(quán),請聯(lián)系 [email protected] 刪除,。

原始發(fā)表時間:2020-03-30

本文參與騰訊云自媒體分享計劃,,歡迎正在閱讀的你也加入,一起分享,。

點贊 3

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點,。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購買等信息,,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請點擊一鍵舉報,。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多