Skip to content

Instantly share code, notes, and snippets.

@harushimo
Created May 27, 2012 15:19
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 harushimo/2814686 to your computer and use it in GitHub Desktop.
Save harushimo/2814686 to your computer and use it in GitHub Desktop.
fstab file
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sda6 during installation
UUID=dbcc2d3e-e912-40dd-926c-9c951a64947f / btrfs defaults,subvol=@ 0 1
# /boot was on /dev/sda1 during installation
UUID=89205bc9-a872-4326-ad67-ecc322a42454 /boot ext4 defaults 0 2
# /home was on /dev/sda7 during installation
UUID=b6c99645-56e4-4e06-942f-b1874dc06bdd /home btrfs defaults,subvol=@home 0 2
# swap was on /dev/sda5 during installation
UUID=460ae475-e401-4920-a58f-f3d9e4f117b4 none swap sw 0 0
This is the line I'm going to add to my fstab file
/dev/sdb1 /home ext4 defaults 0 2
Is this correct?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment