Skip to content

Instantly share code, notes, and snippets.

@kevgathuku
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevgathuku/4a5189d428f0f6268c6c to your computer and use it in GitHub Desktop.
Save kevgathuku/4a5189d428f0f6268c6c to your computer and use it in GitHub Desktop.
Automount NTFS partition on startup
# Get the UUID
sudo blkid
# Create a mount point
sudo mkdir /media/kevin/newvolume
# Open /etc/fstab using gksu
gksu gedit /etc/fstab
#Line to add in /etc/fstab
UUID=1234567890123456 /media/kevin/newvolume ntfs rw,nosuid,nodev,noatime,allow_other 0 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment