博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ubuntu10.04制作官方源镜像以及搭建本地源
阅读量:6252 次
发布时间:2019-06-22

本文共 2291 字,大约阅读时间需要 7 分钟。

不能上网、网速慢、共享等等需求,使我们不能或者不想使Ubuntu10.04在线安装软件包,而是需要一个本地的更新源。通过apt-mirror工具,我们可以轻松制作官方源的本地镜像,通过本地镜像,我们可以本地安装更新软件.

1. 安装apt-mirror工具

sudo apt-get install apt-mirror

或者下载源码编译,不过推荐apt安装.方法自行摸索.

 

2. 配置apt-mirror工具

gksu gedit /etc/apt/mirrors.list

清除原有内容,没关系,输入以下内容:

set nthreads     20

set _tilde 0
#
############# end config ##############
deb http://mirrors.sohu.com/ubuntu/ lucid main universe restricted multiverse
deb http://mirrors.sohu.com/ubuntu/ lucid-security universe main multiverse restricted
deb http://mirrors.sohu.com/ubuntu/ lucid-updates universe main multiverse restricted
deb http://mirrors.sohu.com/ubuntu/ lucid-proposed universe main multiverse restricted
deb http://mirrors.sohu.com/ubuntu/ lucid-backports universe main multiverse restricted
clean http://mirrors.sohu.com/ubuntu

这里的地址规则和sources.list中是一样的,用的是sohu的镜像,内容很全的,与官方同步的.

 

3. 开始制作

sudo apt-mirror

大概会显示

Downloading 80 index files using 20 threads...

Begin time: Fri Mar 30 21:47:40 2012
[20]... [19]... [18]... [17]... [16]... [15]... [14]... [13]... [12]... [11]... [10]... [9]... [8]... [7]... [6]... [5]... [4]... [3]... [2]... [1]... [0]... 
End time: Fri Mar 30 21:47:57 2012
Proceed indexes: [PPPPP]
44 GiB will be downloaded into archive.
Downloading 4388 archive files using 20 threads...

制作完成后会有提示,制作过程可以中断,之后再次运行apt-mirror会继续以前的工作.每次都可以这样更新.

此过程根据网速不同,会有不同的时间.网速快的话,1个晚上就能完成.

 

4. 作为本地源头更新

制作完成后,在本地存储的地址为:/var/spool/apt-mirror/mirror/mirrors.sohu.com/ubuntu

编辑sources.list

gksu gedit /ets/apt/sources.list

删除原有内容,写入:

deb file:///var/spool/apt-mirror/mirror/mirrors.sohu.com/ubuntu/ lucid main universe restricted multiverse  

deb file:///var/spool/apt-mirror/mirror/mirrors.sohu.com/ubuntu/ lucid-security universe main multiverse restricted  
deb file:///var/spool/apt-mirror/mirror/mirrors.sohu.com/ubuntu/ lucid-updates universe main multiverse restricted  
deb file:///var/spool/apt-mirror/mirror/mirrors.sohu.com/ubuntu/ lucid-proposed universe main multiverse restricted  
deb file:///var/spool/apt-mirror/mirror/mirrors.sohu.com/ubuntu/ lucid-backports universe main multiverse restricted 

 

5. 本地安装软件包

sudo apt-get update

sudo apt-get install xxxx

 

6. 制作成局域网源

安装apaches

/var/spool/apt-mirror/mirror/mirrors.sohu.com/ubuntu/ 作为webroot

地址为局域网ip地址即可.

转自 

转载于:https://www.cnblogs.com/zbunix/archive/2013/04/28/3048894.html

你可能感兴趣的文章
Effective Java --使类和成员的可访问性最小化
查看>>
Ext 4.2.1 教大家如何去规避ext-all和动态加载机制的优缺点
查看>>
83. Remove Duplicates from Sorted List(从有序链表中删除重复节点)
查看>>
异常处理汇总 ~ 修正果带着你的Code飞奔吧!
查看>>
软件测试行业趋势分析和思考
查看>>
简单socket()编程
查看>>
hpu校赛题目
查看>>
商品条形码(JBarcode)Java版(二)
查看>>
POJ-1062-昂贵的聘礼(枚举)
查看>>
linux下git+github个人使用记录
查看>>
昂贵的聘礼 POJ - 1062
查看>>
OpenGL 位图和图像概念
查看>>
jdbc
查看>>
模块初识
查看>>
百度地图需要的效果-有感
查看>>
1097 Deduplication on a Linked List
查看>>
查看 NPM、Yarn 全局安装的包
查看>>
软件版本号命名规则
查看>>
vue导航栏跳转路由
查看>>
OC - 缓存 - NSCache - 介绍
查看>>