mirror of
https://github.com/Fohdeesha/lab-docu.git
synced 2024-11-29 11:15:23 +01:00
8 lines
262 B
Bash
8 lines
262 B
Bash
|
#!/bin/bash
|
||
|
#FreeDOS IMG Mounter
|
||
|
losetup -fP /root/dos-builder/CDROOT/isolinux/good.img
|
||
|
sleep 1
|
||
|
mount -o loop /dev/loop0p1 /root/dos-builder/dump/
|
||
|
sleep 1
|
||
|
echo "put desired files in /root/dos-builder/dump/"
|
||
|
echo "then run build.sh to unmount and build final ISO"
|