added more missing scripts

This commit is contained in:
2019-04-26 21:08:03 +02:00
parent 7e3041c271
commit 06f479dadc
2 changed files with 63 additions and 0 deletions

32
vdi2raw2ewf Executable file
View 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