Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.49 KB | None | 0 0
  1. #/bin/sh
  2.  
  3. qemu-system-x86_64 \
  4.         -kernel /mnt/debian0/vmlinuz \
  5.         -initrd /mnt/debian0/initrd.img \
  6.         -append "root=/dev/sda ro rootfstype=ext4" \
  7.         -cpu Penryn \
  8.         -smp 2 \
  9.         -net nic,model=virtio \
  10.         -net tap,ifname=tap0,script=no,downscript=no,vhost=on \
  11.         -m 512 \
  12.         -vga std \
  13.         -clock rtc \
  14.         -enable-kvm \
  15.         -boot c \
  16.         -daemonize \
  17.         -nographic \
  18.         -vnc :0 \
  19.         -hda /dev/home/debian0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement