Using autoyast 2.6.4, I can't find an option (in the gui) to reuse the existing Linux partitions during an automatic installation. If the disk was previously partitioned, I get out of space errors on installation. Are there any bugs in 2.6.4 that are fixed in the newer version, or features added, esp around partitioning? Thanks, Ahmed
Hi! Well - i didn't find an option in the gui either - using autoyast2 which comes with SuSE 8.1. BTW, digging through the documentation i found out what to change in the autoinst.xml to force use of the whole drive. -8<---snip--- <partitioning config:type="list"> <drive> <device>/dev/sda</device> <use>all</use> <partitions config:type="list"> <partition> <filesystem config:type="symbol">ext2</filesystem> <mount>/boot</mount> <partition_id config:type="integer">131</partition_id> <partition_nr config:type="integer">1</partition_nr> <size>25000000</size> </partition> <partition> <mount>swap</mount> <partition_id config:type="integer">130</partition_id> <partition_nr config:type="integer">2</partition_nr> <size>512000000</size> </partition> <partition> <filesystem config:type="symbol">ext3</filesystem> <mount>/</mount> <partition_id config:type="integer">131</partition_id> <partition_nr config:type="integer">3</partition_nr> <size>auto</size> </partition> </partitions> </drive> </partitioning> -8<---snip--- First of all, there is the <use>all</use> tag which forces autoinst to use the entire drive, no matter what partitions are defined. Next, i am setting fixed sizes for /boot and swap and use the rest of it (via the <size>auto</size> tag) for the root filesystem. This means editing the file by hand, but it works. Also, make sure, that there are no cylinder addresses defined in your XML-File, just partition_id, partition_nr and size. This way it works for every drive, no matter what size and no matter what partitions it has on it. Also, using the same autoinst.xml for both scsi- and ide-disks again involves editing the file, changing the <device>/dev/sda</device> to <device>/dev/hda</device> Hope this helps -- Wolfgang --- ahmed@mindspring.com schrieb am 14.04.2003, 22:18 ---
Using autoyast 2.6.4, I can't find an option (in the gui) to reuse the existing Linux partitions during an automatic installation. If the disk was previously partitioned, I get out of space errors on installation. Are there any bugs in 2.6.4 that are fixed in the newer version, or features added, esp around partitioning? Thanks, Ahmed
* Ing. Wolfgang Skabrond <skabrond@tws.at> [Apr 15. 2003 10:21]:
Hi!
Well - i didn't find an option in the gui either - using autoyast2 which comes with SuSE 8.1. BTW, digging through the documentation i found out what to change in the autoinst.xml to force use of the whole drive.
-8<---snip--- <partitioning config:type="list"> <drive> <device>/dev/sda</device> <use>all</use> <partitions config:type="list"> <partition> <filesystem config:type="symbol">ext2</filesystem> <mount>/boot</mount> <partition_id config:type="integer">131</partition_id> <partition_nr config:type="integer">1</partition_nr> <size>25000000</size> </partition> <partition> <mount>swap</mount> <partition_id config:type="integer">130</partition_id> <partition_nr config:type="integer">2</partition_nr> <size>512000000</size> </partition> <partition> <filesystem config:type="symbol">ext3</filesystem> <mount>/</mount> <partition_id config:type="integer">131</partition_id> <partition_nr config:type="integer">3</partition_nr> <size>auto</size> </partition> </partitions> </drive> </partitioning> -8<---snip---
First of all, there is the <use>all</use> tag which forces autoinst to use the entire drive, no matter what partitions are defined. Next, i am setting fixed sizes for /boot and swap and use the rest of it (via the <size>auto</size> tag) for the root filesystem. This means editing the file by hand, but it works. Also, make sure, that there are no cylinder addresses defined in your XML-File, just partition_id, partition_nr and size. This way it works for every drive, no matter what size and no matter what partitions it has on it. Also, using the same autoinst.xml for both scsi- and ide-disks again involves editing the file, changing the <device>/dev/sda</device> to <device>/dev/hda</device>
You can also remove the device tag and let autoyast take what it finds, scsi or ide.. Reusing existing partitions is supported in 8.2 BTW. Anas
Hope this helps -- Wolfgang
--- ahmed@mindspring.com schrieb am 14.04.2003, 22:18 ---
Using autoyast 2.6.4, I can't find an option (in the gui) to reuse the existing Linux partitions during an automatic installation. If the disk was previously partitioned, I get out of space errors on installation. Are there any bugs in 2.6.4 that are fixed in the newer version, or features added, esp around partitioning? Thanks, Ahmed
-- To unsubscribe, e-mail: suse-autoinstall-unsubscribe@suse.com For additional commands, e-mail: suse-autoinstall-help@suse.com
-- Anas Nashif <nashif@suse.com>, SuSE Linux AG Montreal (Laval), Canada
participants (3)
-
ahmed@mindspring.com
-
Anas Nashif
-
Ing. Wolfgang Skabrond