Created
September 10, 2011 14:53
-
-
Save gilsondev/1208389 to your computer and use it in GitHub Desktop.
Script usado para montar as partições da minha máquina
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/fstab: static file system information. | |
# | |
# Use 'blkid' to print the universally unique identifier for a | |
# device; this may be used with UUID= as a more robust way to name devices | |
# that works even if disks are added and removed. See fstab(5). | |
# | |
# <file system> <mount point> <type> <options> <dump> <pass> | |
proc /proc proc nodev,noexec,nosuid 0 0 | |
# / was on /dev/sda7 during installation | |
UUID=7f05f7b9-be65-4c5b-ae9e-b4efa304d44f / ext4 errors=remount-ro,user_xattr 0 1 | |
# swap was on /dev/sda5 during installation | |
UUID=e3c8282e-7f4f-4ed6-abd7-c3d4f6314d61 none swap sw 0 0 | |
#Entry for /dev/sda6 : | |
UUID=65EE796475317810 /media/DADOS ntfs-3g defaults,auto,rw,user,locale=en_US.utf8,uid=1000,gid=1000 0 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment