/etc/modprobe.d/overlay.conf with the following contents:
options overlay index=off
check in /sys/modules/overlay/parameters/index
stty rows 80 cols 180
The directions below are specific to an Ubuntu 16.04 host system equipped with a GeForce GTX 550 Ti graphics card. While the process should be the same, YMMV.
- Make sure your system supports IOMMU groups
todo -- get directions from SRIOV page
-drive if=none,id=drive0,file=/dev/sdX,format=raw,aio=native,cache=none -device virtio-scsi-pci,id=virtio-scsi-pci0 -device scsi-block,drive=drive0,bus=virtio-scsi-pci0.0
http://lists.gnu.org/archive/html/qemu-devel/2018-03/msg01460.html
https://pve-devel.pve.proxmox.narkive.com/qZdhk8h5/integration-of-scsi-hd-scsi-block-scsi-generic
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Clear Linux install configuration | |
# | |
# /dev/sda1 / | |
# /dev/sda2 /boot | |
# /dev/sda3 (reserved partition for devicemapper) | |
# | |
DEVICE="/dev/sda3" | |
echo "Stopping docker" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hotplugging cpu: | |
Start QEMU with QMP socket available and with startup amount of CPUs less than maxcpus: | |
./qemu-system-x86_64 -qmp unix:/tmp/qmp-sock,server,nowait -smp 2,maxcpus=8 | |
Connect to qmp socket and add cpu: | |
socat /tmp/qmp-sock - | |
{ "execute": "cpu-add", "arguments": { "id": 2 } } | |
Hotpluggable Cpu's can be queried as: |
NewerOlder