Results 1 to 8 of 8

Thread: What is this partition that is created when clean install ubuntu 16.04.

  1. #1
    Join Date
    Mar 2018
    Beans
    4

    What is this partition that is created when clean install ubuntu 16.04.

    what is this partition for and how can i delete it. i did a clean install on a empty hard drive. I'm referring to the "Ubuntu 17.04 amd64" partition.
    Screenshot from 2018-03-02 21-12-35.png

  2. #2
    Join Date
    Dec 2007
    Beans
    12,521

    Re: What is this partition that is created when clean install ubuntu 16.04.

    Please open a terminal and run
    Code:
    uname -a
    and
    Code:
    lsb_release -a
    and post the output here.

  3. #3
    Join Date
    Mar 2018
    Beans
    4

    Re: What is this partition that is created when clean install ubuntu 16.04.

    Quote Originally Posted by vasa1 View Post
    Please open a terminal and run
    Code:
    uname -a
    and
    Code:
    lsb_release -a
    and post the output here.
    Screenshot from 2018-03-02 21-47-02.jpg

  4. #4
    Join Date
    Dec 2007
    Beans
    12,521

    Re: What is this partition that is created when clean install ubuntu 16.04.

    Please post terminal output as text between code tags. Use the # icon to generate [CODE] and [/CODE] tags or type type in yourself. It's more convenient for people to quote your data when responding to you.

    Back to your issue: is the image you posted in the first post taken from the side-pane of your file manager?

    If so, please run
    Code:
    sudo fdisk -l
    and
    Code:
    sudo parted -l
    and post that information here.
    Last edited by vasa1; March 2nd, 2018 at 03:09 PM.

  5. #5
    Join Date
    Mar 2018
    Beans
    4

    Re: What is this partition that is created when clean install ubuntu 16.04.

    Quote Originally Posted by vasa1 View Post
    Please post terminal output as text between code tags. Use the # icon to generate [CODE] and [/CODE] tags or type type in yourself. It's more convenient for people to quote your data when responding to you.

    Back to your issue: is the image you posted in the first post taken from the side-pane of your file manager?

    If so, please run
    Code:
    sudo fdisk -l
    and
    Code:
    sudo parted -l
    and post that information here.
    Sorry for the improper reply,

    this are the outputs.

    Code:
    vaio@vaio-VPCS117GG:~$ sudo fdisk -l
    [sudo] password for vaio: 
    Disk /dev/sda: 698.7 GiB, 750156374016 bytes, 1465149168 sectors
    Units: sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disklabel type: dos
    Disk identifier: 0xe8e1bde2
    
    Device     Boot      Start        End    Sectors   Size Id Type
    /dev/sda1  *          2048 1452847103 1452845056 692.8G 83 Linux
    /dev/sda2       1452849150 1465147391   12298242   5.9G  5 Extended
    /dev/sda5       1452849152 1465147391   12298240   5.9G 82 Linux swap / Solaris
    
    
    vaio@vaio-VPCS117GG:~$ sudo parted -l
    Model: ATA WDC WD7500BPVT-5 (scsi)
    Disk /dev/sda: 750GB
    Sector size (logical/physical): 512B/512B
    Partition Table: msdos
    Disk Flags: 
    
    Number  Start   End    Size    Type      File system     Flags
     1      1049kB  744GB  744GB   primary   ext4            boot
     2      744GB   750GB  6297MB  extended
     5      744GB   750GB  6297MB  logical   linux-swap(v1)
    
    
    vaio@vaio-VPCS117GG:~$

  6. #6
    Join Date
    Sep 2011
    Beans
    692

    Re: What is this partition that is created when clean install ubuntu 16.04.

    Probably the best way to see what is going on is
    Code:
    lsblk

  7. #7
    Join Date
    Jun 2009
    Location
    SW Forida
    Beans
    Hidden!
    Distro
    Kubuntu

    Re: What is this partition that is created when clean install ubuntu 16.04.

    You used the older BIOS/MBR configuration.
    Which has / (root), extended & swap partition as default. With 17.10 or later swap partition is not created and swap file is used.
    https://help.ubuntu.com/community/DiskSpace


    With MBR(msdos), you can only have 4 primary partitions. So Linux installer added the extended partition with is a container for logical partitions.
    You then can have an unlimited number of logical partitions inside the extended partition. You currently only have swap inside it. And it left you with two more primary partitions. The extended also counts as one of your primary partitions.

    Newer UEFI systems use gpt(GUID) partitioning which can be used to BIOS boot on most systems if you add a bios_grub partition.

    gpt(GUID) http://en.wikipedia.org/wiki/GUID_Partition_Table
    MBR(msdos) http://en.wikipedia.org/wiki/Master_boot_record
    Last edited by oldfred; March 2nd, 2018 at 04:04 PM.
    UEFI boot install & repair info - Regularly Updated :
    https://ubuntuforums.org/showthread.php?t=2147295
    Please use Thread Tools above first post to change to [Solved] when/if answered completely.

  8. #8
    Join Date
    Mar 2018
    Beans
    4

    Re: What is this partition that is created when clean install ubuntu 16.04.

    Code:
    vaio@vaio-VPCS117GG:~$ lsblk
    NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
    sr0     11:0    1  1024M  0 rom  
    sda      8:0    0 698.7G  0 disk 
    ├─sda2   8:2    0     1K  0 part 
    ├─sda5   8:5    0   5.9G  0 part [SWAP]
    └─sda1   8:1    0 692.8G  0 part /
    vaio@vaio-VPCS117GG:~$
    Last edited by vasa1; March 2nd, 2018 at 05:23 PM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •