linux how to Install the app Chrome using the locally downloaded .deb file and dpkg Start the application
时间: 2024-03-11 19:49:14 浏览: 92
To install Chrome using the locally downloaded .deb file and dpkg, follow these steps:
1. Open the terminal on your Linux system.
2. Navigate to the directory where the .deb file of Chrome is downloaded. For example, if the file is downloaded to the Downloads folder, run the following command:
```
cd ~/Downloads
```
3. Install the Chrome package using the dpkg command:
```
sudo dpkg -i google-chrome-stable_current_amd64.deb
```
Note: Replace "google-chrome-stable_current_amd64.deb" with the actual name of the Chrome package you have downloaded.
4. Once the installation is complete, you can start the Chrome application by typing the following command in the terminal:
```
google-chrome-stable
```
Alternatively, you can search for "Google Chrome" in the applications menu of your Linux system and launch it from there.
阅读全文