xxxxxxxxxx
# Update the package lists
sudo apt update
# Install Google Chrome
sudo apt install google-chrome-stable
xxxxxxxxxx
# Download and install the Google Chrome stable package
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
# If there are any missing dependencies, use the following command to fix them
sudo apt --fix-broken install
# Start Google Chrome
google-chrome-stable
xxxxxxxxxx
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb https://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
sudo apt-get update
sudo apt-get install google-chrome-stable
xxxxxxxxxx
1. Update the package list:
```
sudo apt update
```
2. Download the Google Chrome .deb package:
```
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
```
3. Install the .deb package using `dpkg`:
```
sudo dpkg -i google-chrome-stable_current_amd64.deb
```
4. Run Google Chrome:
```
google-chrome
```
5. Fix any missing dependencies:
If the installation shows errors due to missing dependencies, run:
```
sudo apt --fix-broken install
```
xxxxxxxxxx
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
//My comment: Once it has installed type the following and use your root password
sudo apt install./google-chrome-stable_current_amd64.deb