Ubuntu 离线或者代理安装软件

这几天有一台Ubuntu的服务器要部署软件,但是因为比较特殊,无法访问外网,使用了各种方法,记录下来,供大家参考。

1. 使用光盘镜像文件作为安装源

#mkdir /cdrom                                                                                                         ## 创建文件夹准备加载目录

#mount -o loop /home/ubuntu-16.04.2-server-amd64.iso /cdrom              ##将镜像文件挂载到指定的目录

#vi /etc/apt/source.list                                                                                           ##修改安装源文件

deb file:/cdrom stable main restricted                                ##stable main restricted 是光盘dists目录下查找位置,不同的镜像文件目录不同要调整。

 :wq                                                                                                                        ##保存退出

#apt-get update                                                                                                    ##更新安装源

#apt-get install gcc                                                                                               ##使用本地镜像文件安装gcc

2. 使用离线安装包作为安装源

a)找一台可以上网的电脑然后按照下面设置

#rm -rf /var/cache/apt/archives/*                 ## 清空缓存目录
#apt-get -d install <包名>                             ## 下载相关程序包和依赖包,但是仅下载不安装。下载目录为/var/cache/apt/archives/

b) 在无法上网的电脑上安装本地源制作工具。

从可以上网的电脑上下载dpkg-dev_1.18.4ubuntu1.1_all.deb文件,并复制到无法上网的电脑上;

# dpkg -i dpkg-dev_1.18.4ubuntu1.1_all.deb                             ##安装本地源制作工具

如果无法安装,需要先安装依赖包:libdpkg-perl,binutils,make 等,下载方式用上一步方式下载。

c) 将离线安装包放在/pkg/debs 目录下

#chmod 777 –R /pkg                                                                                        ##更改文件权限

#cd /pkg                                                                                                              ##进入离线软件目录

#dpkg-scanpackages debs  /dev/null | gzip > debs/Packages.gz          ## 创建安装源索引文件

#chmod 777 debs/Packages.gz                                                                    ##修改索引文件权限

#vi /etc/apt/source.list                                                                                       ##修改安装源文件

   deb file:/pkg debs/                                                                                         ##设置本地安装源目录

   :wq                                                                                                                     ##保存退出

#apt-get update                                                                                                  ##更新安装源

#apt-get install gcc                                                                                            ##使用本地安装源安装gcc

3. 使用代理服务器安装程序

#vi /etc/apt/apt.conf                                                                                            ##更改安装程序配置文件

   Acquire::http::proxy"http://10.10.10.25:80/";              ##添加http代理,代理服务器地址根据实际情况填写。

   Acquire::ftp::proxy"ftp://10.10.10.25:80/";                  ##添加ftp代理,代理服务器地址根据实际情况填写。

   Acquire::https::proxy"https://10.10.10.25:443/";           ##添加https代理,代理服务器地址根据实际情况填写。

   :wq                                                                                                                     ##保存退出
#apt-get update                                                                                                  ##更新安装源

