PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : was bedeuten....



pixel
10.05.02, 23:21
Hi@all,

kann mir jemand folgende Kernel-Funktionen (2.4.18) erklären? Ich finde in keinem Buch eine Erklärung.


***Processor type and features***
- Memory eXpansion Technology (MXT) Support

***Block devices***
- Twofish encryption for loop device
- Network block device support

Gruss Pixel

geronet
11.05.02, 10:03
CONFIG_BLK_DEV_NBD: Saying Y here will allow your computer to be a client for network block devices, i.e. it will be able to use block devices exported by servers (mount file systems on them etc.). Communication between client and server works over TCP/IP networking, but to the client program this is hidden: it looks like a regular local file access to a block device special file such as /dev/nd0. Network block devices also allows you to run a block-device in userland (making server and client physically the same computer, communicating using the loopback network device).

Network block device ist eine "Emulation" einer Netzwerkkarte.. braucht man nur als Developer denk ich mal.

- Twofish encryption for loop device
Das ist die "twofish" Verschlüsselung mit der man verschlüsselte Partitionen erstellen und lesen kann. Diesen Parameter find ich nicht bei dem "vanilla" Kernel 2.4.18...

Memory eXpansion Technology find ich auch nicht... hast wohl einen gepachten Kernel erwischt..

Grüsse, Stefan