Root filesystem defines topmost entry point on disk where operating system should be installed, and denoted by /
. In the Windows world, that's C:\
and in Minix - >
. In the picture from related post the disk is subdivided into several partitions, and root filesystem is on /dev/sda5
.

Of course you can do a lot of fancy things with that: root filesystem can be on one disk or partition and /home
can be placed on another partition or whole different disk entirely.
If you're not using anything fancy, selecting Erase Disk and Install Ubuntu in the menu should be enough. If it still doesn't let you install, select Something Else and in the next menu click +
button to create new root partition. For more detailed steps follow the linked post.
Fun things for more advanced learning:
Note that "filesystem" in general denotes disk or memory space (for example tmpfs
or ramfs
) which are organized on the level of bits and bytes in particular way to store files (and also preserve their integrity as in case of ext4
journaling filesystem). Filesystems intended for user access(aka browsing files), however, need to be connected to a folder so that users can access the contents of filesystem. This is called mounting. In this case, root filesystem is mounted at /
folder by convention, although there's other much more technical ways in which a root filesystem can be mounted on some other folder such as chroot
.
However, there's difference between filesystems for users access ( aka userspace ), and kernel space. Such kernel filesystems as pipefs
don't have any folder available to users to browse, and generally have FS_NOMOUNT flag set(source).