Install Google Chrome in two ways:

  • I downloaded the package from the official site .deb and installed it with dpkg -i .
  • Added a google repository and downloaded using apt-get install

In both cases, Google Chrome is installed, but it does not start! Neither through the menu, nor through Alt + F2.

Why is this happening and how to fix it?

  • Try to run from the command line, read what he writes. - Nick Volynkin ♦
  • @NickVolynkin, I run /usr/bin/google-chrome-stable - the terminal is just silent. By the way, maybe it's because I'm sitting under root. - user189127
  • It’s generally bad to sit under the root, regardless of this particular problem. ) - Nick Volynkin ♦
  • @NickVolynkin, I’ve been in Linux for only two days, so sudo didn’t configure and drove to install everything under su ... Now I don’t want to go back and redo everything again :). - user189127
  • All installed applications will be available to the normal user. What is different - the contents of .profile , .bashrc and other files, and therefore the environment. But this can be transferred if you have already configured something there. It’s not too late, create a regular user with sudo-rights and switch to it. ) - Nick Volynkin ♦

1 answer 1

most likely, you performed a “graphical login” on behalf of an ordinary user (and this is not just normal, but “that's the way you should do”), and try to run the x-client on behalf of another user. which is not possible by default - the client will not be able to connect to your x-server instance.

The “normal” x client will report this:

 $ su - пользователь $ xeyes No protocol specified Error: Can't open display: :0 

and the one that you started, apparently, either "does not want" to report about it, or still connected to the x-server, but not to the instance that you are currently watching on the screen.


work should continue under ordinary users, getting root privileges (using su or, sudo programs better) only for solving administrative tasks: configuring the system, installing / removing packages and the like.