Comment 6 for bug 48311

Revision history for this message
MAIRE Romuald (rmaire) wrote :

Hi,

Apparently the bug is still here ! I'm working on a Jaunty Ubuntu Server auto install.

The following doesn't work :
         part / --fstype ext4 --size=20480 --asprimary
         part swap --size=2048 --asprimary
         part /home --fstype ext4 --size=1 --grow --asprimary

But after few searches and few tests the following is working :
         part / --fstype ext4 --size=20480 --asprimary
         part swap --size=2048 --asprimary
         part /home --fstype ext4 --size=1 --grow

Note that the only different thing is that the last partition isn't "--asprimary" ...
It's apparently impossible to have all partitions as PRIMARY. On a disk we can have 4 primary partitions (taking care that the last can be a extended partition with logical partitions within).

Do you thing the bug can be solved (since 2006...) ???