New projects: Pi's and Arduinos
Recently I’ve been working on several new projects, all of which use either a Raspberry Pi or an Arduino.
Site-To-Site VPN
A friend of mine recently opened a new satellite office, and as part of his day to day work had a requirement to connect the two together so resources on either side could see each other. Site-to-site VPN I thought, and what better kit for the task than a couple of Raspberry Pi’s. Nice and small so they can be kept along side the routers. Each site had a simple ADSL broadband link, with a couple of PC’s connecting up.
Bletchley Park, Little People, Job Change and broken bones.
So, it’s been a while since I wrote anything on here, mainly because I couldn’t find the time to do so.
Since I last wrote a lot has changed in my life, found out my wife was expecting our second child, visited Bletchley Park and the National museum of computing, got a new job and broke my toe just to name a few.
Back in May, the LUG I’m Group Appointed BDFL for, RossLUG, took a daytrip to Bletchley park. As most of you know Bletchley is
New hosting for my blog
After one of my LUG colleagues mentioning about the BigV service from Bytemark I just had to try it. So today I prized open the wallet and set myself up an account.
For £10+VAT per month you get a VM, it comes with 25gb HD space, 1GiB RAM, 1CPU (2.2ghz AMD it seems) and 200gb bandwidth per month. All seems pretty reasonable. Their software is a breeze to use, and being command line driven its my kind of thing. The underlying tech is KVM/QEMU, and I’m guessing some kind of openstack(y) type goodness, as you can spin up a VM from their selection of images or connect your own ISO.
Why I'm uninstalling Ubuntu
I wouldn’t normally write about this kind of move, but I’m in a position where I feel I have to. A little over a year ago I made a decision to move from Fedora to Ubuntu, it wasn’t a decision that was easy after all I have been using Fedora since its first release, and Red Hat since around version 5. Needless to say I was (and still am at heart) a die hard Red Hat fan. There seemed at the time to be a draw to Ubuntu, I was feeling a buzz around the community there that I wasn’t really seeing with Fedora (although I don’t think I was looking), a lot was going on around the Unity project - whether good or bad, it was still going on. So I jumped right in, installing the latest release 11.10 I think it was, joined the forums/wiki/launchpad etc and started filing bugs and generally making a nuisance of myself.
Post Raspberry Jamboree Event
Let me start by saying, Saturday was a fantastic day out - even if I was there as crew not an attendee. The day started as most of these type of events do, runnning slightly late, I was a little worried at first as I thought I was the one running late (even though I was bang on time), but then I remembered who I was waiting for :). Eventually bumping into familiar faces everything started to fall into place. Kitting out the place with microphones and laptops for presentations in the main room seemed to go without any major hitches and led us up to the opening time of around 10:30, the usual mayhem followed as it always does with a mass of people queuing to get into the event. It didn’t seem to matter though, as all the crew were on deck and ready to deal with the, what seemed to be smiley happy, crowd.
Raspberry Jamboree Event
This coming Saturday, 9th March, I’ll be helping out as crew member at what could be the most exciting Raspbery Pi event since its launch. CPC are sponsoring the jamboree, with talks from plenty of familiar, and some not so, faces at the exhibition centre in Manchester. Much looking forward to it. Full writeup will follow after the event, I am expecting an announcement or two though, not sure what though.
Linux Outlaws Live in Liverpool
There are a number of events in my geek calendar I really look forward to throughout the year, most of them centre around a particular group of people too. This year an extra event has turned up early in the list, Linux Outlaws Live, or LOL as it seems to be more affectionately known. The live show, celebrating the 300th episode of Linux Outlaws, was held at Leaf on Bold st, Liverpool.
GlusterFS Quickstart Howto on Fedora
Here’s a (very) quick howto showing how to get GlusterFS up and running on Fedora. Its probably better situated on a distro like CentOS/RHEL, Ubuntu Server LTS or Debian stable but where’s the fun in knowing it won’t break? Most of these commands are transferrable to other distros though, its Fedora centric due to the use of yum, selinux and systemd (systemctl).
Pre-requisites: 2x (or more) servers running Fedora, I used 18 in this example but i’m sure it shouldn’t change a great deal for newer releases. If it does I’ll try update this doc. The idea behind this setup is to use 2 servers as hypervisors (KVM) and have local storage but reslience, I won’t be covering the virtualisation side, purely storage so VM’s will be adequate for this setup.
rsync with spaces in filenames fun
While I was trying to copy a load of files from one server to another I found a problem I’ve seen time and time again, rsync with filenames that have spaces in them. While normally this can be easily fixed via number of methods:
rsync ‘jon@example.com:/remote/path/filename with spaces.txt’ /local/path/
Notice the quotes around the remote path, you can also use the -s (or –protect-args) which will send the command as-is to the remote.