forked from sneak/hacks
16 lines
208 B
Bash
Executable File
16 lines
208 B
Bash
Executable File
#!/bin/bash
|
|
MR="./roottemp"
|
|
L="/dev/loop5"
|
|
losetup -d /dev/loop6
|
|
umount $MR/sys
|
|
umount $MR/proc
|
|
umount $MR/dev
|
|
umount $MR/boot
|
|
umount $MR
|
|
vgchange -a n vmvg0
|
|
kpartx -dv $L
|
|
losetup -d $L
|
|
rmdir $MR
|
|
rm raw.img
|
|
|