能否提供debian12 的本地源加载方法 #6
Labels
No Label
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: HswOAuth/llm_course#6
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
能否提供debian12 的本地源加载方法
供参考:
step1:下载 Debian 12 的 ISO 镜像,然后将其挂载到某个目录:https://www.debian.org/distrib/
sudo mkdir /mnt/debian12
sudo mount -o loop /path/to/debian-12.iso /mnt/debian12
step2:编辑 sources.list,在 /etc/apt/sources.list 文件中添加以下行:
deb [trusted=yes] file:/mnt/debian12/ bullseye main
step3:运行以下命令更新软件源:
sudo apt update