mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-26 15:26:43 +00:00
74a570db70
Make HTML doc generation force index files to make links from subdirectories. Added Sixto-Clementine Vulgate Bible to Misc/. Fix User window height, patch font chars.
9 lines
294 B
Bash
Executable file
9 lines
294 B
Bash
Executable file
#!/bin/bash
|
|
echo "mounting..."
|
|
sudo modprobe nbd
|
|
#sudo qemu-nbd -c dev/nbd0 ~/VirtualBox\ VMs/ZealOS/ZealOS.vdi #Replace with path to disk
|
|
sudo qemu-nbd -c dev/nbd0 ~/vmware/ZealOS/ZealOS.vmdk #Replace with path to disk
|
|
sudo partprobe /dev/nbd0
|
|
sudo mount /dev/nbd0p1 /mnt
|
|
echo "mounted .vdi"
|
|
|