RE: loading coda into the kernel

"Gautam Singaraju" <[email protected]> Fri, 1 Jul 2005 16:07:28 -0400
Newsgroups gmane.comp.file-systems.coda.devel
Message-ID <[email protected]>
Jan,

Thank you for the help. I now see the coda kernel module that had been
loaded [lsmod]. I am presently trying to create a volume that can be shared
and I am encountering an error.

#createvol_rep / <foo.com>
Failed to dump the current VRDB into /vice/db/VRList.new

Any suggestions please?

Thank you,
Gautam



-----Original Message-----
From: Jan Harkes [mailto:[email protected]] 
Sent: Friday, July 01, 2005 3:28 PM
To: [email protected]
Subject: Re: loading coda into the kernel

On Fri, Jul 01, 2005 at 03:19:31PM -0400, Gautam Singaraju wrote:
> I have been working to install coda on Fedora Core 4 with kernel: 2.6.12.
> 
> During installation, the coda support was selected as a module and the 
> kernel recompiled. However when I reboot into the said kernel, the 
> module is not being loaded. [insmod coda gives an error no such file 
> or directory]

modprobe coda should be able to load it if it is installed correctly.
With insmod you have to specify the full path to the module.

To get the module loaded automatically at boot on FC3 I needed to add a file
/etc/rc.modules that has to be executable (chmod 755) and contain the
following,

    #!/bin/sh
    /sbin/modprobe coda

Jan