#apt-get install gcc                                                                                            ##使用本地安装源安装gcc
posted @ 2023-09-28 09:19  Chuan_Chen  阅读(148)  评论(0编辑  收藏  举报
#waifu-toggle { background-color: #fa0; border-radius: 5px; bottom: 66px; color: #fff; cursor: pointer; font-size: 12px; right: 0; margin-right: -100px; padding: 5px 2px 5px 5px; position: fixed; transition: margin-right 1s; width: 60px; writing-mode: vertical-lr; } #waifu-toggle.waifu-toggle-active { margin-right: -40px; } #waifu-toggle.waifu-toggle-active:hover { margin-right: -30px; } #waifu { bottom: -1000px; right: 0; line-height: 0; margin-bottom: -10px; position: fixed; transform: translateY(3px); transition: transform .3s ease-in-out, bottom 3s ease-in-out; z-index: 1; } #waifu:hover { transform: translateY(0); } #waifu-tips { animation: shake 50s ease-in-out 5s infinite; background-color: rgba(236, 217, 188, .5); border: 1px solid rgba(224, 186, 140, .62); border-radius: 12px; box-shadow: 0 3px 15px 2px rgba(191, 158, 118, .2); font-size: 14px; line-height: 24px; margin: -30px 20px; min-height: 70px; opacity: 0; overflow: hidden; padding: 5px 10px; position: absolute; text-overflow: ellipsis; transition: opacity 1s; width: 250px; word-break: break-all; } #waifu-tips.waifu-tips-active { opacity: 1; transition: opacity .2s; } #waifu-tips span { color: #0099cc; } #waifu #live2d { cursor: grab; height: 300px; position: relative; width: 300px; } #waifu #live2d:active { cursor: grabbing; } #waifu-tool { color: #aaa; opacity: 0; position: absolute; left: -10px; top: 70px; transition: opacity 1s; } #waifu:hover #waifu-tool { opacity: 1; } #waifu-tool span { color: #7b8c9d; cursor: pointer; display: block; line-height: 30px; text-align: center; transition: color .3s; } #waifu-tool span:hover { color: #0684bd; /* #34495e */ } @keyframes shake { 2% { transform: translate(.5px, -1.5px) rotate(-.5deg); } 4% { transform: translate(.5px, 1.5px) rotate(1.5deg); } 6% { transform: translate(1.5px, 1.5px) rotate(1.5deg); } 8% { transform: translate(2.5px, 1.5px) rotate(.5deg); } 10% { transform: translate(.5px, 2.5px) rotate(.5deg); } 12% { transform: translate(1.5px, 1.5px) rotate(.5deg); } 14% { transform: translate(.5px, .5px) rotate(.5deg); } 16% { transform: translate(-1.5px, -.5px) rotate(1.5deg); } 18% { transform: translate(.5px, .5px) rotate(1.5deg); } 20% { transform: translate(2.5px, 2.5px) rotate(1.5deg); } 22% { transform: translate(.5px, -1.5px) rotate(1.5deg); } 24% { transform: translate(-1.5px, 1.5px) rotate(-.5deg); } 26% { transform: translate(1.5px, .5px) rotate(1.5deg); } 28% { transform: translate(-.5px, -.5px) rotate(-.5deg); } 30% { transform: translate(1.5px, -.5px) rotate(-.5deg); } 32% { transform: translate(2.5px, -1.5px) rotate(1.5deg); } 34% { transform: translate(2.5px, 2.5px) rotate(-.5deg); } 36% { transform: translate(.5px, -1.5px) rotate(.5deg); } 38% { transform: translate(2.5px, -.5px) rotate(-.5deg); } 40% { transform: translate(-.5px, 2.5px) rotate(.5deg); } 42% { transform: translate(-1.5px, 2.5px) rotate(.5deg); } 44% { transform: translate(-1.5px, 1.5px) rotate(.5deg); } 46% { transform: translate(1.5px, -.5px) rotate(-.5deg); } 48% { transform: translate(2.5px, -.5px) rotate(.5deg); } 50% { transform: translate(-1.5px, 1.5px) rotate(.5deg); } 52% { transform: translate(-.5px, 1.5px) rotate(.5deg); } 54% { transform: translate(-1.5px, 1.5px) rotate(.5deg); } 56% { transform: translate(.5px, 2.5px) rotate(1.5deg); } 58% { transform: translate(2.5px, 2.5px) rotate(.5deg); } 60% { transform: translate(2.5px, -1.5px) rotate(1.5deg); } 62% { transform: translate(-1.5px, .5px) rotate(1.5deg); } 64% { transform: translate(-1.5px, 1.5px) rotate(1.5deg); } 66% { transform: translate(.5px, 2.5px) rotate(1.5deg); } 68% { transform: translate(2.5px, -1.5px) rotate(1.5deg); } 70% { transform: translate(2.5px, 2.5px) rotate(.5deg); } 72% { transform: translate(-.5px, -1.5px) rotate(1.5deg); } 74% { transform: translate(-1.5px, 2.5px) rotate(1.5deg); } 76% { transform: translate(-1.5px, 2.5px) rotate(1.5deg); } 78% { transform: translate(-1.5px, 2.5px) rotate(.5deg); } 80% { transform: translate(-1.5px, .5px) rotate(-.5deg); } 82% { transform: translate(-1.5px, .5px) rotate(-.5deg); } 84% { transform: translate(-.5px, .5px) rotate(1.5deg); } 86% { transform: translate(2.5px, 1.5px) rotate(.5deg); } 88% { transform: translate(-1.5px, .5px) rotate(1.5deg); } 90% { transform: translate(-1.5px, -.5px) rotate(-.5deg); } 92% { transform: translate(-1.5px, -1.5px) rotate(1.5deg); } 94% { transform: translate(.5px, .5px) rotate(-.5deg); } 96% { transform: translate(2.5px, -.5px) rotate(-.5deg); } 98% { transform: translate(-1.5px, -1.5px) rotate(-.5deg); } 0%, 100% { transform: translate(0, 0) rotate(0); } } © 2022 GitHub, Inc. Terms Privacy Securi