A few years ago I kicked around the idea of a Steamboat Springs Linux Users Group. The domain I purchased for this project has sat quite dormant until just recently, some other Linux users in the Steamboat area have shown some interest. So, here it is.. finally.. The Steamboat Springs Linux Users Group. If you a Steamboat Springs local and a Linux geek also. please visit and create your login.
Posted in day to day, geek speak | No Comments »
Just an FYI that the recording of the free concert of The Greyboys is on the brand spanking new COtapers.org tracker.
Posted in day to day | No Comments »
Alright, you have a Linux server connected to your television. You don’t want to have to plug a keyboard into it to play movies, right? You most likely have some other computer on the network you would like to launch mplayer from and then have the output to the television. Well thanks to xservers we can take care of this.
Log into your server and create a /usr/local/bin/mplaytv script like this:
#!/bin/bash
DISPLAY=:0.0 mplayer -fs -zoom "$1"
Make sure you make it executable.
chmod 755 /usr/local/bin/mplaytv
Now you can play something with the new script and the output will go to the xserver attached to the TV.
Make sure you run the mplaytv script as the user logged into the xsession on the server, or you will get xsession errors.
mplaytv Some_Video.avi
You should see some activity in your shell and mplayer controls are attached to that shell, So keyboard shortcuts also work remotely.
Linux Media, Done.
Simple ain’t it?
Posted in geek speak, instal notes | No Comments »