卸载 Google Earth。我在网络上找不到这个东西

卸载 Google Earth。我在网络上找不到这个东西

我通常不会寻求帮助,除非我自己真的找不到答案。所以,我会解释一下我遇到的问题。我使用这个安装了 Google Earth:

wget http://dl.google.com/earth/client/current/GoogleEarthLinux.bin && chmod +x GoogleEarthLinux.bin && ./GoogleEarthLinux.bin

我尝试过:1)udo apt-get purge google-earth-stable

我找不到确切的包(dpkg --list 'google-earth*' | cat),因为它写道我没有安装任何 Google Earth。sudo apt-get autoremove

我得到的是:

zack@Zack-OS:~$ exec "$UNINSTALL" -L google-earth "/home/zack/google-earth/.manifest/google-earth.xml" "$1"
bash:exec::未找到
zack@Zack-OS:~$ sudo apt-get --purge autoremove google earth
[sudo] zack 的密码:
正在读取软件包列表...完成
构建依赖关系树       
正在读取状态信息...完成
E: 无法找到软件包 google
E:无法定位封装接地

问题是我有文件夹 home/google-earh 请大家帮帮我)

我有 Linux Ubuntu 14.04LTS,64 位

已找到答案感谢@Rinzwind

cd ~/google-earth chmod 750 卸载./卸载

加上删除下载

cd ~/ rm GoogleEarthLinux.bin

答案1

  1. 如果您没有使用“apt-get”来安装,那么就不要使用“apt-get”来删除软件。

  2. “主页/google-earh”

    请准确说明。您在此处输入的部分包含拼写错误。我假设它安装在 中/home/zack/google-earth。如果是这样,您应该检查google-earth目录内部。那里有一个“卸载”。

    那将是

    cd ~/google-earth
    chmod 750 uninstall
    ./uninstall
    

    加上删除下载

    cd ~/
    rm GoogleEarthLinux.bin
    

相关内容