On Tue, Sep 25, 2007 at 11:02:43AM -0400, Alan McKay wrote:
<partition> <filesystem config:type="symbol">ext3</filesystem> <format config:type="boolean">true</format> <mount>/home</mount> <partition_id config:type="integer">131</partition_id> <partition_nr config:type="integer">8</partition_nr> <size>200466491392</size> </partition>
I notice the sizes in the saved xml file are exact sizes.. are you using exactly the same size disk in the new machine? or a larger one? You might want to go back and edit the sizes to make them more human readable, and replace them with values like 200G. And whichever partition you want to just use all the leftover space, make that size max. Also, is it set to initialize the disk? Here's a sample of a map I use in installs that works great: <?xml version="1.0"?> <!DOCTYPE profile SYSTEM "/usr/share/autoinstall/dtd/profile.dtd"> <profile xmlns="http://www.suse.com/1.0/yast2ns" xmlns:config="http://www.suse.com/1.0/configns"> <partitioning config:type="list"> <drive> <device></device> <is_lvm_vg config:type="boolean">false</is_lvm_vg> <is_evms_vg config:type="boolean">false</is_evms_vg> <initialize config:type="boolean">true</initialize> <partitions config:type="list"> <partition> <crypt>twofish256</crypt> <crypt_fs config:type="boolean">false</crypt_fs> <filesystem config:type="symbol">reiser</filesystem> <format config:type="boolean">true</format> <mount>/boot</mount> <partition_id config:type="integer">131</partition_id> <partition_type>primary</partition_type> <size>500M</size> </partition> <partition> <crypt>twofish256</crypt> <crypt_fs config:type="boolean">false</crypt_fs> <filesystem config:type="symbol">reiser</filesystem> <format config:type="boolean">true</format> <mount>/</mount> <partition_id config:type="integer">131</partition_id> <partition_type>primary</partition_type> <size>10G</size> </partition> <partition> <crypt>twofish256</crypt> <crypt_fs config:type="boolean">false</crypt_fs> <filesystem config:type="symbol">reiser</filesystem> <format config:type="boolean">true</format> <mount>/var</mount> <partition_id config:type="integer">131</partition_id> <partition_type>primary</partition_type> <size>2.5G</size> </partition> <partition> <crypt>twofish256</crypt> <crypt_fs config:type="boolean">false</crypt_fs> <filesystem config:type="symbol">swap</filesystem> <format config:type="boolean">true</format> <mount>swap</mount> <partition_id config:type="integer">130</partition_id> <size>max</size> </partition> <partition> <crypt>twofish256</crypt> <crypt_fs config:type="boolean">false</crypt_fs> <filesystem config:type="symbol">ext2</filesystem> <format config:type="boolean">true</format> <mount>/usr/vice/cache</mount> <partition_id config:type="integer">131</partition_id> <size>10G</size> </partition> </partitions> <use>all</use> </drive> </partitioning> </profile> Note this has a whole profile wrapper because it's assembled by autoyast in the initial stages because we use the rules.xml autoyast feature. Also, I don't specify a device because this profile is used for all our single disk systems, and autoyast auto-detects the disk. I also set the lvm and evms stuff to false because I was getting errors with sles/sled10+ initially if they weren't set to false, and we don't use those features anyway. Also note, this profile is from our new desktop image, which uses most disk for swap, because we don't want users putting data on desktops, it's supposed to be on our filers.. but you still get the idea of sizing and max. -- Mike Marion-Unix SysAdmin/Staff IT Engineer-http://www.qualcomm.com Sorry, please try again. Thank you for taking the Turing test. -- To unsubscribe, e-mail: opensuse-autoinstall+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-autoinstall+help@opensuse.org