Hi Andrea Thanks for your help. I tried nearly one day to get the sytem retrieve the image correctly. Now I am done with this, but I encounter another problem. When the image has been retrieved no files can be written (/etc/fstab ...) and at reboot no bootsectr can be found. I think reason for this is, that no format is done when preparing the filesystems although there is no 'format="no"' in any of the filesystem entries. The problem seems to be that all the 'modprobe reiserfs' ... Fail during fs initialization and I think that there is no filesystem formatting at all during this install. Are there any suggestions what goes wrong and how get the modprobe succeed?
Thanks in advance Christian -----Ursprüngliche Nachricht----- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Andrea Righi Gesendet: Dienstag, 17. Oktober 2006 20:33 An: [email protected] Betreff: Re: [Sisuite-users] Empty ### BEGIN swap and filesystem creation commands ### section in .master file Christian, there are 2 syntax errors in your autoinstallscript.conf, but I suppose it's just a wrong copy&paste... > > <config> > <disk dev="/dev/hda" label_type="msdos" unit_of_measurement="%"> > <!-- > This disk's output was brought to you by the partition tool "sfdisk", > and by the numbers 4 and 5 and the letter Q. > --> > <part num="1" size="80" p_type="primary" p_name="-" > flags="-"boot /> the first one is here, it should be: flags="boot" instead of: flags="-"boot > <part num="2" size="20" p_type="primary" p_name="-" flags="-" /> > </disk> > > <fsinfo line="10" real_dev="/dev/hda1" mp="/" fs="ext2" > options="acl,user_xattr" dump="1" pass="1" format="yes" /> > <fsinfo line="20" real_dev="/dev/hda2" mp="swap" fs="swap" > options="defaults" dump="0" pass="0" format="yes"/> > <fsinfo line="30" real_dev="proc" mp="/proc" fs="proc" > options="defaults" dump="0" pass="0" /> > <fsinfo line="40" real_dev="tmpfs" mp="/dev/shm" fs="tmpfs > options="defaults" dump="0" pass="0" /> and here is the second one, a " is missing after tmpfs. the correct entry is: <fsinfo line="40" real_dev="tmpfs" mp="/dev/shm" fs="tmpfs" options="defaults" dump="0" pass="0" /> Anyway I suggest to use 3.7.4. Whith this release your autoinstall script seems to be generated correctly. Regards, -Andrea ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Sisuite-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/sisuite-users ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Sisuite-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/sisuite-users
