搭建Ubuntu内网本地源

一、安装 apt-mirror

sudo apt install apt-mirror

sudo vi /etc/apt/mirror.list

参考以下配置文件:(清空原有的配置文件,直接使用以下配置文件即可)

set base_path /var/spool/apt-mirror

# 下载线程数

set nthreads 20

set _tilde 0

# Ali yun(,或者cn源或清华源都可,这里没有添加deb-src的源)

deb http://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ trusty-updates main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ trusty-proposed main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ trusty-backports main restricted universe multiverse

clean http://mirrors.aliyun.com/ubuntu

同步

sudo apt-mirror

然后等待很长时间 , 同步的镜像文件目录为 /var/spool/apt-mirror/mirror/mirrors.aliyun.com/ubuntu/ , 如果增加了其他的源,在 /var/spool/apt-mirror/mirror 目录下还有其他的地址为名的目录;

注意:当 apt-mirror 被意外中断时,只需要重新运行即可,apt-mirror 支持断点续存;另外,意外关闭,需要在 /var/spool/apt-mirror/var 目录下面删除 apt-mirror.lock 文件【 sudo rm apt-mirror.lock 】,之后执行 apt-mirror 重新启动

sudo rm /var/spool/apt-mirror/var/apt-mirror.lock


二、发布源

安装 apache2

sudo apt install apache2

Apache2 的默认网页文件目录位于 /var/www/html,可做个软链接

sudo ln -s /var/spool/apt-mirror/mirror/mirrors.aliyun.com/ubuntu /var/www/html/ubuntu


三、客户端配置

编辑 /etc/apt/source.list,加入以下内容

# Local Source      #端口默认为80

deb http://ip/ubuntu/ trusty main restricted universe multiverse

deb  http://ip/ubuntu/ trusty-security main restricted universe multiverse

deb  http://ip/ubuntu/ trusty-updates main restricted universe multiverse 

deb http://ip/ubuntu/ trusty-proposed main restricted universe multiverse

deb  http://ip/ubuntu/ trusty-backports main restricted universe multiverse


更新 apt-get 源

apt update

你可能感兴趣的:(搭建Ubuntu内网本地源)