
Originally Posted by
jotaemececito
The new HDD is 160 GB in size. I decided to install a new distro on it and I choose to install openSuSE 11.0. Now here is my problem: I want to access both systems home folder from each other. I mean, if I am on an Ubuntu 6.10 session I want to access my files on the openSuSE home folder and viceversa... How can I do this? With mount command? How?
Yes, you can do this with mount. You can also have it done automatically by placing a new entry in /etc/fstab.
I don't know your partition layout or anything so I can't give you the exact commands. If you just want to use mount, it'll be something like ...
Code:
sudo mount -t ext3 -o user /dev/sd?? /path/to/mount/point
An fstab entry looks very similar to that.
I was advised to use the Ubuntu home as the openSuSE home, but other people told me that it would be a bad decision... Is true?
Yes. This is a bad idea unless you use different user names in each distro so that the .config files within your home folder won't step on each other. Lots of times it's OK to use the same /home partition in different distro's with the same username, but it's not recommended. Having different user names will prevent any problems though.