After the prompt you cannot do: /home/Jeff/Downloads# dpkg -i google-chrome-stable_current_amd64.deb
After the prompt there needs to be a command first (dpkg -i) in this case, and has be run as root (promt ending with #) not your user account (prompt ending with $)
Do this
Code:
desktop@steamos:~$ whoami
Hit enter, it will output your username. If the username is desktop then you can use that in your path to where the deb is.
at your prompt do this:
Code:
desktop@steamos:~$ su -
Hit Enter
Its going to ask you for your root password, it will look like this
Code:
desktop@steamos$ su -
Password:
Hit Enter
Then it will look something like this:
The # at the end of the prompt means you are working as the root user.
then do
Code:
root@steamos:~# cd /home/yourusernamehere/Downloads
root@steamos:/home/yourusername/Downloads# ls
after issuing the ls command you should see the google deb file in there.
Then do:
Code:
root@steamos:/home/yourusername/Downloads# dpkg -i google-chrome-stable_current_amd64.deb