27

Oct/14

Modify “Places” In Nautilus, Ubuntu

Places in the Ubuntu equivilent explorer bar is quick and easy way to navigate to folders but there is no easy way to customise them. The configuration file is actually located in ~/.config/user-dirs.dirs so it’s on a per user basis. … Continue reading

13

Oct/14

Managing Servers On The Go With Android

Overview Since the ye ol’ days I have been self hosting one thing or another at first from a repurposed family computer to now using cloud infrastructure like Linode and Digital Ocean. I’m not a sys admin by day (and … Continue reading

06

Oct/14

BitTorrent Sync On Ubuntu

Overview BitTorrent Sync or BT Sync uses BitTorrent technology to facilitate peer to peer file synchronization. It allows almost true peer to peer setup without a central server (except for a tracker). Clients can come on and offline as an … Continue reading

29

Sep/14

MySQL Server 5.6 512MB RAM

Overview Ubuntu 14.04 added MySQL 5.6 to the official repository but it turns out installing it on anything less than 1GB RAM is pretty difficult. Disable Service Startup It is necessary to disable service startup after an install to prevent … Continue reading

22

Sep/14

Removing Passphrase From SSL Key

It’s good practice to password protect any encryption keys but it’s not always practicle to do so. So in doing this it degrades security for convenience. Create a copy to backup the key in case something goes wrong: cp my.key … Continue reading

15

Sep/14

Ubuntu 14.04: add-apt-repository – command not found

The tradational command to a PPA repository was to use add-apt-repository but in 14.04 the command is not always part of the default OS install. To fix this just install software-properties-common python-software-properties sudo apt-get install software-properties-common python-software-properties add-apt-repository not found

08

Sep/14

Installing Latest Docker Server On Ubuntu 14.04

Overview Docker is becoming a very popular software container for Linux based deployments. It allows software to be wrapped into containers and deployed onto the server. The container is “jailed” so that it’s processes cannot interfer with others (a sandboxing … Continue reading

25

Aug/14

Docker On DigitalOcean Cannot Resolve Hostnames

Overview I encountered an issue where during the build of my Docker container it was not able to get a response back during an apt-get update command. It turns out it was unable to resolve the DNS entries because of … Continue reading