91

I have remote box accessed by VNC and jwm desktop.
No menus, not desktop icons, only a terminal window.

I have downloaded Chrome's .deb package and installed it.

How can I run it from the terminal window?

catch23
  • 1,224
  • 9
  • 31
  • 42
Suzan Cioc
  • 1,081
  • 1
  • 8
  • 10
  • 9
    You might be interested in this generalised question: [How can I know which commands were installed with a package?](http://askubuntu.com/q/234702/2355) – Flimm Dec 31 '12 at 16:00
  • What do you mean what command should you run? If you're vnc'd in, just call the command by the name. If you don't know the name you can always run `x-www-browser` and it'll run the default browser. – Evan Carroll Nov 23 '18 at 21:33

5 Answers5

148

Well simply typing google-chrome works fine for me. It might not work if you installed Chromium. chromium-browser is for Chromium.

  • For Chrome:

    google-chrome
    
  • For Chromium:

    chromium-browser
    

However if it's a remote box... At least via ssh you must use -X when option connecting to be able to run windowed apps. Like this:

ssh -X username@server.lt
galoget
  • 2,943
  • 2
  • 20
  • 24
Karolis
  • 1,851
  • 1
  • 11
  • 10
22

If you get the path where the application is installed then you can run the application from there

For example to know the path where google-chrome is located run this command:

whereis google-chrome

You will get the path like:

google-chrome: /usr/bin/google-chrome /usr/bin/X11/google-chrome /usr/share/man/man1/google-chrome.1

Now you can run chrome by either executing two commands:

/usr/bin/google-chrome
/usr/bin/X11/google-chrome

Note: it will be applied for all installed applications. Also, It would be possible that you would not get the path /usr/bin/X11 or would get something different.

Hope you like this way to find the path and run chrome :)

Saurav Kumar
  • 14,746
  • 16
  • 62
  • 76
8

In Ubuntu 15.10 this command works very well

google-chrome www.google.com

for more options you can use

google-chrome --help
killer_bee
  • 81
  • 1
  • 2
3

Type

google-chrome-stable

I use this command and it works for me. I too installed it using the .deb package. So this should work for you too. Typing an url after the command opens the url.

2

Enter to opengoogle-chrome, and exit google-chrome to close the Chrome browser

ASIL
  • 182
  • 3
  • 4
  • 16