You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
160 B
13 lines
160 B
10 years ago
|
#!/bin/sh
|
||
|
|
||
|
if [ "$#" -ne 1 ]; then
|
||
|
echo "$0 iso"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
iso=$1; shift
|
||
|
|
||
|
qemu-system-x86_64 -m 512 -boot order=cd \
|
||
10 years ago
|
-drive file=$iso,media=cdrom
|
||
10 years ago
|
|