apt-mirror搭建ubuntu软件源

一、准备环境

1. 系统:ubuntu 16.04.6(LTS) 64位

2. 镜像软件:apt-mirror 0.5.1-1ubuntu1

3. HTTP协议发布软件:nginx 1.10.3-0ubuntu0.16.04.4

二、安装软件

# 查看apt-mirror版本
macrored@ubuntu:~$ apt policy apt-mirror
apt-mirror:
  Installed: 0.5.1-1ubuntu1
  Candidate: 0.5.1-1ubuntu1

# 安装apt-mirror
macrored@ubuntu:~$ sudo apt-get install apt-mirror

# 查看nginx版本
macrored@ubuntu:~$ apt policy nginx
nginx:
  Installed: 1.10.3-0ubuntu0.16.04.4
  Candidate: 1.10.3-0ubuntu0.16.04.4

# 安装nginx
macrored@ubuntu:~$ sudo apt-get install nginx

三、配置apt-mirror

打开配置文件:

sudo vim /etc/apt/mirror.list

根据注释修改相应内容,一般只需要修改base_path和更改、添加软件源。以下配置文件我只添加了Ubuntu 16.04和MongoDB的软件源,你可以根据你的需要添加Ubuntu其他版本软件源。配置文件可参考如下:

############# config ##################
#
set base_path    /home/mirror-data/apt-mirror
#
# set mirror_path  $base_path/mirror
# set skel_path    $base_path/skel
# set var_path     $base_path/var
# set cleanscript $var_path/clean.sh
# set defaultarch  <running host architecture>
# set postmirror_script $var_path/postmirror.sh
# set run_postmirror 0
set nthreads     20
set _tilde 0
#
############# end config ##############

# 等会将会从这些网站上获取离线包,如果系统是64位,默认只下载离线的64位离线包;如果想更改,可以用deb-amd64和deb-i386
deb http://archive.ubuntu.com/ubuntu/ xenial main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ xenial-security main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ xenial-updates main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ xenial-proposed main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse

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

clean http://archive.ubuntu.com/ubuntu

deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen

clean http://localhost/downloads-distro.mongodb.org

保存退出后,接下来就可以开始下载离线镜像包了(第一次会比较久,大约需要150GB左右),直接运行命令:

sudo apt-mirror

如果CPU资源和网络资源都没有被占用的话,那就尝试将http://archive.ubuntu.com换国内的镜像源。

此外,还可以设置定时更新镜像源,我们需要配置apt-mirror每天定时同步,其实就是配置cron。这里apt-mirror提供了cron模板文件,在/etc/cron.d/apt-mirror 中,取消最后一行的#注释即可生效:

0 4 * * * apt-mirror /usr/bin/apt-mirror > /var/spool/apt-mirror/var/cron.log

以上设置每日4点同步一次。

四、配置HTTP访问

通过以上配置,已经可以在/home/mirror-data/apt-mirror目录下看到生成的几个数据文件。/home/mirror-data/apt-mirror下存放的就是软件镜像。但是如何向其他计算机发布这些数据呢?很明显通过HTTP服务可以做到这一点。我们通过使用Nginx将mirror目录下的内容通过HTTP协议发布。

打开配置文件:

##
# You should look at the following URL‘s in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# http://wiki.nginx.org/Pitfalls
# http://wiki.nginx.org/QuickStart
# http://wiki.nginx.org/Configuration
#
# Generally, you will want to move this file somewhere, and start with a clean
# file but keep this around for reference. Or just disable in sites-enabled.
#
# Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
##

