当前位置:首页 > linux > 正文内容

linux 更换apt的源

root4年前 (2020-11-04)linux715
sudo sed -i 's/archive.ubuntu.com/mirrors.ustc.edu.cn/g' /etc/apt/sources.list

archive.ubuntu.com源换为mirrors.ustc.edu.cn 更换的文件是/etc/apt/sources.list

扫描二维码推送至手机访问。

版权声明:本文由一叶知秋发布,如需转载请注明出处。

本文链接:https://zhiqiu.top/?id=31

分享给朋友:

相关文章

curl 的请求 和几个参数

-X [POST GET PUT DELETE]参数执行http请求的方法-d参数用于发送post的请求的数据体$curl -d'login=emma&password=123'-X POST https://google....

linux 安全策略关闭

#防火墙关闭systemctl stop firewalld.service#永久关闭防火墙systemctl disable firewalld.service#临时关闭selinuxsetenforce 0#永久关闭sed -i &qu...

git 命令

修改文件:即添加内容到工作区vim  filepath清除工作区的内容,回溯到上次add的状态或者commit 的状态git checkout -- file添加文件到暂存区git add filepath暂存区文件重新回到工作区...

mysql导出数据的几种方式

第一张:select * from user into outfile '/var/lib/mysql-file/xxx.sql'有的mysql配置了导出文件的位置...

helm的更新部署命令

helm list -n test 查看test 空间下有那些helm安装的程序helm uninstall -n test mysql卸载mysqlhelm  -n test install mysql  ....

centos切勿执行yum -y update

yum update 跟apt-get update 不一样centos的yum update相当于ubuntu的apt upgrade如果想用ubuntu的apt update,centos是yum makecache因为执行yum -y...