Posted On March 11, 2021

How To Install Google Earth on Linux Mint, Debian, or Ubuntu

kimconnect 0 comments
blog.KimConnect.com >> Linux >> How To Install Google Earth on Linux Mint, Debian, or Ubuntu
# Install Google Earth
cd /tmp
wget https://dl.google.com/dl/earth/client/current/google-earth-pro-stable_current_amd64.deb
sudo dpkg -i google-earth-pro-stable_current_amd64.deb

# Run the program and detach from Shell
nohup google-earth-pro &

# A better method to trigger GUI
google-earth-pro </dev/null &>/dev/null &

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Installing ScreenConnect Client on Ubuntu 20.04

Installation: # CLI installation method after setup file has been downloaded sudo apt install default-jre…

Linux: How to Create a User and Add to Group in a Single Line?

This is a common question for Linux Admins. It would be necessary to memorize the…

How To Run Python Interactive Command Line Mode (CLI)

Windows PS C:\WINDOWS\system32> python Python 3.8.0 (tags/v3.8.0:fa919fd, Oct 14 2019, 19:37:50) [MSC v.1916 64 bit…