有时 Ubuntu 会显示如下弹出窗口:
(看起来很奇怪,因为我正在使用风化层)
我如何将 Ubuntu 想要安装的软件包/更改列表导出到文件?这是为了调试目的 - 我认为此更新中的某些内容破坏了我的系统,我希望能够准确找出破坏的原因。
答案1
打开终端并输入以下内容:
sudo apt update
apt list --upgradable > ~/downloadable.txt
可供下载的软件列表将保存到downloadable.txt
您的主文件夹中命名的文件中。
在这种情况下,您可以忽略以下警告...
WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
答案2
或者你可以使用apt-get
sudo apt-get update
yes no | sudo apt-get dist-upgrade > ~/upgradeable.txt
您可以在主目录中找到该列表,在文件底部,您会看到如下内容:
123 upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
Need to get 180 MB/197 MB of archives.
After this operation, 89,1 MB of additional disk space will be used.
这可以表明升级安装需要多长时间。