I am planing to remove my windows completely and planning to install ONLY Ubuntu on my laptop from scratch.
I want to make 3 different partitions other than the /home ( As it was in windows D: E: F:)
I already know how to give swap,root,ESP,home partitions, Can anyone tell how to make 3 more partitions of ext4 format(basically i need to store data on em like i did on windows) and should it be primary or logical and which directory to allot.
Also if anyone may help me with how windows parition scheme and ubuntu parition schemes are different. I need the theory cuz I am a bit curious.) Thanks!
/parts/partition1
,/parts/partition2
Ubuntu handles this pretty well, and will generate an fstab that reflects this scheme.
– sbergeron Apr 17 '18 at 16:56file.txt
in it's root. You can mount that partition at/mnt/mypartition/
and then the file will be visible at/mnt/mypartition/file.txt
as thoughmypartition
is a folder insidemnt
. You don't have to manually create those directories, as the installer generates them for you. – sbergeron Apr 17 '18 at 17:40