I cant seem to find drives like E or D, in ubuntu, every folder or file get saved in the desktop itself. Please help
Asked
Active
Viewed 400 times
-1
1 Answers
2
You can't.
Unix has the concept of a strictly hierarchical file system, with /
as the root of the file system - and everything under that, even if it's a different physical drive or a network file system.
User's files are supposed to be in /home/username
, or equivalent. The home directory contains everything personalized to a user, such as documents, configuration files, programs for that user and so forth.
Create directories in your home directory to organize things the way you prefer, but you should view /home/username
as the only place to store files.
This incidentally makes backups easy; if you only care about user data, backup /home/
and ignore the rest of the system.

vidarlo
- 22,691
-
Most likely, OP has a single, large partition, and wants to break it into smaller ones, which is certainly possible in Ubuntu. You can't really does not answer that question. – Archisman Panigrahi Sep 01 '21 at 19:04
-
1Given that he references that everything gets saved on the desktop, I don't find this reasonable, and thus an answer explaining how the Unix file system is built up is on topic. I may very well be wrong, but as the question stands I believe this to be a at least somewhat useful answer :) – vidarlo Sep 01 '21 at 19:07
-
I think it's very unclear what OP is asking so it may have been premature to answer the question. It seems like OP might be asking how to create partitions. But they could also be asking how to find a completely different hard drive or partition that Windows calls D and/or E. They might even be asking how to save files somewhere else. The question lacks specifics and details to understand what is the actual problem faced by the OP – Nmath Sep 01 '21 at 19:14
/dev/sda1
and/dev/sda2
etc. Your main drive (like windows drive C: or/dev/sda1
) is mounted at the mount point/
and you can add an additional drive (like windows drive D: or/dev/sda2
), like a branch off of a tree, at a different mount point under this drive like at/media/abhay/drivename/
, for example, and everything on that drive would be in a file under this mount point. – mchid Sep 01 '21 at 19:44