mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-25 23:10:32 +00:00
70a677b281
Added Cls, new tasks' default name is "Terminal"
8 lines
248 B
Bash
Executable file
8 lines
248 B
Bash
Executable file
#!/bin/bash
|
|
sudo modprobe nbd
|
|
sudo qemu-nbd -c dev/nbd0 ~/VirtualBox\ VMs/ZenithOS/ZenithOS.qcow
|
|
sudo mount /dev/nbd0p1 /mnt
|
|
sudo cp -r /mnt/* ~/Projects/ZenithOS/
|
|
sudo umount /mnt
|
|
sudo qemu-nbd -d /dev/nbd0
|
|
sudo chown -R v:v ~/Projects/ZenithOS/*
|