/usr/share/doc/freeipmi-common/README.openipmi is in freeipmi-common 1.4.11-1.1+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | The Linux OpenIPMI driver is often loaded via the /etc/init.d/ipmi
setup script. If your distribution/environment does not have this
script, the following script can be used to load/unload the driver.
#!/bin/sh
/sbin/modprobe ipmi_devintf
maj=`cat /proc/devices | awk '/ipmidev/{print $1}'`
if [ -c /dev/ipmi0 ]
then
rm -f /dev/ipmi0
/bin/mknod /dev/ipmi0 c $maj 0
else
/bin/mknod /dev/ipmi0 c $maj 0
fi
/sbin/modprobe ipmi_si
# do stuff
/sbin/rmmod ipmi_si
/sbin/rmmod ipmi_devintf
/sbin/rmmod ipmi_msghandler
|