ClubLinux is a self-help group of GNU/Linux users in the Coffs Harbour area. We meet at 3pm on the last Sunday of the month at the office of Alma Technology, 81 First Avenue, Sawtell.

Globetrotting from Home with Tor

Sometimes you want to pretend you're from somewhere else. Fortunately, there's no Law of the Internet that requires you to divulge your IP address, and thereby where, and (for all intents and purposes) who, you are. You can instead rely on the kindness of strangers who will form a virtual bucket chain to carry your data from one place to another, with nobody involved (or any evesdroppers) knowing anything more than the location of the next link in the chain. For this recipe you will need:

Bulk Image Resize One-Liner

Have a whole bunch of ultra-high resolution images to upload to your website, but you don't have time to individually scale them to a Web-appropriate size in the GIMP? Imagemagick and bash to the rescue:

for i in `ls *.jpg`; do convert -resize 50% -quality 70 $i scaled/$i; done

…hey presto! That  9½MB file is now 50% smaller (in pixel dimensions) and a mere 750KB (in file size), and the same goes for the other hundred-or-so images in that directory.

Open Source "Plug" Computers

Co-oincidental to research I'm presently doing on creating control and monitoring systems with web interfaces, I came across an incredible array of miniature computers running Linux or other tinier open source operating systems.

Of general interest, I think to pretty well everyone, would be the Sheeeva Plug, at an amazing US$99 with Linux, 1.2G processor and 512M RAM, together with 512M Flash RAM for website or other storage space. It's also "green" as it consumes less than 5W power.

Creating a Multi-Boot DVD

David from Grafton asked if it's possible to run multiple Live CD images off a single DVD. A bit of Googling turned up these articles:

Let us know if either is helpful, David.

AUSkey is not a solution

I attempted to use the 'AusKey Secure Identity Data Exchange Thingy' only to find it does not work with GNU/Linux. I emailed them to let them know about their broken system and just recieved this cut&paste response:

The AUSkey solution currently does not support the Linux platform. This is consistent with other ATO systems.  The 'technical information' link on the AUSkey site outlines the operating systems and browsers that are officially supported.

(Postponed) June Meeting

Date: 
Sun, 2010-07-04 05:00 - 07:00

As I feared, we have to postpone the June meeting for a week. Sorry about that. I shall try to contact everybody via Robert's mailing list, but if you bump into a fellow ClubLinuxer during the week, please check they know about the postponement.

Converting Audio Files; FLAC to MP3

Using my little computer which has the cpu capacity of a very stupid weevil I find it quicker to avoid too much GUI.

So, lets get to the point:

Navigate to the directory which contains the offending FLAC files and copy this in:

for file in *.flac; do $(flac -cd "$file" | lame -h - "${file%.flac}.mp3"); done

You'll get an error if you don't have lame or flac installed. So install them and try again. Done. Easy.

read more from the original post

Join the Conversation

http://microblog.ourcoffs.org.au

Maybe some of you use Twitter to micro-blog all that overflowing brain blather. Maybe you don't. Either way I have a suggestion, go create an account on our very own local Microblog. We can chat to each other or just share info about stuff that we want to share. It'll be fun.

If you are still not convinced here are some benefits:

  • Can easily set it to auto-forward to your Twitter or Facebook account
  • It is Open and Free
  • It is managed by us, not some billionaires in North America
  • It has a bunch of bananas on it

Click the bunch of bananas and join in the conversation.

Grab stuff with less clicking

My studious partner wants to listen to a Latin podcast on her audio player. She has a bit of catch up to do, there are hundred probably thousands of mp3 files to download. Now I know there are all kinds of graphical download plugins and managers I could use but I prefer something a bit quicker and more simple.

New Video Editor

There has been some discussion around editing your videos and I'm hopefully reporting an exciting new development for 2010. No not the Christmas hat that appeared on the VLC icon this year....

VideoLAN, the developers of the excellent VLC Media Player are working on a new free video editing package, VideoLAN Movie Creator.

I shall be watching this closely to see how it goes. Cool huh?

Syndicate content