将“apt-get”应用程序保存到 USB 上

将“apt-get”应用程序保存到 USB 上

我正在使用 USB 运行 Ubuntu live,但我不想安装它。在同一个 USB 上,我有第二个分区来保存文件。我该如何保存“apt-get install*' 并将软件商店应用程序复制到我的第二个分区?

谢谢你!

答案1

如果您打算将 apt 下载的 deb 缓存在第二个分区而不是主分区上,那么您可以这样做:

# assuming the second partition is mounted at /mnt/second
# move the existing cache over to the second partition
sudo mv /var/cache/apt /mnt/second/apt-cache

# symlink the original name to the new location
sudo ln -s /mnt/second/apt-cache /var/cache/apt

相关内容