如何从计算机中删除XFCE?


16

我的计算机过热是因为我安装了太多桌面环境,例如:MATE,Cinnamon和XFCE。我卸载了它们,但是XFCE卸载失败。我得到这个错误。

 sudo apt-get purge xfce4
    Reading package lists... Error!
    E: Problem syncing the file - sync (5: Input/output error)
    E: The package lists or status file could not be parsed or opened.

@AvinashRaj,您看到他的答案与我已经为解决此问题所做的命令不同
Johnny

可能是文件系统错误或文件/磁盘损坏。尝试在根分区上运行fsck。
mdalacu 2014年

不工作时,该错误总是出现执行时sudo apt-get updatesudo apt-get install我别无选择,还是让我解决了拆卸和安装的Ubuntu LTS 14.04
约翰尼

这个问题现在结束了。
约翰尼2014年

Answers:


8

试试这些

sudo apt-get -f install
sudo apt-get clean
sudo apt-get autoclean
sudo apt-get update

现在

sudo apt-get purge xfce4

FirstStrike@ubuntu13.04-desktop:~$ sudo apt-get -f install [sudo] password for FirstStrike: Reading package lists... Error! E: Unable to parse package file /var/lib/apt/lists/id.archive.ubuntu.com_ubuntu_dists_raring_main_binary-i386_Packages (1) E: The package lists or status file could not be parsed or opened.没有工作
约翰尼

17

尝试这个

sudo apt-get purge xfconf xfce4-utils xfwm4 xfce4-session xfdesktop4 exo-utils xfce4-panel xfce4-terminal  thunar

然后自动删除


无法运作,仍然是同样的问题
约翰尼(Johnny)

2
这在Ubuntu Studio 14.04 LTS上完美运行。而公认的答案sudo apt-get purge xfce4并不能解决问题。
Mansueli 2015年

在16.04 LTS上工作(尽管我首先接受了答案)
AwokeKnowing'Yul

5

就我而言(薄荷与肉桂和XFCE)我做了:

sudo apt-get -f install
sudo apt-get clean
sudo apt-get autoclean
sudo apt-get update

然后:

sudo apt-get purge xfce4  # failed

然后:

sudo apt-get purge xfconf
sudo apt-get autoremove
sudo apt-get -f install
sudo apt-get clean
sudo apt-get autoclean
sudo apt-get update

-3

尝试:sudo apt-get remove xfce4- *当然, 这有助于在执行 sudo apt-get purge xfce4 之后删除所有链接的软件包。


如果*有文件,您需要引用它们-类似于类似的软件包。
Volker Siegel 2014年

5
切勿*在软件包名称末尾使用删除软件包。它将删除另一个软件包要求。
αғsнιη

就像KasiyA所说的那样,将命令名放在命令名的结尾*\*末尾apt-不会尝试将其作为shell样式模式进行匹配,而是作为正则表达式进行匹配。xfce4-会在名称中的任何位置匹配每个包xfce4(不仅包括xfce4-,还包括xfce4)。(见安德烈Corbellini的拉杜Rădeanu的答案给出*当作为后缀?为什么容易删除不需要的包,以获取更多信息。)会做什么,这个答案可能打算。sudo apt-get remove ^xfce4-
伊利亚·卡根
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.