Re: Kernel parameters

2002-10-18 Thread Karl E. Jorgensen
t much - far too much. How many thousand users? > Another question is , are the values of shmmax and shmall in bytes? Yep > > Murat > > -Ursprüngliche Nachricht- > Von: Karl E. Jorgensen [mailto:karl@;jorgensen.com] > Gesendet: Freitag, 18. Oktober 2002 14:54 > An: [EMAIL PROTECT

Re: Kernel parameters

2002-10-18 Thread Karl E. Jorgensen
On Thu, Oct 17, 2002 at 10:47:06AM +0200, Yildiz, Murat wrote: > > > Hi , > I have searched the maillist archive but found nothing. > Where can I find documentation about kernel parameters?Especially for those > under /proc/sys/fs , vm and kernel. > What I want to do is , lowering the filesystem

Re: Kernel parameters on bootdisk

2001-10-28 Thread Mark Carroll
Of course, Jeremiah Mahler's idea worked. I made the script, #!/bin/bash set -e mkfs -c /dev/fd0 mount /dev/fd0 /floppy/vmlinuz lilo -C ~/lilo-bootdisc.conf umount /dev/fd0 And lilo-bootdisc.conf was, compact boot=/dev/fd0

Re: Kernel parameters on bootdisk

2001-10-26 Thread Mark Carroll
On Fri, 26 Oct 2001, Jeremiah Mahler wrote: (snip) > I dont know if my solution is what you are looking for but here it is > anyway. I made a boot disk for using on a diskless machine by > essentially doing the same thing as I do with a hard disk. > I created an ext2 filesystem on the floppy and c

Re: Kernel parameters on bootdisk

2001-10-26 Thread Jeremiah Mahler
On Fri, Oct 26, 2001 at 10:40:28AM -0400, Mark Carroll wrote: > What must I do to pass parameters to things compiled into a kernel on a > bootdisk, when I do "make zdisk" or whatever with the kernel sources, > in the same way that one can pass parameters with lilo's "append"? > > -- Mark > > > -