Hi all, Is there any possibility to do the partitioning without knowing the device (/dev/sda, /dev/hda)? I'd like to have a Control-File which works on every machine, but only found examples of control files with the <device>-Tag given explicitely. My Installation worked with SCSI environment but crashes in IDE environment. Any ideas? The autoinst.xml looks as follows: <partitioning config:type="list"> <drive> <device>/dev/sda</device> <initialize config:type="boolean">true</initialize> <partitions config:type="list"> <partition> <crypt_fs config:type="boolean">false</crypt_fs> <crypt_key></crypt_key> <filesystem config:type="symbol">swap</filesystem> <format config:type="boolean">true</format> <mount>swap</mount> <partition_id config:type="integer">131</partition_id> <size>auto</size> </partition> <partition> <crypt_fs config:type="boolean">false</crypt_fs> <crypt_key></crypt_key> <filesystem config:type="symbol">ext2</filesystem> <format config:type="boolean">true</format> <fs_options> <opt_blocksize> <option_str>-b</option_str> <option_value>auto</option_value> </opt_blocksize> <opt_bytes_per_indoe> <option_str>-i</option_str> <option_value>auto</option_value> </opt_bytes_per_indoe> <opt_raid> <option_str>-Rstride=</option_str> <option_value>none</option_value> </opt_raid> <opt_reserved_blocks> <option_str>-m</option_str> <option_value>auto</option_value> </opt_reserved_blocks> </fs_options> <label></label> <mount>/</mount> <mountby config:type="symbol">device</mountby> <partition_id config:type="integer">131</partition_id> <size>max</size> </partition> </partitions> <use>all</use> </drive> </partitioning> Greetings, Martin
Hi! Maybe this can help you: ... <partitioning config:type="list"> <drive> <use>all</use> </drive> </partitioning> ... Using this, only the first one th my IDE disks gets partitioned in a default way (/boot, swap and root). ... regards Alfred At 10:57 11.11.03 +0100, Moeser, Martin (external) wrote:
Hi all,
Is there any possibility to do the partitioning without knowing the device (/dev/sda, /dev/hda)? I'd like to have a Control-File which works on every machine, but only found examples of control files with the <device>-Tag given explicitely.
My Installation worked with SCSI environment but crashes in IDE environment. Any ideas?
The autoinst.xml looks as follows:
<partitioning config:type="list"> <drive> <device>/dev/sda</device> <initialize config:type="boolean">true</initialize> <partitions config:type="list"> <partition> <crypt_fs config:type="boolean">false</crypt_fs> <crypt_key></crypt_key> <filesystem config:type="symbol">swap</filesystem> <format config:type="boolean">true</format> <mount>swap</mount> <partition_id config:type="integer">131</partition_id> <size>auto</size> </partition> <partition> <crypt_fs config:type="boolean">false</crypt_fs> <crypt_key></crypt_key> <filesystem config:type="symbol">ext2</filesystem> <format config:type="boolean">true</format> <fs_options> <opt_blocksize> <option_str>-b</option_str> <option_value>auto</option_value> </opt_blocksize> <opt_bytes_per_indoe> <option_str>-i</option_str> <option_value>auto</option_value> </opt_bytes_per_indoe> <opt_raid> <option_str>-Rstride=</option_str> <option_value>none</option_value> </opt_raid> <opt_reserved_blocks> <option_str>-m</option_str> <option_value>auto</option_value> </opt_reserved_blocks> </fs_options> <label></label> <mount>/</mount> <mountby config:type="symbol">device</mountby> <partition_id config:type="integer">131</partition_id> <size>max</size> </partition> </partitions> <use>all</use> </drive> </partitioning>
Greetings,
Martin
-- To unsubscribe, e-mail: suse-autoinstall-unsubscribe@suse.com For additional commands, e-mail: suse-autoinstall-help@suse.com
participants (2)
-
Alfred Isele
-
Martin Moeser