added more missing scripts
This commit is contained in:
32
vdi2raw2ewf
Executable file
32
vdi2raw2ewf
Executable file
@ -0,0 +1,32 @@
|
||||
#!/usr/local/bin/bash
|
||||
|
||||
PATH="/Users/neupat75/VirtualBox VMs"
|
||||
DSC="LinuxMint"
|
||||
VDI="${DSC}_19.1"
|
||||
RAW="${PATH}/${VDI}.raw"
|
||||
CASE="20190408-01"
|
||||
EVI="01"
|
||||
|
||||
/usr/local/bin/vbox-img \
|
||||
convert \
|
||||
--srcfilename "${PATH}/${VDI}/${VDI}.vdi" \
|
||||
--dstfilename "${RAW}" \
|
||||
--dstformat RAW
|
||||
|
||||
/usr/local/bin/ewfacquire \
|
||||
-c fast \
|
||||
-C "${CASE}" \
|
||||
-d sha1 \
|
||||
-D "${DSC}" \
|
||||
-e "Patrick Neumann" \
|
||||
-E "${CASE}-${EVI}" \
|
||||
-g 1 \
|
||||
-l "${PATH}/VBoxVM-${VDI}.log" \
|
||||
-N "user:u53r - with Evolution and Timeshift" \
|
||||
-t "${PATH}/VBoxVM-${VDI}" \
|
||||
-u \
|
||||
"${RAW}"
|
||||
|
||||
/bin/rm "${RAW}"
|
||||
|
||||
exit 0
|
Reference in New Issue
Block a user