我对 Linux 还很陌生,我会成功的;博士。我在我的计算机上安装了 Ubuntu Server 20.04.4 LTS 并将其用作服务器。我只安装了 Java、Filezilla、Forge(Minecraft 服务器)和一个 Discord 机器人。今天我无意中阻止了 SSH 连接的端口 22,所以我将其插入显示器并重新启动以打开 SSH 端口。我受到了一个 GUI 的欢迎,这完全让我感到困惑。没有我的服务器版是如何安装GUI的?我不希望它使用不必要的资源。
输出sudo aptitude why gnome
:
i ubuntu-standard Recommends plymouth
i A plymouth Suggests desktop-base
p desktop-base Suggests gnome | kde-standard | xfce4 | wmaker
和sudo aptitude why ubuntu-standard
:
Manually installed, current version 1.450.2, priority standard
No dependencies require to install ubuntu-standard
我 100% 肯定我从未在控制台中输入过 ubuntu-standard。如何在不重新格式化的情况下恢复?
就像@terdon 建议我通过删除 ubuntu-standard
sudo apt remove ubuntu-standard filezilla plymouth desktop-base
sudo apt autoremove
现在“为什么 gnome”的回应是:
i grub-efi-amd64-signed Depends grub-efi-amd64 | grub-pc
p grub-pc Depends grub-pc-bin (= 2.04-1ubuntu26.13)
p grub-pc-bin Suggests desktop-base (>= 4.0.6)
p desktop-base Suggests gnome | kde-standard | xfce4 | wmaker
同样有趣的是,它"echo $XDG_CURRENT_DESKTOP
响应 GNOME 并sudo apt remove gnome
响应Package 'gnome' is not installed, so not removed
.
我很困惑...