Info regarding Disk/Drive partition in Ubuntu

I am just starting to use Ubuntu. I have already installed it in VM.I am general user and not tech expert. So my question is

  1. In windows generally there is one disk and then we partition them into different partitions which are label as C,D,E,F etc.What is equivalent of that in Ubuntu. As in windows OS we can see different drives graphically .IS it same possible in Ubuntu

  2. During its installation its ask to create one account. Does that account have admin rights ??Are there any other account which is created automatically having admin rights


Solution 1:

  1. In other operating systems than Windows we create mountpoints. A mountpoint can be a directory, but also a partition. The root filesystem has / as its mountpoint. You can have /home/ as a mountpoint on the same disk and you can have a /discworld/ as a mountpoint for a complete 2nd hard disk (a hdd for instance where / is on an sdd).

    Mountpoints are shown in lots of ways. From command line you could have this:

    $  df -H
    Filesystem      Size  Used Avail Mounted on
    /dev/sda1        25G    8G   17G /
    /dev/sdb        900G  300G  600G /u
    

    It will also be possible to see this from the desktop. Disk Usage Analyzer for instance (google images).

  2. Yes, that is the admin account. And no; All other users (and that can be a 2nd, or 3rd admin) need to be created after installation.