Difference between revisions of "Device-mapper"

From CBLFS
Jump to navigationJump to search
(Multilib)
m (Fixed grammar, punctuation, and spelling.)
 
(6 intermediate revisions by 2 users not shown)
Line 7: Line 7:
 
----
 
----
  
{{Blank-Package-Introduction}}
+
{{Package-Introduction|The Device-mapper is a new component of the linux kernel that supports logical volume management.|http://sources.redhat.com/dm/}}
  
 
== Dependencies ==
 
== Dependencies ==
Line 15: Line 15:
 
Compile the package:
 
Compile the package:
  
  ./configure --mandir=/usr/share/man --enable-dmeventd --enable-pkgconfig --disable-selinux &&
+
  ./configure --mandir=/usr/share/man --enable-dmeventd \
 +
    --enable-pkgconfig --disable-selinux &&
 
  make
 
  make
  
Install the package
+
Install the package:
  
 
  make install
 
  make install
Line 28: Line 29:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD32}" ./configure --mandir=/usr/share/man --enable-dmeventd --enable-pkgconfig --disable-selinux &&
+
  CC="gcc ${BUILD32}" ./configure --mandir=/usr/share/man \
 +
    --enable-dmeventd --enable-pkgconfig --disable-selinux &&
 
  make
 
  make
  
Install the package
+
Install the package:
  
 
  make install
 
  make install
 
Relocate libraries
 
 
rm /lib/libdevmapper{,-event}.so
 
ln -svf ../../lib/libdevmapper.so.1.02 /usr/lib/libdevmapper.so
 
ln -svf ../../lib/libdevmapper-event.so.1.02 /usr/lib/libdevmapper-event.so
 
  
 
=== N32 ===
 
=== N32 ===
Line 46: Line 42:
  
 
  sed -i "/usrlibdir/s:/lib:&32:" configure &&  
 
  sed -i "/usrlibdir/s:/lib:&32:" configure &&  
  CC="gcc ${BUILDN32}" ./configure --mandir=/usr/share/man --enable-dmeventd --libdir=/lib32 \
+
  CC="gcc ${BUILDN32}" ./configure --mandir=/usr/share/man \
 +
    --enable-dmeventd --libdir=/lib32 \
 
     --enable-pkgconfig --disable-selinux &&
 
     --enable-pkgconfig --disable-selinux &&
 
  make
 
  make
  
Install the package
+
Install the package:
  
 
  make install
 
  make install
Line 59: Line 56:
  
 
  sed -i "/usrlibdir/s:/lib:&64:" configure &&  
 
  sed -i "/usrlibdir/s:/lib:&64:" configure &&  
  CC="gcc ${BUILD64}" ./configure --libdir=/lib64 --mandir=/usr/share/man --enable-dmeventd \
+
  CC="gcc ${BUILD64}" ./configure --libdir=/lib64 \
 +
    --mandir=/usr/share/man --enable-dmeventd \
 
     --enable-pkgconfig --disable-selinux &&
 
     --enable-pkgconfig --disable-selinux &&
 
  make
 
  make
  
Install the package
+
Install the package:
  
 
  make install
 
  make install
  
Relocate libraries
+
== Configuration ==
 +
 
 +
=== Bootscript ===
 +
 
 +
The following bootscript is only needed in very specific situations, namely, if you use an initramfs or some other early userspace to initialize device mapper.  This script only runs '''dmsetup mknodes''' and reports the status of the command on start. If you need this functionality, install the bootscript with the following command.
 +
 
 +
make install-devmapper
  
rm /lib64/libdevmapper{,-event}.so
+
[[Category:Block Device]]
ln -svf ../../lib64/libdevmapper.so.1.02 /usr/lib64/libdevmapper.so
 
ln -svf ../../lib64/libdevmapper-event.so.1.02 /usr/lib64/libdevmapper-event.so
 

Latest revision as of 17:34, 17 March 2009

Download Source: ftp://sources.redhat.com/pub/dm/device-mapper.1.02.28.tgz

Introduction to Device-mapper

The Device-mapper is a new component of the linux kernel that supports logical volume management.

Project Homepage: http://sources.redhat.com/dm/

Dependencies

Non-Multilib

Compile the package:

./configure --mandir=/usr/share/man --enable-dmeventd \
    --enable-pkgconfig --disable-selinux &&
make

Install the package:

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" ./configure --mandir=/usr/share/man \
    --enable-dmeventd --enable-pkgconfig --disable-selinux &&
make

Install the package:

make install

N32

Compile the package:

sed -i "/usrlibdir/s:/lib:&32:" configure && 
CC="gcc ${BUILDN32}" ./configure --mandir=/usr/share/man \
    --enable-dmeventd --libdir=/lib32 \
    --enable-pkgconfig --disable-selinux &&
make

Install the package:

make install

64Bit

Compile the package:

sed -i "/usrlibdir/s:/lib:&64:" configure && 
CC="gcc ${BUILD64}" ./configure --libdir=/lib64 \
    --mandir=/usr/share/man --enable-dmeventd \
    --enable-pkgconfig --disable-selinux &&
make

Install the package:

make install

Configuration

Bootscript

The following bootscript is only needed in very specific situations, namely, if you use an initramfs or some other early userspace to initialize device mapper. This script only runs dmsetup mknodes and reports the status of the command on start. If you need this functionality, install the bootscript with the following command.

make install-devmapper