Skip to content

Instantly share code, notes, and snippets.

@benkahle
Last active January 19, 2016 01:53
Show Gist options
  • Save benkahle/892fdb2531c5f388296a to your computer and use it in GitHub Desktop.
Save benkahle/892fdb2531c5f388296a to your computer and use it in GitHub Desktop.
Ubuntu Start Up

#OS Installation

  1. Download ISO of Ubuntu 14.04 64bit from http://www.ubuntu.com/download/desktop (14.10 should work the same)
  2. Create bootable USB on Windows following this guide
  3. Plug in a bootable flash drive to laptop
  4. Restart computer and during BIOS hit F12
  5. Select Bios Setup
  6. Select boot configuration
  7. Move USB storage device to top priority
  8. Save and exit
  9. When ubuntu loads, select Install Ubuntu
  10. Select your language of choice
  11. Connect to internet
  12. Select Both Download updates while installing and Install this third-party software
  13. If continue button seems to stall, quit install and launch installation again.
  14. Select Install Ubuntu alongside Windows 7
  15. Drag the bar between windows ('Files') and Ubuntu to size the partition as desired (I would not go smaller than 20GB for ubuntu)
  16. Hit Install Now, wait ~20 minutes
  17. Install updates once installation is finished

#Configuration

WIFI

  • Update system: sudo apt-get update && sudo apt-get upgrade
  • Use PEAP and mschapv2
  • use @olin.edu and network password
  • Ignore lack of CA certificate
  • If not connecting, ensure dpkg-query -W -f '${Version}\n' network-manager-gnome is greater than 0.9.8.8-0ubuntu4.3
  • Then run sudo rm -f /etc/NetworkManager/system-connections/OLIN && sudo stop network-manager && sudo start network-manager

#Important Packages

sudo add-apt-repository ppa:webupd8team/sublime-text-3
sudo apt-get update
sudo apt-get install sublime-text-installer

#Tips/Tricks

  • Shell aliases: alias ll='ls -alh' (ll now does 'ls -alh'). To save, add aliases in a file (~/aliases) and add the line source ~/aliases to your ~/.profile or ~/.bashrc files. This will take effect next time you open a terminal session.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment