Since I’ve changed my strategy slightly on how to distribute audio to the house, I’ve needed to do some research on alsa.
Link
After coming across an article about house audio, someone mentioned the effects of pumping stereo audio to each zone…
Sound can get muddy if zones are playing the same music, lack of separation…
So the idea is to just put out mono audio to each zone. Make is easy since amplification and source becomes easier to manage.
A 5.1 surround sound card will give me 6 zones! I’m a little excited about this.
Category Archives: Linux
VMware server problems… and answers
Further to the last post, I decided to try putting Vmware server on the server machine to run some vm machines.
All got installed ok, and VMware server seems to run, but I can only conect to it locally. There is no network support. Continue reading
Putting some thoughts to paper… /wrt virtualization.
After reading some posts on the slimdevices forums regarding virtualization, I’m intrigued.
Idea is to install a VERY minimal linux OS, which is only a kernel, an ssh server and VMWare. And run all the distinct servers as VMs.
Continue reading
USB storage standby with Linux
Arghh… Another obstacle…
How to put the USB drive into stand-by mode, so it will spin down when not in use.
I just can’t leave it alone
The server machine got a makeover.
New Mobo, cpu, and OS.
SSH
Reversing an ssh connection
This was all stolen from Hacktivate – Reversing an ssh connection. (I only pasted the contents here in case the site goes down)
Just brilliant… Continue reading
init script for SoftSqueeze
I wanted to not have to start SoftSqueeze manually every time I started the computer, so I decided to muddle with existing scripts and generate my own init.d script.
This script was the SlimServer scripts, modified to start SoftSqueezeHeadless.
Setting eth0 settings from prompt
http://www.linuxheadquarters.com/howto/networking/networkconfig.shtml
unraring multiple subdirectories
I recently aquired the Futuram season 1-4 collection.
The folder structure was:
Season #
–Show number #
—-multi file rar archive
I really didn’t want to have to uncompress each episode individually, since there are (4 seasons x 12 episodes = 48) lots of shows. Very tedious.
So I set out to write a script to do this for me.
for dir in *; do for filename in *.rar; do unrar x $dir/$filename ../; done; done
May also be usefull:
find -type f -name '*.rar' -execdir unrar x {} \;