apt源的配置步骤有哪些
⑴ 如何在有debian光盘的前提下建立apt源
1
安装debian系统后,使用"apt-get update"命令,使安装源生效。
2
安装"apt-spy“。
命令:"apt-get install apt-spy"
3
选择'y',确认安装。
4
安装完成后,运行命令"apt-spy -d stable -a asia -t 5"。
其中-d选项指定发行版本,可选项为"stable、testing、unstable”。unstable为非稳定版,stable为稳定版,建议选择stable。
-a选项指定debian安装源服务器的区域,如asia、Europe、North-America。asia为亚洲,建议选择此项。
-t为超时阈值。设置较小的值可以忽略较慢的服务器。为了选择较小的服务器,可以选择一个比较小的值。
5
命令完成后,apt-spy自动创建/etc/apt/sources.list.d文件夹,并在该文件夹里面创建apt-spy.list文件。
6
备份/etc/apt/sources.list文件。
命令:cp /etc/apt/sources.list /etc/apt/sources.list.bak
7
使用“apt-spy.list"文件里的内容覆盖sources.list文件中。
8
内容示例如下。可以通过添加contrib和non-free的方式增加软件源的范围。
9
使用"apt-get update"命令更新软件源。
10
至此,更新源设置完成。
END
-d distribution指定发行版本,如stable、unstable、testing等。
2
-a area 更新源的区域。如asia等。建议选择asia
3
-t 指定超时阈值。较小的阈值可以选择较快的服务器。
4
-v 输出软件的版本信息。
5
-h 可以获取详细的参数列表。其他参数不再赘述,如有需要请用-h选项获取。
END
使用光盘安装系统时,如果安装apt-spy软件失败,请先选择一个可用的软件安装源,如网易安装源。或者是使用光盘安装apt-spy。
对于非root用户,请在运行命令前添加sudo,如更改“apt-get update”为"sudo apt-get update"。
如果无法运行sudo命令,请联系管理员解决。
⑵ 麒麟系统连不上有线网怎么办
配置网卡地址在网络连接中设置网卡IP和克隆MAC地址,建议先找一台能联网的windows电脑,查看IP地址和MAC地址后,将板卡上地址配置为与windows一致。配置DNS服务器地址执行 sudo vim /etc/network/interfaces,向文件中添加dns-nameserver 114.114.114.114执行sudo vim /etc/resolv.conf, 添加 nameserver 114.114.114.114执行sudo service networking restart,重启网络即可启用连接在编辑连接中点击启用连接,实现联网设置apt源目前我使用的银河Kylin 4.0.2版本是基于ubuntu 18.04修改的,修改apt源步骤如下,如果是其他版本,建议联系厂家确认与之对应的ubuntu版本,然后再进行修改。参考https://developer.aliyun.com/mirror/ubuntu用你熟悉的编辑器打开:/etc/apt/sources.list替换默认的http://archive.ubuntu.com/为mirrors.aliyun.comdeb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiversedeb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiversedeb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiversedeb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiversedeb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiversedeb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse然后执行apt-get update