Of course, you can create a /work
partition. A better wording, however, would be that you can create a /work
directory, and mount a partition to it.
Making directories outside your home directory requires you to act as the root
user. In Ubuntu, one can execute a command with root priviledges by preceding it with sudo
. Thus
sudo mkdir /work
will create a directory work
at the top level (/
) of the directory structure.
Then you can mount a partition to that directory. That involves editing /etc/fstab
. It is described in many places, including on this site. Alternatively, you can use the utility "Disks" to set up a partition to mount automatically during startup in a directory you choose (/work
) in this case.
Once you mount that partition there, you want to learn about linux permissions and symbolic links. On the partition, you can create folders, which you then could give to the different users on your system. With symlinks, you can make these folders directly accessible from within the user's home directory, i.e., preventing the need for your users to navigate out of their own home directory.
ubiquity
installer to create whatever scheme you like (adjust if you're using a different product & thus different installer; as you didn't provide particulars). – guiverc Mar 10 '22 at 12:44/work
to be the entire 2TB HDD – matigo Mar 10 '22 at 14:06/opt
,/swap
and rest for/home
. I'm missing/
. Don't care about/work
, it can be easily done after installation, adding it tofstab
. – pLumo Mar 10 '22 at 14:17