Energy Drink wrote: > Hi, More info on the "unexpected realtime delay" error on ThinkPad laptop. > > I did use the older EMC2 live-cd! Ver 2.0.? with success. The newest live-cd > didn't work, it shows the same error as the hard drive instalation, witch is > an upgrade from the older live-cd. > I did use the lsmod utility but im sorry! I'm not that good on linux yet, so > how do I unload/load these drivers without recompiling the kernel. Well, I wasn't really suggesting you load/unload drivers, but just to see what is different between the two kernels. But, in fact, you can unload a loadable driver with the command rmmod. You have to have priveledges set to do this. So, the command would be : sudo rmmod xxx (possibly you may need to specify it as sudo /sbin/rmmod xxx).
You can install loadable drivers with the opposite command, insmod, but it is a lot easier to use modprobe, which finds the right modules directory and file for the specific function, loads other modules that the specified one depends on, etc. So, that would be : sudo modprobe xxx Of course, some of the module names are quite cryptic, others are pretty obvious. Jon ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Emc-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/emc-users
