I'm a happy NSLU2 user since a few months now, and I'm using it for all kinds of things, e.g. as a 24/7 remote ssh server at home (using DynDNS and the ddclient Debian package), as IRC logger (screen + irssi), etc. etc.
I was considering multiple options as to where/how to install the slug (USB thumb drive, Compact Flash, disk drive, ...) but I settled with a full Debian install on an 1 GB USB thumb drive for now. I implemented some measures to maximize the life time of the USB thumb drive, maybe I'll post some info on that later...
One new thing I've been trying lately is to use the slug as an audio player.
As it doesn't come with an integrated sound card, you have to use an external USB audio device. I've got mine (see photo) from eBay for ca. 5 Euro (+ shipping) and it works out of the box with Linux 2.6.18 using the snd_usb_audio
kernel module. You simply attach it via USB (the module is automatically loaded) and then attach external speakers to it. Here's an lsusb
of the device:
Bus 001 Device 011: ID 1130:f211 Tenx Technology, Inc.
One problem with playing audio on the slug is the slow CPU. At 266 MHz (and without FPU!) playing audio with "normal" audio players such as mplayer
or mpg321
is not possible. But there are several ways to make the slug play your favorite music. Here's a list of players I tested and a status report of whether they work at all. If yes, I listed a rough percentage of CPU load resulting from playing the music.
- MP3:
- mplayer, mpg321, aplay, playsound, and splay don't work.
$ madplay foo.mp3
: 17% CPU load
- Ogg vorbis:
- mplayer, aplay, playsound, and ogg123 don't work.
$ apt-get install libvorbisidec-dev $ cd /usr/share/doc/libvorbisidec-dev/examples $ make $ cat foo.ogg | ./ivorbisfile_example | aplay -f cd
Result: 40% CPU load
- MOD, XM, S3M, IT, etc.:
$ mikmod foo.mod
: 10% CPU load (even with compressed MOD files)
- WAV:
- FLAC:
$ flac123 foo.flac
: 17% CPU load
- SPEEX:
$ speexdec foo.spx
: doesn't work, 100% CPU load. Any known alternatives?
- AU:
- AIFF:
- Streaming MP3:
- Streaming Ogg Vorbis:
$ cd /usr/share/doc/libvorbisidec-dev/examples
: 40% CPU load
$ wget http://www.example.com/foo.ogg -O - | ./ivorbisfile_example | aplay -f cd
The SlugAsAudioPlayer page in the NSLU2-Linux wiki might have further information on this topic.
Feel free to add comments if you know of other audio types which can be played on an NSLU2.