# Default server configuration
#
server {
    listen 80 default_server;
    # listen [::]:80 default_server;

    # SSL configuration
    #
    # listen 443 ssl default_server;
    # listen [::]:443 ssl default_server;
    #
    # Note: You should disable gzip for SSL traffic.
    # See: https://bugs.debian.org/773332
    #
    # Read up on ssl_ciphers to ensure a secure configuration.
    # See: https://bugs.debian.org/765782
    #
    # Self signed certs generated by the ssl-cert package
    # Don‘t use them in a production server!
    #
    # include snippets/snakeoil.conf;

    autoindex on;

    root /home/mirror-data/apt-mirror/mirror;

    # Add index.php to the list if you are using PHP
    index index.html index.htm index.nginx-debian.html;

    server_name 192.168.0.108;

    location / {
        # First attempt to serve request as file, then
        # as directory, then fall back to displaying a 404.
        try_files $uri $uri/ =404;
    }

    access_log /home/mirror-data/apt-mirror.log;

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    #location ~ \.php$ {
    #    include snippets/fastcgi-php.conf;
    #
    #    # With php7.0-cgi alone:
    #    fastcgi_pass 127.0.0.1:9000;
    #    # With php7.0-fpm:
    #    fastcgi_pass unix:/run/php/php7.0-fpm.sock;
    #}

    # deny access to .htaccess files, if Apache‘s document root
    # concurs with nginx‘s one
    #
    #location ~ /\.ht {
    #    deny all;
    #}
}

# Virtual Host configuration for example.com
#
# You can move that to a different file under sites-available/ and symlink that
# to sites-enabled/ to enable it.
#
#server {
#    listen 80;
#    listen [::]:80;
#
#    server_name example.com;
#
#    root /var/www/example.com;
#    index index.html;
#
#    location / {
#        try_files $uri $uri/ =404;
#    }
#}

五、客户端配置

在客户端的source.list文件中配置好镜像源就可以使用了。找另外一台ubuntu 16.04 64位系统,首先备份source.list:

sudo mv /etc/apt/source.list /etc/apt/source.list.bak

新建/etc/apt/source.list,内容参考如下:

deb [arch=amd64] http://自建源IP/archive.ubuntu.com/ubuntu trusty main restricted universe multiverse
deb [arch=amd64] http://自建源IP/archive.ubuntu.com/ubuntu trusty-security main restricted universe multiverse
deb [arch=amd64] http://自建源IP/archive.ubuntu.com/ubuntu trusty-updates main restricted universe multiverse
deb [arch=amd64] http://自建源IP/archive.ubuntu.com/ubuntu trusty-proposed main restricted universe multiverse
deb [arch=amd64] http://自建源IP/archive.ubuntu.com/ubuntu trusty-backports main restricted universe multiverse

# deb-src [arch=amd64] http://自建源IP/archive.ubuntu.com/ubuntu trusty main restricted universe multiverse
# deb-src [arch=amd64] http://自建源IP/archive.ubuntu.com/ubuntu trusty-security main restricted universe multiverse
# deb-src [arch=amd64] http://自建源IP/archive.ubuntu.com/ubuntu trusty-updates main restricted universe multiverse
# deb-src [arch=amd64] http://自建源IP/archive.ubuntu.com/ubuntu trusty-proposed main restricted universe multiverse
# deb-src [arch=amd64] http://自建源IP/archive.ubuntu.com/ubuntu trusty-backports main restricted universe multiverse

保存/etc/apt/source.list,更新镜像源缓存:

sudo apt-get update

然后就大功告成了,可以随意下载一个软件测试一下:

sudo apt-get install htop

原文地址:https://www.cnblogs.com/macrored/p/11520381.html

时间: 2024-10-12 19:36:07

apt-mirror搭建ubuntu软件源的相关文章

UBUntu 软件 源配置方法

最近公司产品需要增加一个功能,就是版本自动更新,使用apt-get 实现.apt-get 软件源配置的方法,参见本人资源里的共享.下面是代码中作为升级的一部分. FILE *fp; char buffer[256]; char source_ok[] = "Reading package lists..."; if(0 > system("mv -f /etc/apt/sources.list /etc/apt/sources.list.upgrade"))

Debian利用iso搭建本地软件源

