Your have installed Linux on your 256GByte SSD, this is okay, but your home-folder is on this SSD too.
Your 1TByte HDD is propably not used.
You should mount the 1TByte HDD as folder (I call the folder "Data") and there you can put all your videos, pictures, software, documents.
Then you save the place on the 256GByte SSD for all Operating-System related things and all your stuff is on the 1TByte HDD.
If you reinstall Linux, then you can erase the SSD completely and only have to mount the HDD in your home folder.
I do it in this way:
- Install Linux on the SSD (you did it already)
- Create a folder "Data" in your home-folder
- find out which harddrives are existing (with the command "sudo blkid")
- open with root rights the file "/etc/fstab" (with "sudo mousepad /etc/fstab" on the terminal)
- copy the output, put it into your fstab file and add a "#" in front of each line to make a comment out of this text
- find the HDD and mount it as folder in your home-folder
It would be look like this:
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda5 during installation
UUID=11111111-2c22-333f-b44e-5cd555555e55 / ext4 errors=remount-ro,noatime,nodiratime,discard,nobh,data=ordered,commit=120 0 1
UUID=66666b66-b777-88fc-ab99-0ff00000000f0 /home/mikropower/Data ext4 defaults,noatime,nodiratime,discard,nobh,data=ordered,commit=120 0 2
First your root-filesystem mount ("/"), this does already exist ant then the mountpoint for your Data-folder ("/home/yourusername/Data").
For me, this works very well.