Install GIMP 2.7 on Ubuntu
This tutorial will show you how to install GIMP 2.7 on Ubuntu Jaunty without affecting the default GIMP 2.6 install
sudo apt-get install ruby # needed by gegl git clone git://git.gnome.org/babl git clone git://git.gnome.org/gegl cd babl ./autogen.sh make sudo make install cd ../gegl ./autogen.sh sudo make install sudo apt-get install libjasper-dev # the jasper libs are required to provide JPEG2000 support in GIMP cd .. wget ftp://ftp.gimp.org/pub/gimp/v2.7/gimp-2.7.0.tar.bz2 tar jxvf gimp-2.7.0.tar.bz2 cd gimp-2.7.0 ./configure --prefix=/opt/gimp-2.7 make sudo make install
Now just create a file gimp-2.7 inside /usr/bin as follows:
#!/bin/sh PATH=/opt/gimp-2.7/bin:$PATH export PATH LD_LIBRARY_PATH=/opt/gimp-2.7/lib export LD_LIBRARY_PATH /opt/gimp-2.7/bin/gimp-2.7 "$@"
Run /usr/bin/gimp-2.7
Install native 64bit Flash Player 10 on Linux
EDIT: updated the scripts to install the 64-bit Flash Player 10 alpha refresh for Linux that was released on December 8th, 2009.
Adobe FINALLY released a native 64bit Flash Player 10 plugin. Although this is still an alpha release, the news is very exciting for Linux users, since we don't longer depend on nspluginwrapper, which although does the job, has it's drawbacks.
I have put together a small tutorial on how to install the native flash player 10 64bit plugin for linux.
#!/bin/bash # Script created by # Romeo-Adrian Cioaba romeo.cioaba@spotonearth.com echo "Stopping any Firefox that might be running" sudo killall -9 firefox echo "Removing any other flash plugin previously installed:" sudo apt-get remove -y --purge flashplugin-nonfree gnash gnash-common mozilla-plugin-gnash swfdec-mozilla libflashsupport nspluginwrapper sudo rm -f /usr/lib/mozilla/plugins/*flash* sudo rm -f ~/.mozilla/plugins/*flash* sudo rm -f /usr/lib/firefox/plugins/*flash* sudo rm -f /usr/lib/firefox-addons/plugins/*flash* sudo rm -rfd /usr/lib/nspluginwrapper echo "Installing Flash Player 10" cd ~ wget http://download.macromedia.com/pub/labs/flashplayer10/libflashplayer-10.0.45.2.linux-x86_64.so.tar.gz tar zxvf libflashplayer-10.0.45.2.linux-x86_64.so.tar.gz sudo cp libflashplayer.so /usr/lib/mozilla/plugins/ echo "Linking the libraries so Firefox and apps depending on XULRunner (vuze, liferea, rsswol) can find it." sudo ln -sf /usr/lib/mozilla/plugins/libflashplayer.so /usr/lib/firefox-addons/plugins/ sudo ln -sf /usr/lib/mozilla/plugins/libflashplayer.so /usr/lib/xulrunner-addons/plugins/ # now doing some cleaning up: sudo rm -rf libflashplayer.so sudo rm -rf libflashplayer-10.0.45.2.linux-x86_64.so.tar.gz
You can now restart firefox
Some users seem to have problems with viewing this page, so i wrapped everything needed to install the native 64bit flash player on linux into a shell script. Grab the Ubuntu script here, chmod +x and execute it.
Thanks to Claudio de Taunay for providing a script that works in OpenSuSE 11. You can pick it up here.
Thanks to Homer Xing from the Ailurus project you can now install native flash player 64bit on Fedora. You can pick up the script here.
Let me know if you encounter any bugs.
the scripts to install in different distro:
Ubuntu: install native flash 64bit on Ubuntu
Fedora: install native flash 64bit on Fedora
OpenSuse: install native flash 64bit on OpenSuse
Install Google Chrome on Linux using wine
Google launched a few days ago a new web browser, that has some interesting features which might give FF 3, Safari and IE8 a run for their money. Although not yet for Linux, i've put together (following some ubuntuforms posts) a detailed tutorial to help you Install Google Chrome on Linux using wine >= 1.1.3.
1. install wine (follow the official instructions http://www.winehq.org/site/download-deb)
2. make sure wine >= 1.1.3 is installed by entering the following in the terminal
wine --version
3. Download winetricks and install it
wget http://www.kegel.com/wine/winetrickssudo cp winetricks /usr/sbin
4. Install some dependencies for Chrome (Flash is not mandatory but will allow you to play youtube videos
)winetricks riched20 riched30 flash
4.1 Install allfonts (this is optional)
winetricks allfonts
5. Download the Chrome installer
wget http://gpdl.google.com/chrome/install/149.27/chrome_installer.exe
6. Install Chrome (just follow the onscreen instructions and make sure you create a desktop icon)
wine chrome_installer.exe

7. After the install is finished, you won't be able to use Chrome as it needs a bit more hacking. Just close it and opent with your favorite editor the Google Chrome.desktop icon created on your Desktop. Make sure your add "--new-http --in-process-plugins", without the quotes at the end of this line:
Exec=env WINEPREFIX="/home/mimir/.wine" wine "C:\windows\profiles\mimir\Local Settings\Application Data\Google\Chrome\Application\chrome.exe"
to make it look like this:
Exec=env WINEPREFIX="/home/mimir/.wine" wine "C:\windows\profiles\mimir\Local Settings\Application Data\Google\Chrome\Application\chrome.exe" --new-http --in-process-plugins
Save the file!
NOTE: mimir is my username, you will have something like /home/yourusername/.wine
8. Go to desktop and start Google Chrome
![]()
Checking some youtube videos
![]()
HTTPS Note: it seems that the https is not working due to the fact that wine is missing TSL/SSL features, the dlls that should handle that being just stubs at the moment. If you have any information regarding this, please share.
Resources:
Wine appdb page for Chrome
http://ubuntuforums.org/showthread.php?t=908493
Install Google Chrome On Mac OS X using wine