mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Add --samba option
Enables home directory sharing to the guest VM.
This commit is contained in:
parent
7caa40998c
commit
390e1ba2c0
1 changed files with 11 additions and 1 deletions
12
quickemu.sh
12
quickemu.sh
|
@ -108,6 +108,7 @@ function usage() {
|
||||||
echo " --efi : Enable EFI BIOS (default)."
|
echo " --efi : Enable EFI BIOS (default)."
|
||||||
echo " --legacy : Enable legacy BIOS."
|
echo " --legacy : Enable legacy BIOS."
|
||||||
echo " --restore : Restore the snapshot."
|
echo " --restore : Restore the snapshot."
|
||||||
|
echo " --samba : Share your home directory to the guest."
|
||||||
echo " --snapshot : Create a disk snapshot."
|
echo " --snapshot : Create a disk snapshot."
|
||||||
echo " --virgil : Use virgil, if available."
|
echo " --virgil : Use virgil, if available."
|
||||||
exit 1
|
exit 1
|
||||||
|
@ -117,7 +118,7 @@ BIOS="-bios /usr/share/qemu/OVMF.fd"
|
||||||
DELETE=0
|
DELETE=0
|
||||||
ENGINE="system-x86_64"
|
ENGINE="system-x86_64"
|
||||||
RESTORE=0
|
RESTORE=0
|
||||||
SAMBA=",smb=${HOME}"
|
SAMBA=""
|
||||||
SNAPSHOT=0
|
SNAPSHOT=0
|
||||||
VM=""
|
VM=""
|
||||||
|
|
||||||
|
@ -135,6 +136,15 @@ while [ $# -gt 0 ]; do
|
||||||
-restore|--restore)
|
-restore|--restore)
|
||||||
RESTORE=1
|
RESTORE=1
|
||||||
shift;;
|
shift;;
|
||||||
|
-samba|--samba)
|
||||||
|
TEST_SMBD=$(which smbd)
|
||||||
|
if [ $? -eq 0 ]; then
|
||||||
|
SAMBA=",smb=${HOME}"
|
||||||
|
echo "NOTE! ${HOME} will be available on the guest via smb://10.0.2.4/qemu"
|
||||||
|
else
|
||||||
|
echo "WARNING! Requested sharing %{HOME} via samba. 'smbd' not found."
|
||||||
|
fi
|
||||||
|
shift;;
|
||||||
-snapshot|--snapshot)
|
-snapshot|--snapshot)
|
||||||
SNAPSHOT=1
|
SNAPSHOT=1
|
||||||
shift;;
|
shift;;
|
||||||
|
|
Loading…
Reference in a new issue