Re: setting directory permissions
thanks kubicle and vinny,
the partition i am working with is NTFS. i did not make any modifications to fstab, i went through "removable devices" in the system settings menu to set "auto mount on login."
the only partitions shown in my fstab (on another pc) are my ext4 and swap...
according to partition manager my sda3 UUID is b2c67413c673d5d7 mount point will be /media/OS. whats the correct syntax for adding that to fstab? im confused about vinnys UUID has dashes and mine doesnt.
thanks again!
thanks kubicle and vinny,
the partition i am working with is NTFS. i did not make any modifications to fstab, i went through "removable devices" in the system settings menu to set "auto mount on login."
the only partitions shown in my fstab (on another pc) are my ext4 and swap...
according to partition manager my sda3 UUID is b2c67413c673d5d7 mount point will be /media/OS. whats the correct syntax for adding that to fstab? im confused about vinnys UUID has dashes and mine doesnt.
thanks again!
Code:
chris@Harper-Inspiron-1545:~$ sudo fdisk -l Disk /dev/sda: 500.1 GB, 500107862016 bytes 255 heads, 63 sectors/track, 60801 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x78091a2f Device Boot Start End Blocks Id System /dev/sda1 1 5 40131 de Dell Utility /dev/sda2 6 1918 15360000 7 HPFS/NTFS /dev/sda3 * 1918 37331 284456304 7 HPFS/NTFS /dev/sda4 37331 60802 188527617 5 Extended /dev/sda5 37331 60284 184373248 83 Linux /dev/sda6 60285 60802 4153344 82 Linux swap / Solaris
Code:
chris@Harper-Inspiron-1545:~$ sudo blkid /dev/sda1: SEC_TYPE="msdos" LABEL="DellUtility" UUID="3030-3030" TYPE="vfat" /dev/sda2: LABEL="RECOVERY" UUID="7C04314C04310AA2" TYPE="ntfs" /dev/sda3: LABEL="OS" UUID="B2C67413C673D5D7" TYPE="ntfs" /dev/sda5: UUID="8504aa55-52fd-4678-82e6-1ccc71fd8df1" TYPE="ext4" /dev/sda6: UUID="a0645da2-6f7e-44e2-9c82-2c06de29e8b6" TYPE="swap"
Comment