Was ist dkms? Wo bekommt man das?

Du suchst ein Programm für einen bestimmten Zweck?
Antworten
hronny
Beiträge: 265
Registriert: 29.08.2004 13:07:42
Wohnort: Sonneberg

Was ist dkms? Wo bekommt man das?

Beitrag von hronny » 08.03.2006 16:12:50

Hallo. Um Acronis True Image zu installieren benötigt man ein SNAPAPI Modul das man mit DKMS erstellen soll. Wo kommt das her?
So sieht die Anleitung für Debian aus:


VI. Installing on Debian (sarge) with kernel 2.4.25-1-386

1. Install kernel sources.

2. Build and install kernel module.
# dkms build -m snapapi -v 0.6.4 -k 2.4.25-1 \
> --config /boot/config-2.4.25-1-386 --arch i686 \
> --kernelsourcedir /usr/src/kernel-sources-2.4.25
# dkms install -m snapapi -v 0.6.4 -k 2.4.25-1 \
> --config /boot/config-2.4.25-1-386 --arch i686 \
> --kernelsourcedir /usr/src/kernel-sources-2.4.25

It is supposed that you have kernel 2.4.25-1,
kernel architecture is i686 and module version is 0.6.4.

3. Most probably raw-devices were not created during Debian 3.0
installation/configuring. Following simple script can be used
to check and create the devices if needed (root permissions
required):
#!/bin/bash
mkdir -p /dev/raw/
if [ ! -e /dev/rawctl ] ;then
mknod /dev/rawctl c 162 0
fi
for i in `seq 1 128`; do
if [ ! -e /dev/raw/raw${i} ] ;then
mknod /dev/raw/raw${i} c 162 ${i}
fi
done

4. Activate devfs support by commands:
# mkdir /devfs
# mount -t devfs devfs /devfs

5. Make devfs support permanent by adding
"devfs /devfs devfs defaults 0 0" to your /etc/fstab file.

VII. Installing on Debian (sarge) with kernel 2.6.7
Please build and install snapapi26 module as described in
section I. Devfs should not be mounted.

Benutzeravatar
I.C.Wiener
Beiträge: 674
Registriert: 19.08.2003 18:45:35

Beitrag von I.C.Wiener » 08.03.2006 16:24:22

Moin,

ich habe keine Ahnung was das ist, außer dass es "Dynamic Kernel Module Support Framework" heißt.
Finden kannst du es aber hier: http://linux.dell.com/dkms/dkms.html
In Debian scheint es nicht drin zu sein. Oder packages.debian.org ost noch nicht wieder up-to-date. ;)

MfG
Who is... LAIN?

Antworten