Adding to Gogalthorp's comments:
On 2013-12-10, gogalthorp <gogalthorp@no-mx.forums.opensuse.org> wrote:
> In addition you can not use a Windows partition as home. Windows does
> not understand Linux permission flags so it simply will not work right.
.... and you'd want you're /home/ partition to use ext4 or btrfs rather than ntfs.
> Also be default Windows partitions when mounted by install are mounted
> read only.
.... they would be mounted read-only for a regular user (rather than root) although this is easily changed by editing
your /etc/fstab or using YaST's partitioner.
> Also a lot more reasons but never ever mount a Windows file
> system as home. You may mount it at some other point so data can be
> shared between the OS but /home will not work.
I think the best way to do this is using symbolic link(s) from your home partition to your Windows data partition(s).
In general, there's little reason for your Linux system to access Window's OS files and program files. Consequently,
it's a good idea to keep your `data' in a separate partition. Let's say Window's calls this `D', and your fstab mounts
this partition at /windows/d. Then you can very easily incorporate this in your $HOME using a symbolic link:
e.g. to replace the contents of your home's Documents directory a link to the `D' partition
Code:
sh-4.2$ cd ~
sh-4.2$ rm -r Documents/
sh-4.2$ ln -s /windows/d/ Documents
.... but you'll probably still want to gain read/write access as a regular user by editing your /etc/fstab or using
YaST's partitioner.
Bookmarks