Google Chrome linux dev relase on opensuse 11.1 with Flash (and possibly other plugins) enabled
sudo yast2 --install alienDownload the latest developer channel version of Google Chrome for linux. Beware, it is named unstable for a reason. I am taking a risk, but remember that neither Google nor I is/am responsible for all mishaps you may suffer from this download.
http://dev.chromium.org/getting-involved/dev-channel#TOC-Linux
Download the debian file for 32 bit or 64 bit version as befits your system. Now, in the folder you have downloaded this, do:
alien -r google-chrome-unstable_current_xxxxxxxxxxxxx.debwhere xxxxxxxxxxxx represents your OS word length etc (32 bit or 64 bit. This should generate an rpm file with a similar name but here the xxxxxxxxxx contains the version of Chrome as well as your OS Word Length.
google-chrome-unstable_current_xxxxxxxxxxxxx.rpm
in the same folder.
2. Install Google Chrome
Now install this using rpm but specify not to look for dependencies:
sudo rpm -Uhv --nodeps ./google-chrome-unstable-xxxxxxxxxxxx.rpmThis will install Chrome but now you have to give it an environment it can work in by making symlinks to all those deps it will look for.
3. Set up dependencies
ln -s /usr/lib/libnspr4.so /usr/lib/libnspr4.so.0d4. Enable plugins
ln -s /usr/lib/libplc4.so /usr/lib/libplc4.so.0d
ln -s /usr/lib/libplds4.so /usr/lib/libplds4.so.0d
ln -s /usr/lib/libssl3.so /usr/lib/libssl3.so.1d
ln -s /usr/lib/libsmime3.so /usr/lib/libsmime3.so.1d
ln -s /usr/lib/libnssutil3.so /usr/lib/libnssutil3.so.1d
ln -s /usr/lib/libnss3.so /usr/lib/libnss3.so.1d
First, go to /opt/google/chrome and make a folder called plugins
sudo mkdir /opt/google/chrome/pluginsNow, make a symlink within this folder to one of the plugins you use in Firefox. In my case, this will be the flash player, and since this is one of the most looked-for ones, I will show where I found it, and how I made a symlink
ln -s /usr/lib/browser-plugins/libflashplayer.so /opt/google/chrome/plugins/Several guides online show a different location for the flash plugin within /usr/lib like flash-install or something, but this is where I found it on three 32 bit systems.
Now, do Alt-F2 (command window) and enter
google-chrome --enable-plugins
Let me acknowledge my sources here:
1. http://forums.opensuse.org/network-internet/417956-howto-install-google-chrome-developer-edition-opensuse.html
2. http://jeanderuelle.blogspot.com/2009/07/enable-flash-on-google-chrome-linux-dev.html

3. http://webupd8.blogspot.com/2009/08/google-chrome-for-linux-adds-plug-ins.html
I know I am not adding much to the conversation, but I thought the whole thing ought to be there in a single place. Let me mention that beyond the Chrome dev channel release not being suitable for general use, it also does not support Ctrl-Enter for .com and stuff like that, I think deliberately to disable general consumer use. Another annoying thing about Google Chrome (all versions) is how it refuses to do an 'I'm feeling lucky' search if you just enter obvious direct link search queries into its unibox like 'wikipedia eel'. Try that out in the firefox address bar. (Yeah you guessed it, it is not just an address bar.)


