如何在Linux上卸载Atom文本编辑器?


72

我在阅读文档,寻找从我的Linux操作系统中完全卸载Atom的方法,但是我没有找到任何相关内容。

有一套要删除的目录吗?还是运行脚本?

感谢您的关注


1
我发布了此问题的Windows版本
philshem 2015年

1
与任何Linux软件一样:首先取决于您如何安装它。
昆汀

Answers:


85

我已经在Github项目存储库中发布了相同的问题,这是完整的答案:https : //github.com/atom/atom/issues/2195#issuecomment-42917489

要执行的命令是:

sudo rm /usr/local/bin/atom
sudo rm /usr/local/bin/apm
rm -rf ~/atom
rm -rf ~/.atom
rm -rf ~/.config/Atom-Shell
sudo rm -rf /usr/local/share/atom/

9
〜/ .config下的目录名称不再是Atom-Shell。请替换为Atom
Halil Bilgin,2015年

+1 @HalilBİLGİN(至少对于ubuntu)。尽管如此,要将应用程序从Unity列表中删除,我也必须这样做:$ sudo rm /usr/local/share/applications/atom.desktop
Shautieh 2015年

仅供参考,我的安装在/ usr / share / atom下,因此如果上述命令不起作用,请尝试在此处
kurdtpage

我必须运行sudo apt-get purge atom命令才能从Ubuntu 16.04 Unity桌面上干净地删除该应用程序。
cedrickchee

66

对于Ubuntu 14.04和Ubuntu 18.04,请使用以下命令:

sudo apt-get remove atom

我在使用Ubuntu 14.04时对此进行了投票,这也是在Ubuntu 18.04上也可以使用的唯一方法。
Kunok

39

如果您使用.deb软件包安装了atom,则可以使用以下命令将其删除:

sudo apt-get remove atom

如果要删除任何配置目录,可以使用以下命令:

sudo apt-get purge atom

14

Atom也可以作为快照安装。您可以使用以下方法找出答案:

$ sudo snap list

如果您在列表中看到它,则可以使用以下方法将其删除:

$ sudo snap remove atom

有关更多快照的信息,请访问:https : //www.ubuntu.com/desktop/snappy


4

在Ubuntu(15.04)上:.debatom.io安装了之后,我在Ubuntu软件中心下找到了可用的软件包。


1
这不适用于Ubuntu 14.04
Kunok,2016年



1

在使用Atom 1.0的Ubuntu 14.04上,我在下没有找到任何内容/usr/local/bin/

但是,安装位于/usr/share/atom/,我已将其删除。


该技术不好,因为还有其他文件夹包含Atom文件。如果下载Atom的.rpm版本并将其解压缩,您将看到usr / local / bin是您想要文件的目录之一,但是Atom还将保存3个目录。
Kunok

0

如果您通过.deb安装了Atom,则可以通过以下方式删除:

sudo dpkg -r atom

0

在fedora中,可以通过以下方式将其删除:

sudo dnf remove atom
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.