LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Fedora (https://www.linuxquestions.org/questions/fedora-35/)
-   -   F10 Boot - "FATAL: Module dazuko not found" (https://www.linuxquestions.org/questions/fedora-35/f10-boot-fatal-module-dazuko-not-found-703234/)

green_minds 02-08-2009 10:03 PM

F10 Boot - "FATAL: Module dazuko not found"
 
I'm running kernel Linux 2.6.27.12-170.2.5.fc10.i686 & succesfully
config the Dazuko module and tested manually. The problem was the module is not able to load automatically during boot. And giving me a the error above (title thread).
I found a script and implement to load the module during start up:
====================================================================
#!/bin/sh
#
# chkconfig: 2345 60 40
# description: Loads dazuko module
# cobbled together from avgd startupscript
# by john flanigan 2006-03-03
#

if [ $(id -u) -ne 0 ]; then
echo "ERROR: Try to run this as root."
exit 1
fi

# Source function library.
if [ -f /etc/init.d/functions ] ; then
. /etc/init.d/functions
elif [ -f /etc/rc.d/init.d/functions ] ; then
. /etc/rc.d/init.d/functions
else
exit 0
fi

# Source networking configuration.
. /etc/sysconfig/network

# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 0

RETVAL=0

start() {
echo -n "Loading Dazuko module...";

# check if dazuko exists
DAZMOD=`/sbin/lsmod | grep dazuko`;
if [ -z "${DAZMOD}" ]; then
/sbin/modprobe -i dazuko;
echo_success;
echo;
else
echo " Dazuko already loaded.";
fi
RETVAL=$?
return $RETVAL
}

stop() {
echo -n "Unloading Dazuko module: "
/sbin/modprobe -r dazuko
RETVAL=$?
echo_success;
echo;
return $RETVAL
}

restart() {
stop;
start;
}


case "$1" in
start)
start
;;
stop)
stop
;;
restart)
restart
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac

exit $?
=========================================================
but this not solve the problem.

Thus anyone know or happen to stumble upon the way to load Dazuko module in Fedora 10 during start up boot?

Thanks for the Big Help!..

GlennsPref 02-08-2009 10:54 PM

Hi, I too have had trouble getting dazuko module to install,

and I haven't resolved it yet on my system.

But I do know that the kernel security features need to be modified, to

allow other security services to load.

This enables the kernel to load dazuko first, then the other security modules.

I hope this helps, Glenn

green_minds 02-08-2009 11:50 PM

I did "# make menuconfig" to find this setting,

"Security options -> Default Linux Capabilities" - under .config - Linux Kernel v2.6.27.12-170.2.5.fc10.i686 Configuration

and change it into module capabilities but unfortunately in Fedora 10, this security option directly built-in only for Selinux and there is no such option for Deafult Linux Capabilities. So I'm not sure if this changes still need to build the kernel for installing dazuko.

GlennsPref 02-09-2009 12:38 AM

OK, Mandriva is different in this way.

But that is what I was refering to, "Security options -> Default Linux Capabilities"

The dazuko homepage and readme that comes with the source have details about seLinux,

But they did not apply to me, So, I haven't read that bit.

Regards, Glenn

green_minds 02-09-2009 01:03 AM

Actually I successfully installed the module. But what version I only managed to install is DazukoFS 3.0.0-rc5 kernel module that targeted a Linux kernel 2.6.[26-29]. And now I can managed to load it manually thru modprobe -i dazukofs.

Now the problem on boot up is the system was looking for the "dazuko" module and not the dazukofs module which is I use to install because of
kernel compatibility.

This is the reason why I trying to figure it out how to let the dazukofs be loaded during start up time. And even I vi the /etc/init.d adding dazukofs and link it to /etc/rc/rc3.d/ modules the system still giving the error on missing dazuko during start up.

I feel that this is not related to SELinux as the failure is not about connecting to outside world.

GlennsPref 02-09-2009 03:59 AM

Ya got me there. I have dazukofs and dazuko(for antivirus on access scanning) sources downloaded,

But I have not got any further.

Sorry, That's all.

Regards, Glenn


All times are GMT -5. The time now is 03:50 PM.