码迷,mamicode.com
首页 > 其他好文 > 详细

Debian9.4更换源的正确姿势

时间:2019-08-31 17:36:29      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:name   网络不通   apt-get   注意事项   ESS   gate   install   key   mask   

备份原有的源配置文件

$ cp /etc/apt/sources.list /etc/apt/sources.listbak 

#删除该源配置文件

$ rm -f /etc/apt/sources.list

#生成国内的源配置文件

$ echo "deb http://ftp.cn.debian.org/debian/ stretch main" > /etc/apt/sources.list

$ echo "deb http://ftp.cn.debian.org/debian/ stretch-updates main" >> /etc/apt/sources.list

 

$ echo "deb http://ftp.cn.debian.org/debian-security stretch/updates main" >> /etc/apt/sources.list

 

#更新源

$ apt-get update

 

debian的全球镜像站:

https://www.debian.org/mirror/list

转载于:https://blog.csdn.net/github_38313789/article/details/80675556

 

注意事项:网络不通使用ifup  网卡名字

安装ssh工具

apt-get install ssh按y确认安装

 

配置多个ip:

auto enp1s0f0
iface enp1s0f0 inet static
address 103.97.229.247
netmask 255.255.255.0
gateway 103.97.229.254
auto enp1s0f0:1
iface enp1s0f0:1 inet static
address 103.97.229.248
netmask 255.255.255.0

auto enp1s0f0:2
iface enp1s0f0:2 inet static
address 103.97.229.165
netmask 255.255.255.0

dns-nameservers 114.114.114.114 8.8.8.8 

 

Debian9.4更换源的正确姿势

标签:name   网络不通   apt-get   注意事项   ESS   gate   install   key   mask   

原文地址:https://www.cnblogs.com/rui517hua20/p/11439489.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!