Hardy

Fix avahi vmware problems

This is a fix for the problem that occurs when running vmware on a system with avahi.

avahi starts publishing the addresses from the vmnet interfaces with the hostname.

To fix create a file /etc/udev/rules.d/99-vmware.rules

SUBSYSTEM=="net", KERNEL=="vmnet?" GOTO="vmnet_start"
GOTO="vmnet_end"

LABEL="vmnet_start"

ACTION=="add",	RUN+="/sbin/ifconfig $env{INTERFACE} -multicast"

LABEL="vmnet_end"

Tested on: Ubuntu hardy, VMWare 6.02

Fix gmstreamer shoutcast bug

There are a few utilities in the Hardy release of Ubuntu, that don't play shoutcast streams correctly.

These are: vlc, gmplayer, mplayer, totem.

When a shoutcast MP3 audio stream is played you can hear chirps and other dropouts.

This is due to some data mixed in with the audio stream which is not filtered out correctly. Instead of showing the data in the player the software tries to convert the data into sound.

To fix this problem:

Execute as root:

 sed -i 's/Icy-MetaData:/Xcy-MetaData:/g' /usr/bin/gmplayer
 sed -i 's/Icy-MetaData:/Xcy-MetaData:/g' /usr/bin/mplayer
Syndicate content