我在 Ubuntu 19.10 上从源代码构建了一个需要 asciidoc 的软件包。现在我想卸载它,但我得到了以下信息
Package 'asciidoc' is not installed, so not removed
明明已经安装好了,为什么会出现这种情况?我该如何卸载它?
答案1
答案2
对于源代码安装,这里是安装/卸载命令...
为所有用户安装 asciidoc
使用 autoconf(1) 创建 configure;使用 configure 创建 Makefile;运行 make(1);构建手册页;安装:
$ autoconf
$ ./configure
$ make
$ sudo make install
卸载方法:
$ sudo make uninstall
来源:http://asciidoc.org/INSTALL.html
更新 #1
对于二进制安装...
dpkg -l *ascii* | grep ii
un asciidoc <none> <none> (no description available)
ii asciidoc-base 8.6.10-3 all Minimal version of asciidoc not suitable for pdf
ii asciidoc-common 8.6.10-3 all Basic data and configuration files for asciidoc un asciidoc-doc <none> <none> (no description available)
要完全卸载 asciidoc,您需要运行所有这些命令...
sudo apt-get purge asciidoc # already done
sudo apt-get purge asciidoc-base
sudo apt-get purge asciidoc-common