I have a dual boot with one ubuntu distro on each (18 and 20). Each ubuntu boots on a different partition, and are not related in any way. Now I have created an empty small ext4 partition outside of the 2 distros. I would like to share this partition between my distros. What is the best way to do it?
Here is what I tried:
mount the shared disk onto each distro. However, the folder seems to be locked, as I cannot create a folder. I tried unlocking using sudo chmod 777
to unlock it from Ubuntu18. Then I log onto my Ubuntu20 and do the same. However, if I log back onto Ubuntu18, it seems to be locked. This is understandable since chmod
provides access to one user alone.
/etc/fstab
entry or other..) – guiverc Jan 21 '22 at 05:46mount
via fstab (file-system table) entries which should mean you have NO issues at all (I do it myself! ; it's a little more complex on one box due to partition encryption, but without encryption it's easy which I use on other boxes) – guiverc Jan 21 '22 at 07:35id
command. Also, please add to your question a better description of what "locked" means to you, including the error or other evidence that leads you to this conclusion. – user10489 Jan 21 '22 at 12:32