Skip to content

Instantly share code, notes, and snippets.

@ssmythe
Last active August 29, 2015 14:26
Show Gist options
  • Save ssmythe/b4e4fd9890be0b6ffebb to your computer and use it in GitHub Desktop.
Save ssmythe/b4e4fd9890be0b6ffebb to your computer and use it in GitHub Desktop.
Ubuntu1404 install base: Registers FQDN with DHCP, sets local time zone, and updates system packages
#!/bin/bash
echo "base: Setting local timezone"
rm -f /etc/localtime
ln -s /usr/share/zoneinfo/America/Los_Angeles /etc/localtime
echo "base: Updating system packages"
apt-get -y update
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment