debian 挂载 iso 为本地 apt 软件源 首先,下载debian 10.1.0 amd64

架构的dvd iso 将四张dvd iso分别挂载到/media目录的挂载点: # mount /path/to/debian-10.1.0-amd64-DVD-1.iso /media/cdrom1/ # mount /path/to/debian-10.1.0-amd64-DVD-2.iso /media/cdrom2/

debian 挂载 iso 为本地 apt 软件源

首先,下载debian 10.1.0 amd64架构的dvd iso

将四张dvd iso分别挂载到/media目录的挂载点:

# mount /path/to/debian-10.1.0-amd64-DVD-1.iso /media/cdrom1/
# mount /path/to/debian-10.1.0-amd64-DVD-2.iso /media/cdrom2/
# mount /path/to/debian-10.1.0-amd64-DVD-3.iso /media/cdrom3/
# mount /path/to/debian-10.1.0-amd64-DVD-4.iso /media/cdrom4/

也可以添加到/etc/fstab:

\`\`

/srv/debsrcs/debian-10.1.0-amd64-DVD-1.iso/media/cdrom1udf,iso9660 loop 0 0 /srv/debsrcs/debian-10.1.0-amd64-DVD-2.iso/media/cdrom2udf,iso9660 loop 0 0 /srv/debsrcs/debian-10.1.0-amd64-DVD-3.iso/media/cdrom3udf,iso9660 loop 0 0 /srv/debsrcs/debian-10.1.0-amd64-DVD-4.iso/media/cdrom4udf,iso9660 loop 0 0 \`\`

执行该命令挂载,记得不需要的时候移除掉,否则会启动不了系统

\`\`

mount -a

\`\`

挂载好后,将本地挂载路径写入 apt 软件源,编辑 /etc/apt/sources.list 文件,添加如下行:

deb [ trusted=yes ] file:/media/cdrom1/ buster main contrib deb [ trusted=yes ] file:/media/cdrom2/ buster main contrib deb [ trusted=yes ] file:/media/cdrom3/ buster main contrib deb [ trusted=yes ] file:/media/cdrom4/ buster main contrib

apt update 后即可安装软件

!! References

最后修改:2024 年 09 月 05 日
如果觉得我的文章对你有用,请随意赞赏