I’m running Ubuntu 25.04 on my home machine and have administrator privilege. I want to create a ‘common’ directory where others using the machine can access all the files in the common directory. I have read multiple threads on 'how to" do it, but family members can never copy to the common directory. The latest attempt:
$ sudo groupadd Family
$ sudo mkdir /home/Common
$ sudo chgrp Family /home/Common
$ sudo chmod 770 /home/Common
$ sudo chmod +s /home/Common
$ sudo usermod -aG Family sandy
$ sudo usermod -aG Family john
$ sudo usermod -aG Family andrew
$ sudo ln -s /home/Common /home/sandy/Common
$ sudo ln -s /home/Common /home/john/Common
$ sudo ln -s /home/Common /home/andrew/Common.
The Common directory shows up in everyone’s home directory, but when I’ve tried to copy a file from a usb drive to Common I get access denied. What didn’t I do right?