1. 程式人生 > >debian搭建本地鏡像源

debian搭建本地鏡像源

完成 本地 tar etc .sh fig vim html 安裝

1. 安裝apt-mirror

apt-get install apt-mirror

2. 配置apt-mirror

vim /etc/apt/mirror.list

2.1 下載目錄什麽的基礎配置建議使用默認。

2.2 deb 配置的是拖庫的目標地址 //次配置中選擇的是163鏡像站。

############# config ##################
#
# set base_path /var/spool/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 ############## deb http://mirrors.163.com/debian/ jessie main non-free contrib deb http://mirrors.163.com/debian/ jessie-updates main non-free contrib
deb http://mirrors.163.com/debian/ jessie-backports main non-free contrib deb-src http://mirrors.163.com/debian/ jessie main non-free contrib deb-src http://mirrors.163.com/debian/ jessie-updates main non-free contrib deb-src http://mirrors.163.com/debian/ jessie-backports main non-free contrib deb http://mirrors.163.com/debian-security/ jessie/updates main non-free contrib
deb-src http://mirrors.163.com/debian-security/ jessie/updates main non-free contrib

3. 拖庫

apt-mirror

此例子中的配置共需下載140+個GB的文件。

4. 發布
4.1 安裝apache服務器

apt-get install apache2

4.2 鏈接

ln -s /var/spool/apt-mirror/mirror/mirrors.163.com/debian /var/www/html/debian

OK,至此apt-mirror服務器搭建完成。

5. 使用

切換至測試機器

5.1 vim /etc/apt/sources.list

22 #deb http://mirrors.163.com/debian/ jessie main non-free contrib
23 #deb http://mirrors.163.com/debian/ jessie-updates main non-free contrib
24 #deb http://mirrors.163.com/debian-security/ jessie/updates main non-free contrib
25 
26 deb http://192.168.25.138/debian/ jessie main non-free contrib
27 deb http://192.168.25.138/debian/ jessie-updates main non-free contrib
28 deb-src http://192.168.25.138/debian/ jessie main non-free contrib

註:192.168.25.138為apt-mirror服務器的地址。

5.2 更新本地配置

apt-get update

5.3 安裝測試

apt-get install 測試軟件包名

如果識別並安裝成功,恭喜你,從此再也不用擔心外網網速了。

debian搭建本地鏡像源