Thread: Dual Boot shared folder
my situation similiar this
have partitions made, want have ntfs partition mountable in linux , windows. basically, want have on ~/music instead of copying music both operating systems, have accessible both! folder exists, has music in ive used dd reserve 10 gigs wordlist file on location. dd command make myself 6 gig partition music? , should put in /etc/fstab? im assuming detectable in windows 7 ? how can make sure?
ubuntu 10.04
i not understand. dd image copies. not creating partitions.
use gparted create ntfs partition.
morbius1-----------------------------------------------------
http://ubuntuforums.org/showthread.php?t=1983336
suggest using templates instead. post #6
ntfs:
uuid=da9056c19056a3b3 /media/wind ntfs defaults,nls=utf8,umask=000,uid=1000,windows_names 0 0
window_names prevents use of invalid windows characters:
(which 9 characters ” * / : < > ? \ | , code less 0×20)
uid=1000 should fix trash problems well:
ext4:
uuid=076426af-cbc5-4966-8cd4-af0f5c879646 /media/data ext4 defaults,noatime 0 2
** find correct uuid partitions:
sudo blkid -c /dev/null -o list
** have create mount point yourself, example:
sudo mkdir /media/wind
and/or
sudo mkdir /media/data
** add template correct uuid , mount point fstab:
sudo cp /etc/fstab /etc/fstab.backup
gksu gedit /etc/fstab
** , when done editing fstab , saving run following command test errors , mount partitions without requiring reboot. know before reboot if amiss. :
sudo mount -a
understanding fstab
https://help.ubuntu.com/community/fstab
https://help.ubuntu.com/community/mount/
https://help.ubuntu.com/community/filepermissions
http://www.psychocats.net/ubuntu/mountlinux
Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] Dual Boot shared folder
Ubuntu
Comments
Post a Comment