lsmod detalis

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat lsmod detalis
# 1  
Old 04-25-2012
lsmod detalis

i have two question am running redhat 5.4
1-how can i know module name for my network card and fiber card
2-how to scan for lun assign to my linux server.
# 2  
Old 04-25-2012
modinfo works

You can also look by doing an lspci -vv
# 3  
Old 04-25-2012
RHEL5 moved the FIBRE Card related info (depending on type of card) to another location:

Code:
/sys/class/fc_host/

You can just do a fdisk -l to list any LUNs presented to the server. If they're presented and not visible, this may require either rescanning:

Code:
echo 1 > /sys/class/fc_host/host0/issue_lip
echo 1 > /sys/class/fc_host/host1/issue_lip

which occasionally doesn't work, or just reboot the server.

Hope this helps.
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question