Archive for the “Linux” Category

The version of Wine provided by default in Ubuntu 10.04 Lucid Lynx has a curious issue. No sound output. Now I’m not exactly sure why this is but this is an issue I’ve found before using Karmic. To resolve this issue I simply added the PPA for winepulse (https://launchpad.net/~neil-aldur/+archive/ppa) which has a patched version of Wine that uses Pulseaudio. You may know that a few versions ago Ubuntu switched from ALSA to Pulseaudio so it could be this change that causes the problems. Anyway add the PPA and simply do an upgrade and Wine will be replaced with Winepulse.

Advantage? Sound works and, as it’s using Pulseaudio, audio mixing works.

VN:F [1.9.3_1094]
Rating: 2.0/10 (1 vote cast)
VN:F [1.9.3_1094]
Rating: +1 (from 1 vote)

Comments No Comments »

Lucid Lynx comes with version 10.0.45 which has some problems with compiz. The problems are buttons not working and unable to right-click to enable or disable hardware acceleration. To solve this issue I upgraded flash to 10.1 beta 3

You first need to make sure you’ve installed flash from the Ubuntu repositories as this sets up all the correct symlinks. To do this from command line:

sudo apt-get update && sudo apt-get install flashplugin-installer

Now download flash 10.1 beta 3 from Adobe and unpack it:

wget http://download.macromedia.com/pub/labs/flashplayer10/flashplayer10_1_p3_linux_022310.tar.gz
tar -xvf flashplayer10_1_p3_linux_022310.tar.gz

Backup the old libflashplayer.so:

sudo mv /usr/lib/flashplugin-installer/libflashplayer.so /usr/lib/flashplugin-installer/libflashplayer.so.old

Then replace with the newly downloaded one:

sudo cp libflashplayer.so /usr/lib/flashplugin-installer/

Now relaunch your browser and do about:plugins. You should see it displayed like this:

Enjoy your new flash plugin!

VN:F [1.9.3_1094]
Rating: 9.0/10 (1 vote cast)
VN:F [1.9.3_1094]
Rating: 0 (from 0 votes)

Comments 1 Comment »

Simple fix for this. When running any application that is either using DirectFB or VDPAU, you may find the following error:

NVIDIA: could not open the device file /dev/nvidiactl (Permission denied)

this is caused by your user account not having access to the video group. Without this access, you have no permissions to access the Nvidia card.

Solution:

Add your username to the video group. Open up a terminal, and run this:

sudo usermod -a -G video username

changing ‘username’ to your actual username. Reboot and all should be well. If you are also a Boxee user like myself then you will find it has the added bonus of boxee no longer crashing when trying to use VDPAU.

VN:F [1.9.3_1094]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.3_1094]
Rating: 0 (from 0 votes)

Comments No Comments »

spotifySpotify doesn’t yet have a native Linux client, but that doesn’t stop us from using this brilliant program. The developers of Spotify have made sure that the application has close to 100% compatibility with Wine so it can be used on Linux. The best guide to getting this installed is to follow the guide at the official Spotify website. One thing to mention is that if you are using the latest Wine with Karmic, then you will want to use Pulseaudio instead of ALSA in winecfg.

One thing you will want to do is add Spotify to the Gnome menu. By going to System > Preferences > Main Menu and selecting New Item you can make the shortcut to load Spotify. I selected Sound & Video from the left and clicked New Item using these settings:

Type: Application
Name: Spotify
Command: wine "C:\Program Files\Spotify\spotify.exe"
Comment: Spotify

You’ll most likely want to have a nice icon for Spotify. You can download this SVG icon http://kallepersson.se/upl/spotify.svg and place it into /usr/share/icons/hicolor/scalable/apps/ (you’ll need to be superuser to do this):

sudo mv /path/to/spotify.svg /usr/share/icons/hicolor/scalable/apps/

changing /path/to to the location of the spotify.svg file you downloaded. ~/Downloads/spotify.svg if you downloaded using Firefox.

Update: Just noticed that these instructions do not work with Lucid Lynx. I’ll be preparing and publishing an updated guide in the next few days.

VN:F [1.9.3_1094]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.3_1094]
Rating: 0 (from 0 votes)

Comments No Comments »