Sonance has been getting a good deal of exposure over the past few days since I made the first public release. Today I launched a separate web site for the project. Development of Sonance is moving along quickly, and I greatly appreciate the vast support it has been getting over this past week!
Sonance, my GStreamer-powered, Mono/.NET GNOME audio player, which at the moment can serve as a drop-in XMMS/Beep replacement, and in the future will be an alternative to Rhythmbox and iTunes, was released by myself publically today!
I am really pleased with the outcome, and cannot wait to continue developing it into a powerful media playback platform. If you would like to help develop Sonance, please contact me.
What started as a rebuild of my Networked Music Box, will hopefully be turning into a media PC for my Jeep. I plan on having it sync to my music shares over NFS and 802.11g WiFi, when in range (i.e. pull up in the drive way). It will be able to play back video and music on the system. I’ll be installing a small LCD screen over the glove compartment. The PC will be in the back, and I’ll be using an ATI All In Wonder RF remote, for which I have already written software, to drive the system. It will also be a wardriving system. Maybe a motorized pringles can directional antenna will be in the future too.
I’m sure I’ll be writing some kind of software for this system. I just don’t know what yet. But for starters, I purchased a D-Link DWL-G510 802.11g PCI adapter. I didn’t give much thought to it, but when I installed it, there was no support in Linux 2.6.10. Searching for device drivers for “DWL-G510″ yeilded no results other than to use ndiswrapper. I was about to go this route, however, when I was configuring the kernel for the new system, I had taken a look at /proc/pci to see what I needed to enable. I noticed that the chipset for the DWL-G510 adapter was from Atheros Communications. So instead, I searched for drivers for “Atheros.” This yeilded something nice! The MADWiFi project is developing a driver for the Atheros chipset. It’s currently only available through CVS, but I checked the sources out and built the driver without problem. After a little tinkering with interface commands and wifi tools in Linux, I had working WiFi support with the card.
The new system is Slackware 10.1 on top of a custom 2.6.10 kernel. I don’t like the provided rc.wireless RC script, so I wrote a simpler one, tailored to my (basic, current) needs. It may be useful to you!
#!/bin/sh
INTERFACE=”ath0″
ESSID=”My Network”
CHANNEL=6
KEY=”FFFFFF”
function start {
echo “Bringing up wireless interface $INTERFACE ($ESSID)”
modprobe ath_pci
ifconfig $INTERFACE down
ifconfig $INTERFACE up
iwconfig $INTERFACE channel $CHANNEL essid “$ESSID” key $KEY
dhcpcd $INTERFACE
}
function stop {
echo “Bringing down wireless interface $INTERFACE ($ESSID)”
ifconfig $INTERFACE down
}
function restart {
stop
start
}
case “edit_entry” in
’start’)
start;
;;
’stop’)
stop;
;;
‘restart’)
restart;
;;
*)
echo “usage start|stop|restart”
esac