I usually don't ask for help unless I really can't find the answer myself. So, I'll explain where I got into. I installed the Google Earth using this:
wget http://dl.google.com/earth/client/current/GoogleEarthLinux.bin && chmod +x GoogleEarthLinux.bin && ./GoogleEarthLinux.bin
I tried: 1) udo apt-get purge google-earth-stable
I can't find the exact package (dpkg --list 'google-earth*' | cat) because it writes that I don't have any Google Earth installed. sudo apt-get autoremove
All I get is:
zack@Zack-OS:~$ exec "$UNINSTALL" -L google-earth "/home/zack/google-earth/.manifest/google-earth.xml" "$1" bash: exec: : not found zack@Zack-OS:~$ sudo apt-get --purge autoremove google earth [sudo] password for zack: Reading package lists... Done Building dependency tree Reading state information... Done E: Unable to locate package google E: Unable to locate package earth
The problem is that I have the folder home/google-earh Please, help me, guys)
I have Linux Ubuntu 14.04LTS, 64-bit
Answer is found thanks to @Rinzwind
cd ~/google-earth chmod 750 uninstall ./uninstall
Plus to remove the download
cd ~/ rm GoogleEarthLinux.bin
zack@Zack-OS:~$ dpkg-query -l 'google' dpkg-query: no packages found matching google zack@Zack-OS:~$ dpkg-query -l 'earth'
dpkg-query: no packages found matching earth BUT! I can locate Google earth in /home/google-earth. – user491656 Jan 10 '16 at 18:47