I downloaded the "chrome" deb package (under folder ~/Downloads). Then I open terminal, go to ~/Downloads and run "sudo apt install ./googlexxxxxx.deb". I got a Warning. (as what I presented in the picture)
However, if I move the .deb file to /home/. Then run "sudo apt install ./xxx.deb". Everything goes well, no warning.
Is there anyone knows the problem? I just installed unbuntu 22.04 and found this problem when I tried to install chrome.
sudo dpkg -i google*.deb
Apt means, roughly, "Go out to the Ubuntu repositories and install the package and, if needed, all of its dependencies." That's not what you are trying to do. Dpkg means, roughly, "Install this package that I've already downloaded." – chili555 Apr 23 '22 at 21:19