gpt4 book ai didi

linux - 我如何从 Debian 中删除 ghdl 0.29?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:22:40 24 4
gpt4 key购买 nike

我按照此步骤在我的 Debian 中安装了 GHDL 编译器,但现在我需要卸载此编译器才能安装 x64 版本,但我不能。

By downloading the binaries and unpacking them manually:

$ wget http://ghdl.free.fr/site/uploads/Main/ghdl-i686-linux-latest.tar

$ sudo tar xvf ghdl-i686-linux-latest.tar

(这会生成文件 ghdl-0.29-i686-pc-linux.tar.bz2)

 $ cd ghdl-0.29-i686-pc-linux

$ sudo tar -C / -jxvf ghdl-0.29-i686-pc-linux.tar.bz2

(将文件复制到/usr/local/bin 和/usr/local/lib)

我使用了 dpkg --purge ghdl,但是如果我使用 ghdl --version,ghdl 0.29 仍然在系统中。

如何删除它?

最佳答案

遇到了同样的情况,我是这样做的:

转到您的压缩包所在的位置并使用此命令

sudo tar -tf ghdl-0.29-i686-pc-linux.tar.bz2 | sed 's/^..//' | parallel sudo rm -rf

解释:

  • tar -tf ghdl-0.29-i686-pc-linux.tar.bz2 列出 archive.tar 中的所有文件
  • sed 's/^..//' 删除初始目录字符
  • 并行 sudo rm -rf 删除匹配的文件

这会在 /usr/local 留下一些空目录,如果你想摆脱它们,你可以使用

sudo find /usr/local/* -type d -empty -delete

关于linux - 我如何从 Debian 中删除 ghdl 0.29?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40556430/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com