hi i have an Ubntu machine with 30GB space and need to create a folder in "/" as "/server". I have 50GB space in NTFS(windows) . i want to join this 50GB to linux how can i merge these two.
|
feedback
|
migrated from serverfault.com Jan 19 '10 at 8:47
This question came from our site for system administrators and desktop support professionals.
|
You wish to mount the NTFS partition to /server? Assuming your 50GB drive is /dev/sdb1:
This will not persist across reboots. You will need to edit | |||
|
feedback
|
|
Both are different file systems. So cant merge it. You can mount windows partitions to linux and by some windows softwares can open linux partitions to windows. | |||
|
feedback
|
|
as stated by Kumar P you cannot merge them because those two are on different filesystems: anyway you could be interested in LVM for the next time. Regards | |||||
feedback
|
|
If you mean by 'merge' to use the harddisk space in Linux, may I suggest something: Reformat the NTFS partition with ext3/4 or any other filesystem of your choice, and mount it in the var folder | |||
|
feedback
|
|
You should ble able to install ntfs-3g, load the FUSE module to load on boot and basically follow the same steps outlined above but mount with something like
Then add something like this to fstab
-- Ubuntu also seems to have a short tutorial and some documentation about settings up NTFS-3g to read/write to NTFS drives. https://help.ubuntu.com/community/MountingWindowsPartitions/ThirdPartyNTFS3G | |||
|
feedback
|