0
I have an old computer with decent performance but small storage (one 320GB HDD). I created 4 partitions on it. One for boot, one for Windows 10 system, one (ext4) for Ubuntu, the last (NTFS) for data storage.
I've already moved all User Shell Folders in Windows to the data partition with registry tweaks, and I am currently having only one mountpoint (root, /
) for Ubuntu. As I process a lot of data across two systems, I store a lot. However I don't want to store too much in Ubuntu's system drive, so I grabbed ntfs-3g
and now I'm planning to mount the data drive directly over /home
(so I can share data easily).
What I am planning to do is adding this to fstab
/dev/sda4 /home rw,noatime,nosuid,nodev,exec,umask=000 0 0
I'm wondering if it's safe to do so before I go for it.