I have switched to Ubuntu for about a year. when i used windows,... i didn't use to have different partition for movies/photos and i used to library folders in C:\ and so it was fine for me when i only created /home partition while installing Ubuntu and when its down, i just moved my movies to /home/user/Videos and photos and documents to /home/user/Pictures .../Documents and ... . but in this past year who ever i invited to Ubuntu said that they are using different partitions for movies/pictures/documents/music and they don't want to use directories for that. so my question is can we create something like /home but only for movies, i mean only a different and empty partition that mounts like a Usb or hard? please help me with that so i can increase Gnu/Linux users in my family :)
Asked
Active
Viewed 56 times
0
1 Answers
0
You can create partition using gparted.
Install it from terminal:
sudo apt install gparted
and then you can move free space from your disk creating new partitions each one dedicated for videos, photos, documents or whatever you want.
Then you can mount partitions as a subdirectories of /media directly using a file manager.

pat
- 429
/media
. it will be shown like a "disk". But it makes no sense to me. – Pilot6 Oct 05 '20 at 13:58sudo mkdir /media/photos && mount /dev/sdd1 /media/photos && ln -s /media/photos /home/photos
– francois P Oct 05 '20 at 14:03/media/videos
but when i mount it it give me error: cant find it in/etc/fstab
– Raman Oct 05 '20 at 14:15mount mediapath directorypath
you cannot call justmount directorypath
but in cas you added it in /etc/fstab manually once – francois P Oct 05 '20 at 14:33/medie
? – Raman Oct 05 '20 at 14:41