http://bugzilla.novell.com/show_bug.cgi?id=531958 User syseng@adnovum.ch added comment http://bugzilla.novell.com/show_bug.cgi?id=531958#c1 --- Comment #1 from Bernd Nies <syseng@adnovum.ch> 2009-08-18 01:49:37 MDT --- I reinstalled openSUSE 11.0 using Autoyast and changed the size parameter of the swap partition from "auto" to 8G (2 x size of physical RAM). Now these two suspend to disk methods do work: (1) echo "disk" >/sys/power/state (2) KDE -> Leave -> Suspend to Disk The "s2disK" command still produces a segmentation fault. Two issues should be fixed here: (1) The s2disk segmentation fault. (2) The algorithm of the Autoyast partitioner for the swap partition size. The following Autoyast XML code creates a 2 GB swap partition on a system that has 2 GB physical RAM. Many years ago I learned that swap should be at least the size of physical RAM, better twice as much. <partitioning config:type="list"> <drive> <device>/dev/sda</device> <initialize config:type="boolean">true</initialize> <partitions config:type="list"> <partition> <mount>/boot</mount> <size>128M</size> <partition_nr config:type="integer">1</partition_nr> <partition_id config:type="integer">131</partition_id> <partition_type>primary</partition_type> <filesystem config:type="symbol">ext3</filesystem> <format config:type="boolean">true</format> </partition> <partition> <mount>swap</mount> <size>auto</size> <partition_nr config:type="integer">2</partition_nr> <partition_id config:type="integer">130</partition_id> <partition_type>primary</partition_type> <filesystem config:type="symbol">swap</filesystem> <format config:type="boolean">true</format> </partition> <partition> <mount>/</mount> <size>max</size> <partition_nr config:type="integer">3</partition_nr> <partition_id config:type="integer">131</partition_id> <partition_type>primary</partition_type> <filesystem config:type="symbol">ext3</filesystem> <format config:type="boolean">true</format> </partition> </partitions> <use>all</use> </drive> </partitioning> http://www.suse.de/~ug/autoyast_doc/CreateProfile.Partitioning.html -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.