Hi,
I want to autoload ide-scsi.o on each boot. In debian there is a file
/etc/modules
in which I can iclude the names of the modules that are to be loaded at boot time
As I remember in gentoo there was a similar /etc/modules.auto or something ...
is there an appropriate place in a redhat distribution or I should write my own rc script?
sasoon
Alexander Georgiev wrote:
Hi,
I want to autoload ide-scsi.o on each boot. In debian there is a file
/etc/modules
in which I can iclude the names of the modules that are to be loaded at boot time
As I remember in gentoo there was a similar /etc/modules.auto or something ...
is there an appropriate place in a redhat distribution or I should write my own rc script?
sasoon
Did you have a look at /etc/modules.conf ?
Mike
I want to autoload ide-scsi.o on each boot. In debian there is a file
/etc/modules
Did you have a look at /etc/modules.conf ?
Mike
or in Centos4/Beta : at the /etc/modprobe.conf
- K
Alexander Georgiev wrote:
Hi,
Did you have a look at /etc/modules.conf ?
Mike
if I want to load ide-scsi.o what exactly should I write in /etc/modules.conf? _______________________________________________ CentOS mailing list CentOS@caosity.org http://lists.caosity.org/mailman/listinfo/centos
See if this page helps:
http://www.wlug.org.nz/SCSI-IDENotes
Mike
Thank you!
sheesh! it is complicated!
On Mon, 31 Jan 2005 11:15:10 -0600, Mike Kercher mike@camaross.net wrote:
Alexander Georgiev wrote:
Hi,
Did you have a look at /etc/modules.conf ?
Mike
if I want to load ide-scsi.o what exactly should I write in /etc/modules.conf? _______________________________________________ CentOS mailing list CentOS@caosity.org http://lists.caosity.org/mailman/listinfo/centos
See if this page helps:
http://www.wlug.org.nz/SCSI-IDENotes
Mike
CentOS mailing list CentOS@caosity.org http://lists.caosity.org/mailman/listinfo/centos
On Mon, 2005-01-31 at 19:19 +0200, Alexander Georgiev wrote:
Thank you!
sheesh! it is complicated!
Not really. You are telling the kernel from the command line which device is the cd-rom. If the cd writer was there when you did the install it should have been set up that way for you.
Edward J. Weinberg wrote:
On Mon, 2005-01-31 at 19:19 +0200, Alexander Georgiev wrote:
Thank you!
sheesh! it is complicated!
Not really. You are telling the kernel from the command line which device is the cd-rom. If the cd writer was there when you did the install it should have been set up that way for you.
AFAIK, it is the redhat initscripts which process this, not the kernel. Not really complex because everything else (kernel, device nodes) should be set up already (standard parts of rhel). If you have a cd-burner, the ide-scsi will also be set up by default (anaconda?)
/etc/rc.d/rc.sysinit: # If they asked for ide-scsi, load it if strstr "$cmdline" ide-scsi ; then modprobe ide-cd >/dev/null 2>&1 modprobe ide-scsi >/dev/null 2>&1 fi
If you add a cd-burner after the install, kudzu should detect it but I don't know if that can modify the boot config.
If you did not want to use the redhat way, modules.conf is not the place, that is for autoloaded modules. The best place would be /etc/rc.d/rc.local
John.
CentOS mailing list CentOS@caosity.org http://lists.caosity.org/mailman/listinfo/centos