如何使用命令行重新安装 Ubuntu

如何使用命令行重新安装 Ubuntu

我想清理我的服务器(删除服务器上的所有内容),但我知道的唯一方法是重新安装。是否有删除所有文件的命令或重新安装的命令?

答案1

如果您想重新安装它,您将必须制作一个安装程序光盘(或闪存驱动器)并按照原来的方式进行安装。

或者,您可以卸载所有已安装的软件包。您可以使用dpkg --get-selections | grep -v deinstall或列出它们apt list --installed

您还可以使用 Python 脚本,它需要python3-apt

#!/usr/bin/python3

import apt

cache = apt.cache.Cache()
for package in cache:
    if (package.is_installed and
        package.candidate.priority not in ("required", "important")):
        print(package.name, end=" ")
print()

脚本来源

相关内容