Vib*_*hum 3 installation downloads
谁能告诉我(如果可能的话)我如何保存我通过 Ubuntu 软件中心下载的软件的安装程序文件...我是 Ubuntu 新手,所以给我一个我能理解的答案。
Ubuntu 使用 deb 档案,当您从软件中心下载安装时,所有软件包都缓存在/var/cache/apt/archives. 基本上你需要做的是将它复制到其他地方或外部备份驱动器中。所以在你的文件夹中导航到/var/cache/apt/archive. 你可以这样做Ctrl+L并输入位置,然后将所有 *.deb 包复制到其他地方。
除此之外,如果您对命令行很熟悉,则可以执行以下操作:
cp -r /var/cache/apt/archives /your/destination
Run Code Online (Sandbox Code Playgroud)
您的目的地应该是可写的,即您应该能够在复制 debs 的位置创建文件夹和文件。
如果你想在另一个 Ubuntu 上安装软件,你可以这样做sudo cp -r /you/destination/*.deb /var/cache/apt/archives。