How do I load kernel modules so BestCrypt will work


 
Thread Tools Search this Thread
Operating Systems Linux SuSE How do I load kernel modules so BestCrypt will work
# 1  
Old 11-11-2004
How do I load kernel modules so BestCrypt will work

I'm using SuSE 9.2 Pro and trying to use a program call BestCrypt. I get it installed and type bctool and it says "Kernel modules not loaded". If you need to know anymore about it you can find it at http://www.jetico.com/linux/bcrypt-help/index.htm

linux:/home/chris/Desktop/Xtheater-0.9.2 # bctool
Kernel modules not loaded
# 2  
Old 11-12-2004
You will need to load the module into the kernel. the command is insmod.
Can read more on this by reading the manual, man insmod.
May want to see if the program modprobe works.
# 3  
Old 11-12-2004
# modprobe brings up another line telling about the Usage. This version of BestCrypt works with linux 2.5 and 2.6 talking about the kernels I think. How do I find this kernel to load? I see a /usr/src/kernel-modules/ folder that has 20 folders in in it.

acx100-0.2.0pre8_plus_fixes_29
adm8211
at76c503a-0.12beta18
bios
dazuko
drm
fcdsl
fritzcapi
hostap-driver-0.2.4
ipppcomp
ipw
km_smartlink_softmodem
linux-iscsi-4.0.1
linux-wlan-ng-0.2.1pre21
madwifi-20040928
openafs
rfswitch-0.1
subfs
tpctl
usbvision

Any of these the one I need to load?
# 4  
Old 11-13-2004
Quote:
Originally posted by CTroxtell21
This version of BestCrypt works with linux 2.5 and 2.6 talking about the kernels I think.
Which kernel version are you running?

uname -a

Cheers
ZB
# 5  
Old 11-13-2004
Well changed it back to
Linux linux 2.6.8-24-default #1 Wed Oct 6 09:16:23 UTC 2004 i686 athlon i386 GNU/Linux


Linux linux 2.6.8-24.3-default #1 Tue Oct 26 14:40:54 UTC 2004 i686 athlon i386GNU/Linux
was causing conflicts with like glib-devel and another devel pack.

Last edited by CTroxtell21; 11-14-2004 at 07:51 PM..
# 6  
Old 11-14-2004
Well, your kernel should be compatible so, check the BestCrypt documentation - it should tell you which modules need to be inserted. Then, as locustfurnace indicates, use insmod module_name to load the module. If you want to make this persistent, then add the appropriate entries to /etc/modules.conf (or /etc/conf.modules) and run depmod -a.

Cheers
ZB
# 7  
Old 11-14-2004
As you can see below I tryed the #insmod but for some reason I don't know how to use it or something but it keeps throwing back an error. With modprobe it don't give an error but it still gives an error on trying to run bctool. Am I using these commands right and do I need to install just the module I need to use like blowfish? I done a #man modprobe and noticed this:

modprobe looks in the module directory /lib/modules/?uname -r? for all the modules and other files, except for the optional /etc/modprobe.conf or /etc/modprobe.d (see modprobe.conf(5)).
I checked but there is no such directory or file in /lib/modules/ there is just the 2.6.8-24-default, precompiled and scripts folder in here.

linux:/etc # modprobe cryptoloop
linux:/home/chris/Desktop # insmod blowfish
insmod: can't read 'blowfish': No such file or directory
linux:/home/chris/Desktop # modprobe blowfish
linux:/home/chris/Desktop # bctool
Kernel modules not loaded

Last edited by CTroxtell21; 11-14-2004 at 08:28 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Missing Modules After Compiling Kernel

I'm a little embarrassed after all these years I've never really successfully compiled my own kernel. I used this guide to make the following files: linux-headers-5.1.9_5.1.9-1_amd64.deb linux-image-5.1.9_5.1.9-1_amd64.deb linux-libc-dev_5.1.9-1_amd64.deb When I first booted into this... (4 Replies)
Discussion started by: Azrael
4 Replies

2. Linux

Disable loading kernel modules

Hi, I am running CentOS 6.5 and I want to remove auto loading 8021q and garp modules, but there are no configure files in /etc/modprobe.d define bot modules. I even added both module names to /etc/modprobe.d/blacklist.conf, both of them are still loaded after the reboot. How can I disable... (2 Replies)
Discussion started by: hce
2 Replies

3. Hardware

Linux Kernel Modules

Hey everyone. I have a question, doing an lsmod gives me a list of all the loaded modules for my system. But how did they know to load? my /etc/modules files is empty, so how did these modules know to load themselves on boot time? If I were to take this hard drive to another computer with a... (6 Replies)
Discussion started by: Lost in Cyberia
6 Replies

4. UNIX for Dummies Questions & Answers

Linux kernel modules makefiles doubts

This query is regarding the makefiles of linux kernel modules. I saw at some sites on net it is suggesting to include the following path: KERNEL_SOURCE := /usr/src/linux... while at some places it is askibg to include /lib/modules path: KERNEL_SOURCE := /lib/modules/2.6.27-7-generic/build... (0 Replies)
Discussion started by: rupeshkp728
0 Replies

5. Emergency UNIX and Linux Support

Linux: passing parameters to kernel modules

Hi, I need to set qlogic qla2xxx parameters in /etc/modprobe.conf (Oracle Linux Server release 5.7, almost equal to RedHat 5.7) two questions: how can I pass this parameters to the module while it is loaded (fibre channel luns are in use), if possible at all and how can I check the... (3 Replies)
Discussion started by: funksen
3 Replies

6. Programming

Debugging Linux Kernel Modules

I am aware of debugging linux applications using gdb and ddd. Now I have written a simple kernel module having init_module, exit _module and some functions for tasklets and workqueues. I want to debug these kernel modules like I used to debug applications setting breakpoints etc. How can I debug... (1 Reply)
Discussion started by: rupeshkp728
1 Replies

7. UNIX for Advanced & Expert Users

Kernel Modules Not geting built

I installed in VM the Mandriva Linux with 2.6.27 kernel. But presently when I fire make the modules .ko does not get built. I get the following output on firing command in the kernel module folder. $ make Building first_driver.c ... make: Entering directory... (1 Reply)
Discussion started by: rupeshkp728
1 Replies

8. Programming

HELP!!: CPU resource allocation between kernel modules and user mode process

Hi,all: I run my program which consists of one kernel module and one user mode process on a dual core server. The problem here is the kernel module consumes 100% of one core while the user mode process only consumes 10% of the other core, is there any solution that I can assign some computing... (1 Reply)
Discussion started by: neyshule
1 Replies

9. HP-UX

Information about kernel modules

Hi all, what do kernel modules libaudit, klog and strlog do? Specifically I want to determine if it was possible for us to determine if kernel level auditing is enabled at all? regards (0 Replies)
Discussion started by: slash_blog
0 Replies
Login or Register to Ask a Question