Score:0

I tried to install google-chrome on ubuntu 22.10 using the terminal but this following errors

to flag

By running this command wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.db

and I got this error

HTTP request sent, awaiting response... 404 Not Found
2023-06-18 17:58:59 ERROR 404: Not Found.```
Score:1
jp flag

You have misspelled the DEB package extension which is a part of the URL and it should be ..._amd64.deb and not ..._amd64.db which had rendered the URL incorrect and pointing to a non-existence URI and hence the error:

ERROR 404: Not Found.

So, download it with:

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

Then, install it with:

sudo apt install ./google-chrome-stable_current_amd64.deb
mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.