1.upstart Դ?? ubuntu
2.使用apt-mirror搭建Ubuntu软件源的实例教程
upstart Դ?? ubuntu
管理服务的最佳时机在启动时。使用service –status-all命令虽能列出所有服务,但显示状态常不佳,且无法直接操作服务。2021最新引流源码
为解决此问题,Upstart用户可采取service –status-all方法。WG亚博源码而SysV init脚本用户则应查阅 sysv-rc-conf 或安装rcconf工具。
切记,避免直接修改或删除rc * .d文件夹中的符号链接,以防升级包重新创建这些链接。正确管理服务需遵循系统规范。
使用apt-mirror搭建Ubuntu软件源的实例教程
搭建自有Ubuntu源的原因有很多节省外网带宽
提前下载,缓解国外源下载缓慢
私有定制软件包发布
本文测试环境
ubuntu .(LTS) 位
apt-mirror 版本 0.5.1-1
nginx 版本 1.4.6-1ubuntu3.1
安装apt-mirror
复制代码
代码如下:
# sudo apt-get update# sudo apt-get install apt-mirror=0.5.1-1
配置apt-mirror
apt-mirror的直播背景软件源码配置文件位置为 /etc/apt/mirror.list
根据注释修改相应内容,一般只需要修改 base_path和更改、添加软件源。以下配置文件我只添加了Ubuntu .和MongoDB的战神引擎 合击 源码软件源,你可以根据你的需要添加Ubuntu其他版本软件源。
复制代码
代码如下:
############# config ###################
# 配置数据基目录
set base_path /data/apt-mirror
# 配置镜像存储位置
# set mirror_path $base_path/mirror
# 配置临时下载索引位置
# set skel_path $base_path/skel
# 配置日子,URLs和MD5校验信息存储位置
# set var_path $base_path/var
# 配置删除过期源脚本位置(默认不删除,方便安装旧版本软件)
# set cleanscript $var_path/clean.sh
# 设置默认架构,视频探店源码 可填: amd 或 i,默认是和本机一个架构
# set defaultarch running host architecture
#
# 设定下载后运行的脚本位置
# set postmirror_script $var_path/postmirror.sh
# 设置是否执行 下载后的脚本操作,默认是1(但是默认没有postmirror.sh脚本)
set run_postmirror 0
# 设置下载线程数
set nthreads
# 是否替换URL中的波浪线,替换成%7E(HTML代码),否则会跳过不进行下载
set _tilde 0
#
############# end config ##############
# 配置Ubuntu trusty 源
deb /ubuntu trusty main restricted universe multiverse
deb /ubuntu trusty-security main restricted universe multiverse
deb /ubuntu trusty-updates main restricted universe multiverse
deb /ubuntu trusty-proposed main restricted universe multiverse
deb /ubuntu trusty-backports main restricted universe multiverse
deb-src /ubuntu trusty main restricted universe multiverse
deb-src /ubuntu trusty-security main restricted universe multiverse
deb-src /ubuntu trusty-updates main restricted universe multiverse
deb-src /ubuntu trusty-proposed main restricted universe multiverse
deb-src /ubuntu trusty-backports main restricted universe multiverse
# clean /ubuntu
# 配置MongoDB源
# 官方地址 /ubuntu trusty main restricted universe multiverse
deb [arch=amd] /ubuntu trusty-security main restricted universe multiverse
deb [arch=amd] /ubuntu trusty-updates main restricted universe multiverse
deb [arch=amd] /ubuntu trusty-proposed main restricted universe multiverse
deb [arch=amd] /ubuntu trusty-backports main restricted universe multiverse
复制代码
代码如下:
deb-src [arch=amd] /ubuntu trusty main restricted universe multiversedeb-src [arch=amd] /ubuntu trusty-security main restricted universe multiverse
deb-src [arch=amd] /ubuntu trusty-updates main restricted universe multiverse
deb-src [arch=amd] /ubuntu trusty-proposed main restricted universe multiverse
deb-src [arch=amd] /ubuntu trusty-backports main restricted universe multiverse
复制代码
代码如下:
# 配置MongoDB源deb [arch=amd] : --recv 7F0CEB
此时你就可以使用自建源安装软件啦~~
以下安装了MongoDB和htop来进行测试
复制代码
代码如下:
sudo apt-get install -y mongodb-org=2.6.5 htop2024-11-30 07:22
2024-11-30 06:43
2024-11-30 06:24
2024-11-30 06:11
2024-11-30 05:24
2024-11-30 05:22
2024-11-30 05:08
2024-11-30 04:53