如何在 Ubuntu 18 上完全删除和卸载 AMPPS
How to remove and uninstall AMPPS completely on Ubuntu 18
我用过 ampps,但我遇到了很多问题,所以我决定删除它,所以我想彻底彻底地删除 t 我有 Ubuntu 18.
我试过了:
sudo apt purge ampps*
我得到:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package ampps*
E: Couldn't find any package by glob 'ampps*'
E: Couldn't find any package by regex 'ampps*'
您无法使用 apt
卸载 ampps
,因为它是使用 Ampps-<version>-<arch>.run
脚本安装的。根据 ampps wiki : AMPPS 安装在固定路径 /usr/local/ampps
.
要卸载 ampps:
sudo pkill ampps
sudo rm -rf /usr/local/ampps
我用过 ampps,但我遇到了很多问题,所以我决定删除它,所以我想彻底彻底地删除 t 我有 Ubuntu 18.
我试过了:
sudo apt purge ampps*
我得到:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package ampps*
E: Couldn't find any package by glob 'ampps*'
E: Couldn't find any package by regex 'ampps*'
您无法使用 apt
卸载 ampps
,因为它是使用 Ampps-<version>-<arch>.run
脚本安装的。根据 ampps wiki : AMPPS 安装在固定路径 /usr/local/ampps
.
要卸载 ampps:
sudo pkill ampps
sudo rm -rf /usr/local/ampps