Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

documentation on /etc/modules.conf 1

Status
Not open for further replies.

tlemons

MIS
Jun 27, 2002
58
US
Hi

Where can I find documentation on the values that go into modules.conf? Specifically, I want to find a list of the parameters to the sd_mod and scsi_mod options.

Thanks!
tl
 
if you have the kernel source it's in /usr/src/kernel/linux/Documentation/modules.txt, or you can search google for that file. There's also a man page for modules.conf
To get parameters for a particular module on the fly, use modinfo:
~$ modinfo /usr/src/linux-2.4.20/drivers/scsi/scsi_mod.o
filename: /usr/src/linux-2.4.20/drivers/scsi/scsi_mod.o
description: "SCSI core"
author: <none>
license: "GPL"
parm: scsi_logging_level int, description "SCSI logging level; should be zero or nonzero"
parm: scsihosts string
parm: max_scsi_luns int, description "last scsi LUN (should be between 1 and 2^32-1)
 
Fabulous information! This is just what I needed. Many thanks for taking the time to post this!

tl
 
So, give him a star! :)


Just my $.02

"In order to start solving a problem, one must first identify it's owner." --Me
--Greg
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top