Skip to content

Instantly share code, notes, and snippets.

@swyngaard
Created February 21, 2017 09:23
Show Gist options
  • Save swyngaard/44fa144f55b44ce1e229c07da6a068ca to your computer and use it in GitHub Desktop.
Save swyngaard/44fa144f55b44ce1e229c07da6a068ca to your computer and use it in GitHub Desktop.
Add a NTFS formatted harddrive to /etc/fstab on Debian
Find the UUID of the partition by running the following command:
$ sudo blkid
Create the mount point under /media as follows:
$ sudo mkdir /media/scratch
Add the following line to /etc/fstab to mount the ntfs partition on boot:
UUID=60C469A9C46981E0 /media/scratch ntfs-3g auto,user,exec,permissions,windows_names 0 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment