My computer has two disks:
- 256 GB SSD
- 4 TB SSD
I have Linux installed on the 256 GB SSD. So / is mounted on it.
I want /home and /data to both be on the 4 TB SSD. But I don't want to create two partitions. I want everything in one partition.
Is this possible?
Edit:
- I don't want two partitions cause I don't want to have to muck with or worry about space. I want both
/homeand/datato fill up as much of the 4 TB as they need. On Windows, the 4 TB showed up asD:and I moved my home folder toD:\homeand also had aD:\data. - I don't want
/homeand/datato show the same directory structure. They are unique folders, each with their own content. - If necessary, I am willing to do a clean/fresh install and format all my disks to configure them how they need to be.
- Before my computer had Linux, I was running Windows 10. I've wiped Windows 10 and moved to Linux. There is no Windows on this system anymore.
- I don't care what the partition scheme is as long as it makes sense.
/datais intended to be read/write by any user -- if that matters.
Here is my /etc/fstab right now:
UUID=... / ext4 errors=remount-ro 0 1
UUID=... /boot/efi vfat umask=0077 0 1
UUID=... /home ext4 defaults 0 2
UUID=... none swap sw 0 0
Here is the output of lsblkl:
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
sda 8:0 0 3.6T 0 disk
└─sda1 8:1 0 3.6T 0 part /home
nvme0n1 259:0 0 238.5G 0 disk
├─nvme0n1p1 259:1 0 512M 0 part /boot/efi
├─nvme0n1p2 259:2 0 237G 0 part /
└─nvme0n1p3 259:3 0 977M 0 part [SWAP]