Musings of an aging computer nerd hitting 0x32
Articles

read more
Appleton's
Note: the only link in this post is now broken. Left as originally published.

Ripon http://flic.kr/p/fnoCSm, August 03, 2013 at 01:34PM
Articles

read more
Day 128 Ripon parade
Note: the only link in this post is now broken. Left as originally published.

Today's parade in Ripon http://flic.kr/p/fn8Uht, August 03, 2013 at 04:00PM
Articles

read more
Day 127 pods
Note: the only link in this post is now broken. Left as originally published.

Invasion of the body snatchers? http://flic.kr/p/fmEzV6, August 02, 2013 at 11:06PM
Articles

read more
ardunio pinboard holder

Upload from Dropbox July 31, 2013 at 05:03PM http://flic.kr/p/fkiDRx, July 30, 2013 at 10:32PM
Articles

read more
20130730_070130_Julia_Vignette_Sloppy

Upload from Dropbox July 30, 2013 at 07:33PM http://flic.kr/p/fjYyjj, July 30, 2013 at 08:32PM
Articles

read more
20130730_070800_Sophia_Lightblue_Hassel

Upload from Dropbox July 30, 2013 at 07:32PM http://flic.kr/p/fjYxQw, July 30, 2013 at 08:31PM
Articles

read more
Day 124 Leeds railway tunnel

Tunnel I walk through every day http://flic.kr/p/fjHCnp, July 30, 2013 at 08:02PM
Articles
read more
Bare bones Arch Linux Install
Note: 1 of this post’s 5 links are now broken — mostly dead 2008–2013 feed-syndication infrastructure (FeedBurner, Gawker, AOL’s old blog network, Pheedo, Yahoo Pipes). Left as originally published.
Something to do at lunchtime to get you more familiar with Linux, create a barebones Arch Linux VM. Taken from this article at Lifehacker I've compressed it into the following steps.
- Download image from https://www.archlinux.org/
- Partition hard drives /dev/sda1 /dev/sda2 with GParted as ext 4
- Boot from ISO and check, setup network https://wiki.archlinux.org/index.php/Beginners%27_Guide#Wired
- Mount partitions mount /dev/sda1 /mnt ; mkdir /mnt/home; mount /dev/sda2 /mnt/home
- mkswap /dev/sda3 ; swapon /dev/sda3
- Edit Mirror List vi /etc/pacman.d/mirrorlist
- Install base pacstrap -i /mnt base
- genfstab -U -p /mnt >> /mnt/etc/fstab
- arch-chroot /mnt
- nano /etc/locale.gen
- echo LANG=en_GB.UTF-8 > /etc/locale.conf
- export LANG=en_GB.UTF-8
- ln -s /usr/share/zoneinfo/Europe/London /etc/localtime
- hwclock --systohc --utc
- systemctl enable dhcpcd@eth0.service
- passwd
- useradd -m -g users -G wheel,storage,power -s /bin/bash alastair
- passwd alastair
- pacman -S sudo
- visudo to uncomment wheel group sudo access
- pacman -S grub-bios
- grub-install --target=i386-pc --recheck /dev/sda
- grub-mkconfig -o /boot/grub/grub.cfg
- exit, unmount, reboot
- sudo pacman -S alsa-utils
- alsamixer ; speaker-test -c 2
- pacman -S xf86-video-vesa
- pacman -S xorg-server xorg-xinit xorg-server-utils xorg-twm xorg-xclock xterm
- sudo pacman -S ttf-dejavu
- pacman -S xfce4 xfce4-goodies
- systemctl disable fam.service
- pacman -Rd fam
- pacman -S gamin
- cp /etc/skel/.xinitrc ~/.xinitrc ; vi .xinitrc
- pacman -S openssh
- startx

