Query: losetup
OS: redhat
Section: 8
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
LOSETUP(8) MAINTENANCE COMMANDS LOSETUP(8)NAMElosetup - set up and control loop devicesSYNOPSISlosetup [ -e encryption ] [ -o offset ] loop_device file losetup [ -d ] loop_deviceDESCRIPTIONlosetup is used to associate loop devices with regular files or block devices, to detach loop devices and to query the status of a loop device. If only the loop_device argument is given, the status of the corresponding loop device is shown.OPTIONS-d detach the file or device associated with the specified loop device. -e encryption enable data encryption. The following keywords are recognized: NONE use no encryption (default). XOR use a simple XOR encryption. DES use DES encryption. DES encryption is only available if the optional DES package has been added to the kernel. DES encryption uses an additional start value that is used to protect passwords against dictionary attacks. -o offset the data start is moved offset bytes into the specified file or device.RETURN VALUElosetup returns 0 on success, nonzero on failure. When losetup displays the status of a loop device, it returns 1 if the device is not con- figured and 2 if an error occurred which prevented losetup from determining the status of the device.FILES/dev/loop0,/dev/loop1,... loop devices (major=7)EXAMPLEIf you are using the loadable module you must have the module loaded first with the command # insmod loop.o The following commands can be used as an example of using the loop device. dd if=/dev/zero of=/file bs=1k count=100 losetup -e des /dev/loop0 /file Password: Init (up to 16 hex digits): mkfs -t ext2 /dev/loop0 100 mount -t ext2 /dev/loop0 /mnt ... umount /dev/loop0 losetup -d /dev/loop0 If you are using the loadable module you may remove the module with the command # rmmod loopRESTRICTIONDES encryption is painfully slow. On the other hand, XOR is terribly weak.AUTHORSOriginal version: Theodore Ts'o <tytso@athena.mit.edu> Original DES by: Eric Young <eay@psych.psy.uq.oz.au> Linux Nov 24 1993 LOSETUP(8)
Related Man Pages |
---|
losetup(8) - redhat |
losetup(8) - suse |
losetup(8) - netbsd |
losetup(8) - osf1 |
losetup(8) - bsd |
Similar Topics in the Unix Linux Community |
---|
Simple Question |
Renaming files |
Execute while loop |
loop through files in directory |
when to use -ne and when to use != |