

Google Chrome helpfully adds ~/chrome/opt/google/chrome/lib to the $LD_LIBRARY_PATH, so you could install those additional dependencies there. Now, if you don't have all those libraries installed already, or there are other dependencies for the chrome binary that are unmet, you might need to build and install them in your homedir. Ln -s ~/chrome/opt/google/chrome/google-chrome ~/bin/google-chrome Ln -s /usr/lib64/libsmime3.so libsmime3.so.1d Ln -s /usr/lib64/libnssutil3.so libnssutil3.so.1d Ln -s /usr/lib64/libnss3.so libnss3.so.1d

Rpm2cpio ~/Download/google-chrome-stable_current_x86_64.rpm | cpio -id This assumes that the libraries area already installed, and $HOME/bin is in my $PATH. So we will have to utilize the wget command. You simply need to make sure that the symlinks for the libraries are all there. Chrome web browser does not come with the default repositories of Ubuntu 22.04. I've successfully extracted the Fedora/OpenSUSE RPM into my home directory and ran chrome from there.