Debian利用iso搭建本地软件源: mount -o loop debian-9.4.0-amd64-DVD-1.iso /space/deb/ vi /etc/apt/source.list (将原有内容注释,前加#) :wq apt-cdrom -m -d /space/deb/ add apt-get update 原文地址:http://blog.51cto.com/yangzhiming/2114562

《完美应用ubuntu》之全面管理ubuntu软件源

2.全面管理ubuntu软件包 2.1 DEB软件包之间的基本关系: (1)软件仓库:由ubuntu软件包的维护者维护并公开发布的DEB软件包的集合:可位于网络,服务器,硬盘等各种存储介质. (2)软件包管理工具:该工具可用来使用DEB软件包和软件仓库: (3)DEB软件包间的依赖关系:常见的依赖关系有Depends.Recommends和Conflicts: 2.2 底层软件包管理工具--dpkg dpkg工具无法自动解决DEB软件包之间的依赖关系: 常见的dpkg参数表有: (1)查看软件包

Ubuntu 软件源更新(校园网)以及问题总结

最近在折腾Linux,在校园网下怎么能够很好的获取软件很是让我头疼啊~~~ 总结一下吧!!! 首先是校园网的源地址: 清华大学:https://mirrors.tuna.tsinghua.edu.cn/ 自动选择 https://mirrors6.tuna.tsinghua.edu.cn/ 只解析 IPv6https://mirrors4.tuna.tsinghua.edu.cn/ 只解析 IPv4 进入后选择镜像名称旁边的问号,选择对应版本的源,但是一定记住只有ipv6网络的一定将mirror

更换Ubuntu软件源

对于Ubuntu系统, 不同的版本的源都不一样,每一个版本都有自己专属的源. 而对于 Ubuntu 的同一个发行版本,它的源又分布在全球范围内的服务器上.Ubuntu 默认使用的官方源的服务器在欧洲,从国内访问速度很慢.国内的阿里.网易以及一些重点高校也都有 Ubuntu 的源,所以在装完 Ubuntu 系统后最好把官方源更换为国内的源. 1.获取Ubuntu代号 Ubuntu 每个发行版本都有自己的代号,我们要通过我们电脑上 Ubuntu 的代号去找对应的源,Ctrl+Alt+T 打开终端,执

Ubuntu软件源更新

打开ubuntu软件中心,打开"编辑"选项中的软件源. 选择服务器地址:比如清华的镜像地址: 选择好之后关闭,会自动更新,更新如果出现错误,比如提示某个地址获取不到(这个可能是由于被弃用了),那么就在"其他软件"的列表中将对应的网址取消勾选.然后继续更新. 此步骤操作完成之后,在终端中运行: sudo apt-get update #更新软件源

Ubuntu——软件源(非LTS长久支持版)

目前Ubutun版本更新迭代太快-常规版本的维护期都比较短,基本一年以内,只有像10.04, 12.04,14.04还有以后的16.04才会长久支持3-5年. 去年装的最新13.04 已经停止维护好几个月了,之前发现没更新也没管,后面想装某些软件的时候才发现源已无效! 折腾了半天才找到办法,所有停止维护的版本都可以使用old源. 撰写不易,转载请注明出处:http://blog.csdn.net/jscese/article/details/39010273 我的/etc/apt/sources

高速搭建Ubuntu更新源server

在公司学校.常常有须要在本地架设一台Ubuntu源server. 能够通过以下这个简单的步骤来设定. 1. server端的配置 这里我们使用一台装有ubuntu 的PC做server. 1.1. 安装 相应的软件包 $ sudo apt-get install apache2 $ sudo apt-get install apt-mirror 1.2. 运行 apt-mirror 整个repo很大,我们能够对mirror.list做一些改动,仅仅选择一部分的软件包. 例如以下所看到的: deb

windows系统下搭建suse软件源

一.安装ftp组件 依次打开"控制面板"-"程序和功能"-"打开或关闭Windows功能" 把"Internet信息服务"选项中的"FTP服务器"."WEB管理工具"以及"万维网服务"全部选中,这里需要注意打开选项前面的"+"看看里边的子选项有没有勾选,最后选择"确定",等待安装完成. 二.配置ftp服务器 依次打开"