diff options
author | H. P. <harald.p.@xmart.de> | 2018-11-01 13:30:58 +0100 |
---|---|---|
committer | H. P. <harald.p.@xmart.de> | 2018-11-01 13:30:58 +0100 |
commit | 0632591996893fe136a1f2fe44d9b9f404f41f3e (patch) | |
tree | 7340edbe7c212da3db45a83219147143a3268c8d /documentation | |
download | fedora-laptop-0632591996893fe136a1f2fe44d9b9f404f41f3e.tar.bz2 |
Initial commit
Diffstat (limited to 'documentation')
51 files changed, 2900 insertions, 0 deletions
diff --git a/documentation/.gitignore b/documentation/.gitignore new file mode 100644 index 0000000..78cce4a --- /dev/null +++ b/documentation/.gitignore @@ -0,0 +1 @@ +packages-raw diff --git a/documentation/.update b/documentation/.update new file mode 100755 index 0000000..5e7105c --- /dev/null +++ b/documentation/.update @@ -0,0 +1,39 @@ +#!/bin/bash + +RETVAL=0;WRONGOPT=0 +declare -x INVLIST + +function invhelp { + echo -e "USAGE:\t$(tput bold)$(basename "$0")$(tput sgr0) [OPTIONS...]" + echo + echo "Update the documentation automatically." + echo + ( + echo "-a;all of the below options" + echo "-b;Update the block devices list" + echo "-d;Update the dnf history rawfile (in case of git repo:" + echo -e "\t; output is in .gitignore and needs to be parsed)" + echo "-h;This help" + echo "-g;Update the git inventory" + echo "-k;Update the KVM inventory" + )|column -ts\; +} +[ -z "$1" ]&&invhelp&&exit 0 +while getopts :abdgkh SHOPT;do + case $SHOPT in + a) INVLIST="block-inventory dnf-history kvm-inventory git-inventory";break 2;; + b) INVLIST+=" block-inventory";; + d) INVLIST+=" dnf-history";; + k) INVLIST+=" kvm-inventory";; + g) INVLIST+=" git-inventory";; + h) invhelp&&exit 0||exit 1;; + *) echo "Not supported option: -""${OPTARG}" >&2;RETVAL=$(($RETVAL+1)) >&2;WRONGOPT=1;; + esac +done +RETVAL=$(($RETVAL+$?)) +shift $(( $OPTIND - 1 )) +[ "$WRONGOPT" -eq 1 ]&&exit 1 +for i in $INVLIST;do + aux/"$i" +done +exit $RETVAL diff --git a/documentation/Makefile b/documentation/Makefile new file mode 100644 index 0000000..205fb74 --- /dev/null +++ b/documentation/Makefile @@ -0,0 +1,31 @@ +VERSION = 3.81 + +all: block-inventory dnf-history kvm-inventory git-inventory + +block-inventory: + @./aux/block-inventory + +dnf-history: + @echo -n 'Fetching user-installed packages...' + @sudo dnf history userinstalled > ./packages&&echo 'done.' + +kvm-inventory: + @./aux/kvm-inventory + +git-inventory: + @./aux/git-inventory + +PHONY: help + +help: + @echo "Update the documentation automatically." + @echo + @echo "Following make targets are understood (try tab-completion)" + @echo + @echo -e "block-inventory\tUpdate the block devices list" + @echo -e "dnf-history\tUpdate the dnf history rawfile (in case of git repo:" + @echo -e "\t\toutput is in .gitignore and needs to be parsed)" + @echo -e "git-inventory\tUpdate the git inventory" + @echo -e "help\t\tThis help" + @echo -e "kvm-inventory\tUpdate the KVM inventory" + @echo -e "all\t\tThe traditional one: all of the worker targets above" diff --git a/documentation/README.md b/documentation/README.md new file mode 100644 index 0000000..dd0b6f7 --- /dev/null +++ b/documentation/README.md @@ -0,0 +1,5 @@ +# Documentation + +Contains all stuff we do not pull directly as is from files on the client but +rather are gathered through investigative commands or are just simple +explanations. diff --git a/documentation/aux/block-inventory b/documentation/aux/block-inventory new file mode 100755 index 0000000..c8dc3f3 --- /dev/null +++ b/documentation/aux/block-inventory @@ -0,0 +1,10 @@ +#!/bin/bash + +SCDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +source "$SCDIR/ctrl-c"||exit 1 +ODETFIL="$SCDIR/../blockdevices" + +echo -n "Fetching blocks..." +true>"$ODETFIL";[ "$?" -ne 0 ]&&echo "failed."&&exit 1||echo -n "." +echo -n ".";lsblk -im -o+FSTYPE,MIN-IO,MOUNTPOINT 2>/dev/null|sed 's/luks-[^\ ]\+/luks-<uuid> /g' >"$ODETFIL" +[ "$?" -ne 0 ]&&echo ".failed."||echo ".done." diff --git a/documentation/aux/ctrl-c b/documentation/aux/ctrl-c new file mode 100755 index 0000000..b7530b2 --- /dev/null +++ b/documentation/aux/ctrl-c @@ -0,0 +1,7 @@ +#!/bin/bash + +function ctrl_c() { + echo " CUNT PUNT!" >&2 + exit 187 +} +trap ctrl_c INT diff --git a/documentation/aux/dnf-history b/documentation/aux/dnf-history new file mode 100755 index 0000000..716d22c --- /dev/null +++ b/documentation/aux/dnf-history @@ -0,0 +1,21 @@ +#!/bin/bash + +# we need to use sudo, better fetch the session now so it doesn't feck up our +# nice output later on, tee hee. +sudo echo -n "" +[ "$?" -ne 0 ]&&echo "Not allowed to proceed :("&&exit 1 +SCDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +#SCDIR="$HOME" +source "$SCDIR/ctrl-c"||exit 1 +ODETFIL="$SCDIR/../packages-raw" + +echo -n "Fetching dnf history" +true>"$ODETFIL";[ "$?" -ne 0 ]&&echo "failed."&&exit 1||echo -n "." +LCNT=0 +for i in $(sudo dnf history|sed 's/^[\ \t]\+\([0-9]\+\).*/\1/g'|grep -vP -- '^--|^ID');do + ((++LCNT)) + [ "$(($LCNT % 3))" -eq 0 ]&&echo -n "."||true + sudo dnf history info "$i" 2>>"$ODETFIL"|grep -i Command\ line>>"$ODETFIL" + #[ "$?" -ne 0 ]&&break +done;echo "done." +#[ "$?" -ne 0 ]&&echo "failed."||echo "done." diff --git a/documentation/aux/git-inventory b/documentation/aux/git-inventory new file mode 100755 index 0000000..182812a --- /dev/null +++ b/documentation/aux/git-inventory @@ -0,0 +1,13 @@ +#!/bin/bash + +SCDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +source "$SCDIR/ctrl-c"||exit 1 +GITSYSFILE="$SCDIR/../git-system-repos" + +echo -n "Fetching system git stuff" +( + true>"$GITSYSFILE";[ "$?" -ne 0 ]&&echo "...failed."&&exit 1||true + for i in $(find /usr/src -type d -name ".git"|sed 's|/[^/]\+$||g');do echo -n ".";echo "$i" >> "$GITSYSFILE";cd "$i";CDRETVAL=$?;git remote show origin 2>/dev/null|grep Fetch\ URL >> "$GITSYSFILE";[ "$CDRETVAL" -eq 0 ]&&cd - >/dev/null 2>&1;done +) + +[ "$?" -ne 0 ]&&echo "failed."||echo "done." diff --git a/documentation/aux/kvm-inventory b/documentation/aux/kvm-inventory new file mode 100755 index 0000000..c739514 --- /dev/null +++ b/documentation/aux/kvm-inventory @@ -0,0 +1,18 @@ +#!/bin/bash + +SCDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +source "$SCDIR/ctrl-c"||exit 1 +ODETFIL="$SCDIR/../kvm_overview" +ODETDIR="$SCDIR/../kvm-details" + +echo -n "Fetching KVM config" +( + echo -n ".";>"$ODETFIL";[ "$?" -ne 0 ]&&echo "failed."&&exit 1||true + echo -n ".";virsh list --all --title>>"$ODETFIL" 2>/dev/null;[ "$?" -ne 0 ]&&exit 1||true + echo -n ".";echo "" >> "$ODETFIL";virsh net-list --all>>"$ODETFIL" 2>/dev/null;[ "$?" -ne 0 ]&&exit 1||true + echo -n ".";echo "" >> "$ODETFIL";virsh pool-list --all --details>>"$ODETFIL" 2>/dev/null;[ "$?" -ne 0 ]&&exit 1||true + echo -n ".";for i in $(virsh list --all --name);do virsh dumpxml "$i">"$ODETDIR"/domain-"$i".xml||break;done;[ "$?" -ne 0 ]&&exit 1||true + echo -n ".";for i in $(virsh net-list --all --name);do virsh net-dumpxml "$i">"$ODETDIR"/net-"$i".xml||break;done;[ "$?" -ne 0 ]&&exit 1||true + echo -n ".";for i in $(virsh pool-list --all --name);do virsh pool-dumpxml "$i">"$ODETDIR"/pool-"$i".xml||break;done;[ "$?" -ne 0 ]&&exit 1||true +) +[ "$?" -ne 0 ]&&echo "failed."||echo "done." diff --git a/documentation/blockdevices b/documentation/blockdevices new file mode 100644 index 0000000..96278b6 --- /dev/null +++ b/documentation/blockdevices @@ -0,0 +1,41 @@ +NAME SIZE OWNER GROUP MODE FSTYPE MIN-IO MOUNTPOINT +sda 477G root disk brw-rw---- 4096 +|-sda1 360M root disk brw-rw---- vfat 4096 /boot/efi +|-sda2 128M root disk brw-rw---- 4096 +|-sda3 4G root disk brw-rw---- ext4 4096 /boot +|-sda4 200G root disk brw-rw---- crypto_LUKS 4096 +| `-luks-<uuid> 200G root disk brw-rw---- LVM2_member 4096 +| |-system-root 4G root disk brw-rw---- ext4 4096 / +| |-system-swap 8G root disk brw-rw---- swap 4096 [SWAP] +| |-system-usr 80G root disk brw-rw---- ext4 4096 /usr +| |-system-var 60G root disk brw-rw---- ext4 4096 /var +| |-system-tmp 10G root disk brw-rw---- ext4 4096 /tmp +| |-system-home 20G root disk brw-rw---- ext4 4096 /home +| `-system-varlog 4G root disk brw-rw---- ext4 4096 /var/log +|-sda5 251.2G root disk brw-rw---- crypto_LUKS 4096 +| `-libvirt 251.2G root disk brw-rw---- LVM2_member 4096 +| |-libvirt-jango105 100G root disk brw-rw---- 4096 +| |-libvirt-debian--boot 512M root disk brw-rw---- 4096 +| |-libvirt-debian--root 8.5G root disk brw-rw---- LVM2_member 4096 +| |-libvirt-arch--boot 512M root disk brw-rw---- 4096 +| |-libvirt-arch--sys 19G root disk brw-rw---- LVM2_member 4096 +| |-libvirt-suse--boot 512M root disk brw-rw---- 4096 +| |-libvirt-suse--root 9G root disk brw-rw---- LVM2_member 4096 +| |-libvirt-centoscl0--boot 512M root disk brw-rw---- 4096 +| |-libvirt-centoscl0--root 8G root disk brw-rw---- LVM2_member 4096 +| |-libvirt-centoscl1--boot 512M root disk brw-rw---- 4096 +| |-libvirt-centoscl1--root 8G root disk brw-rw---- LVM2_member 4096 +| |-libvirt-quorum--boot 512M root disk brw-rw---- 4096 +| |-libvirt-quorum--root 3.5G root disk brw-rw---- LVM2_member 4096 +| |-libvirt-quorum--iscsi 128M root disk brw-rw---- LVM2_member 4096 +| |-libvirt-quorum--appdisk1 4G root disk brw-rw---- LVM2_member 4096 +| |-libvirt-centoscl2--boot 512M root disk brw-rw---- 4096 +| |-libvirt-centoscl2--root 8G root disk brw-rw---- 4096 +| |-libvirt-firewall--boot 512M root root brw-rw---- 4096 +| |-libvirt-firewall--root 5.5G root root brw-rw---- LVM2_member 4096 +| |-libvirt-apt 10G root root brw-rw---- LVM2_member 4096 +| |-libvirt-indiana--root 8G root disk brw-rw---- 4096 +| `-libvirt-indiana--pl0 10G root disk brw-rw---- 4096 +|-sda6 980M root disk brw-rw---- ntfs 4096 /elitebook/Windows RE tools +|-sda7 18.3G root disk brw-rw---- ntfs 4096 /elitebook/Recovery Image +`-sda8 2G root disk brw-rw---- vfat 4096 /elitebook/HP_TOOLS diff --git a/documentation/git-system-repos b/documentation/git-system-repos new file mode 100644 index 0000000..3faa55c --- /dev/null +++ b/documentation/git-system-repos @@ -0,0 +1,64 @@ +/usr/src/desktop/plymouth + Fetch URL: git://anongit.freedesktop.org/plymouth +/usr/src/desktop/i3/i3-gaps + Fetch URL: https://github.com/Airblader/i3.git +/usr/src/desktop/i3/display-visor + Fetch URL: https://github.com/beanaroo/display-visor.git +/usr/src/desktop/gnome-twitch/git + Fetch URL: https://github.com/vinszent/gnome-twitch +/usr/src/desktop/fonts/Hack + Fetch URL: https://github.com/source-foundry/Hack.git +/usr/src/desktop/openxenmanager + Fetch URL: https://github.com/OpenXenManager/openxenmanager +/usr/src/desktop/riot.im/riot-web/git + Fetch URL: https://github.com/vector-im/riot-web.git +/usr/src/desktop/Nagstamon + Fetch URL: https://github.com/HenriWahl/Nagstamon.git +/usr/src/desktop/openfortigui/git + Fetch URL: https://github.com/theinvisible/openfortigui +/usr/src/desktop/keepass/plugins/keepasshttp + Fetch URL: https://github.com/pfn/keepasshttp.git +/usr/src/sec/krackattacks-scripts + Fetch URL: https://github.com/vanhoefm/krackattacks-scripts +/usr/src/web/apaxy/git + Fetch URL: https://github.com/oupala/apaxy +/usr/src/kvm/kvm-guest-drivers-windows + Fetch URL: https://github.com/virtio-win/kvm-guest-drivers-windows.git +/usr/src/cli/vim/landscape.vim + Fetch URL: https://github.com/itchyny/landscape.vim.git +/usr/src/cli/vim/indentLine + Fetch URL: https://github.com/Yggdroot/indentLine.git +/usr/src/cli/vim/vim-colors-solarized + Fetch URL: https://github.com/altercation/vim-colors-solarized.git +/usr/src/cli/vim/vim-indent-guides + Fetch URL: https://github.com/nathanaelkane/vim-indent-guides.git +/usr/src/cli/vim/vim-colorschemes + Fetch URL: https://github.com/flazz/vim-colorschemes.git +/usr/src/cli/telnet-password-honeypot + Fetch URL: https://git.zx2c4.com/telnet-password-honeypot +/usr/src/cli/gtop + Fetch URL: https://github.com/aksakalli/gtop.git +/usr/src/cli/taskwarrior/tasknc + Fetch URL: https://github.com/lharding/tasknc.git +/usr/src/cli/taskwarrior/functional/taskserver + Fetch URL: https://github.com/GothenburgBitFactory/taskserver.git +/usr/src/cli/taskwarrior/taskwarrior-time-tracking-hook + Fetch URL: https://github.com/kostajh/taskwarrior-time-tracking-hook.git +/usr/src/cli/taskwarrior/not_functional/task2dot + Fetch URL: https://github.com/garykl/task2dot.git +/usr/src/cli/weechat/matrix-torhve/git + Fetch URL: https://github.com/torhve/weechat-matrix-protocol-script.git +/usr/src/cli/pyphoon/git + Fetch URL: https://github.com/chubin/pyphoon.git +/usr/src/cli/cheat.sh + Fetch URL: https://github.com/chubin/cheat.sh.git +/usr/src/cli/wttr.in/git + Fetch URL: https://github.com/chubin/wttr.in.git +/usr/src/cli/password-store/pass-import + Fetch URL: https://github.com/roddhjav/pass-import.git +/usr/src/cli/password-store/git + Fetch URL: https://git.zx2c4.com/password-store/ +/usr/src/cli/tldr + Fetch URL: https://github.com/tldr-pages/tldr.git +/usr/src/drivers/displaylink-rpm/git + Fetch URL: https://github.com/displaylink-rpm/displaylink-rpm.git diff --git a/documentation/kvm-details/domain-arch.xml b/documentation/kvm-details/domain-arch.xml new file mode 100644 index 0000000..f38103e --- /dev/null +++ b/documentation/kvm-details/domain-arch.xml @@ -0,0 +1,126 @@ +<domain type='kvm'> + <name>arch</name> + <uuid>95ffbb34-b4b9-4287-9de7-d84dbb9ca650</uuid> + <title>triskel05</title> + <description>Arch</description> + <memory unit='KiB'>1572864</memory> + <currentMemory unit='KiB'>1572864</currentMemory> + <vcpu placement='static'>2</vcpu> + <os> + <type arch='x86_64' machine='pc-i440fx-2.10'>hvm</type> + <loader readonly='yes' type='pflash'>/usr/share/edk2/ovmf/OVMF_CODE.fd</loader> + <nvram>/var/lib/libvirt/qemu/nvram/arch_VARS.fd</nvram> + <bootmenu enable='no'/> + </os> + <features> + <acpi/> + <apic/> + <vmport state='off'/> + </features> + <cpu mode='custom' match='exact' check='partial'> + <model fallback='allow'>Broadwell-noTSX</model> + </cpu> + <clock offset='utc'> + <timer name='rtc' tickpolicy='catchup'/> + <timer name='pit' tickpolicy='delay'/> + <timer name='hpet' present='no'/> + </clock> + <on_poweroff>destroy</on_poweroff> + <on_reboot>restart</on_reboot> + <on_crash>destroy</on_crash> + <pm> + <suspend-to-mem enabled='no'/> + <suspend-to-disk enabled='no'/> + </pm> + <devices> + <emulator>/usr/bin/qemu-kvm</emulator> + <disk type='block' device='disk'> + <driver name='qemu' type='raw' cache='none' io='native'/> + <source dev='/dev/libvirt/arch-sys'/> + <target dev='vda' bus='virtio'/> + <boot order='3'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x0'/> + </disk> + <disk type='block' device='disk'> + <driver name='qemu' type='raw' cache='none' io='native'/> + <source dev='/dev/libvirt/arch-boot'/> + <target dev='vdb' bus='virtio'/> + <boot order='2'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x0a' function='0x0'/> + </disk> + <disk type='file' device='cdrom'> + <driver name='qemu' type='raw'/> + <target dev='sda' bus='sata'/> + <readonly/> + <boot order='1'/> + <address type='drive' controller='0' bus='0' target='0' unit='0'/> + </disk> + <controller type='usb' index='0' model='ich9-ehci1'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x7'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci1'> + <master startport='0'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0' multifunction='on'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci2'> + <master startport='2'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x1'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci3'> + <master startport='4'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x2'/> + </controller> + <controller type='pci' index='0' model='pci-root'/> + <controller type='virtio-serial' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x0'/> + </controller> + <controller type='sata' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x09' function='0x0'/> + </controller> + <interface type='network'> + <mac address='de:ad:be:ef:c0:de'/> + <source network='sosaria05'/> + <model type='virtio'/> + <boot order='4'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/> + </interface> + <serial type='pty'> + <target type='isa-serial' port='0'> + <model name='isa-serial'/> + </target> + </serial> + <console type='pty'> + <target type='serial' port='0'/> + </console> + <channel type='spicevmc'> + <target type='virtio' name='com.redhat.spice.0'/> + <address type='virtio-serial' controller='0' bus='0' port='1'/> + </channel> + <input type='tablet' bus='usb'> + <address type='usb' bus='0' port='1'/> + </input> + <input type='mouse' bus='ps2'/> + <input type='keyboard' bus='ps2'/> + <graphics type='spice' autoport='yes'> + <listen type='address'/> + <image compression='off'/> + </graphics> + <sound model='ich6'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/> + </sound> + <video> + <model type='qxl' ram='65536' vram='65536' vgamem='16384' heads='1' primary='yes'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/> + </video> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='2'/> + </redirdev> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='3'/> + </redirdev> + <memballoon model='virtio'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x08' function='0x0'/> + </memballoon> + </devices> +</domain> + diff --git a/documentation/kvm-details/domain-basfperl.xml b/documentation/kvm-details/domain-basfperl.xml new file mode 100644 index 0000000..c2cbc28 --- /dev/null +++ b/documentation/kvm-details/domain-basfperl.xml @@ -0,0 +1,106 @@ +<domain type='kvm'> + <name>basfperl</name> + <uuid>bc3a89d2-1f83-4691-84ab-7f22c5887cc6</uuid> + <title>mezouli05</title> + <description>CentOS 7</description> + <memory unit='KiB'>1048576</memory> + <currentMemory unit='KiB'>1048576</currentMemory> + <vcpu placement='static'>1</vcpu> + <os> + <type arch='x86_64' machine='pc-i440fx-2.10'>hvm</type> + <loader readonly='yes' type='pflash'>/usr/share/edk2/ovmf/OVMF_CODE.fd</loader> + <nvram>/var/lib/libvirt/qemu/nvram/basfperl_VARS.fd</nvram> + <bootmenu enable='yes'/> + </os> + <features> + <acpi/> + <apic/> + <vmport state='off'/> + </features> + <cpu mode='custom' match='exact' check='partial'> + <model fallback='allow'>Broadwell-noTSX</model> + </cpu> + <clock offset='utc'> + <timer name='rtc' tickpolicy='catchup'/> + <timer name='pit' tickpolicy='delay'/> + <timer name='hpet' present='no'/> + </clock> + <on_poweroff>destroy</on_poweroff> + <on_reboot>restart</on_reboot> + <on_crash>destroy</on_crash> + <pm> + <suspend-to-mem enabled='no'/> + <suspend-to-disk enabled='no'/> + </pm> + <devices> + <emulator>/usr/bin/qemu-kvm</emulator> + <controller type='usb' index='0' model='ich9-ehci1'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x7'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci1'> + <master startport='0'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0' multifunction='on'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci2'> + <master startport='2'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x1'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci3'> + <master startport='4'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x2'/> + </controller> + <controller type='pci' index='0' model='pci-root'/> + <controller type='virtio-serial' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x0'/> + </controller> + <interface type='network'> + <mac address='52:54:00:4d:5d:c2'/> + <source network='sosaria05'/> + <model type='virtio'/> + <boot order='2'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/> + </interface> + <serial type='pty'> + <target type='isa-serial' port='0'> + <model name='isa-serial'/> + </target> + </serial> + <console type='pty'> + <target type='serial' port='0'/> + </console> + <channel type='unix'> + <target type='virtio' name='org.qemu.guest_agent.0'/> + <address type='virtio-serial' controller='0' bus='0' port='1'/> + </channel> + <channel type='spicevmc'> + <target type='virtio' name='com.redhat.spice.0'/> + <address type='virtio-serial' controller='0' bus='0' port='2'/> + </channel> + <input type='tablet' bus='usb'> + <address type='usb' bus='0' port='1'/> + </input> + <input type='mouse' bus='ps2'/> + <input type='keyboard' bus='ps2'/> + <graphics type='spice' autoport='yes'> + <listen type='address'/> + <image compression='off'/> + </graphics> + <sound model='ich6'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/> + </sound> + <video> + <model type='qxl' ram='65536' vram='65536' vgamem='16384' heads='1' primary='yes'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/> + </video> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='2'/> + </redirdev> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='3'/> + </redirdev> + <memballoon model='virtio'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x08' function='0x0'/> + </memballoon> + </devices> +</domain> + diff --git a/documentation/kvm-details/domain-centoscl0.xml b/documentation/kvm-details/domain-centoscl0.xml new file mode 100644 index 0000000..340457a --- /dev/null +++ b/documentation/kvm-details/domain-centoscl0.xml @@ -0,0 +1,135 @@ +<domain type='kvm'> + <name>centoscl0</name> + <uuid>b2f2e1ac-de6f-447f-8a75-6131e58edb76</uuid> + <title>muromachi50</title> + <description>CentOS 7</description> + <memory unit='KiB'>1048576</memory> + <currentMemory unit='KiB'>1048576</currentMemory> + <vcpu placement='static'>1</vcpu> + <os> + <type arch='x86_64' machine='pc-i440fx-2.10'>hvm</type> + <loader readonly='yes' type='pflash'>/usr/share/edk2/ovmf/OVMF_CODE.fd</loader> + <nvram>/var/lib/libvirt/qemu/nvram/centoscl0_VARS.fd</nvram> + <boot dev='hd'/> + </os> + <features> + <acpi/> + <apic/> + <vmport state='off'/> + </features> + <cpu mode='custom' match='exact' check='partial'> + <model fallback='allow'>Broadwell-noTSX</model> + </cpu> + <clock offset='utc'> + <timer name='rtc' tickpolicy='catchup'/> + <timer name='pit' tickpolicy='delay'/> + <timer name='hpet' present='no'/> + </clock> + <on_poweroff>destroy</on_poweroff> + <on_reboot>restart</on_reboot> + <on_crash>destroy</on_crash> + <pm> + <suspend-to-mem enabled='no'/> + <suspend-to-disk enabled='no'/> + </pm> + <devices> + <emulator>/usr/bin/qemu-kvm</emulator> + <disk type='block' device='disk'> + <driver name='qemu' type='raw' cache='none' io='native'/> + <source dev='/dev/libvirt/centoscl0-boot'/> + <target dev='vda' bus='virtio'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x0'/> + </disk> + <disk type='block' device='disk'> + <driver name='qemu' type='raw' cache='none' io='native'/> + <source dev='/dev/libvirt/centoscl0-root'/> + <target dev='vdb' bus='virtio'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x08' function='0x0'/> + </disk> + <disk type='file' device='cdrom'> + <driver name='qemu' type='raw'/> + <target dev='hda' bus='ide'/> + <readonly/> + <address type='drive' controller='0' bus='0' target='0' unit='0'/> + </disk> + <controller type='usb' index='0' model='ich9-ehci1'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x7'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci1'> + <master startport='0'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0' multifunction='on'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci2'> + <master startport='2'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x1'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci3'> + <master startport='4'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x2'/> + </controller> + <controller type='pci' index='0' model='pci-root'/> + <controller type='ide' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/> + </controller> + <controller type='virtio-serial' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x0'/> + </controller> + <interface type='network'> + <mac address='52:54:00:2b:5a:86'/> + <source network='sosaria05'/> + <model type='e1000'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/> + </interface> + <interface type='network'> + <mac address='52:54:00:63:00:85'/> + <source network='san-cluster'/> + <model type='e1000'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x0b' function='0x0'/> + </interface> + <serial type='pty'> + <target type='isa-serial' port='0'> + <model name='isa-serial'/> + </target> + </serial> + <console type='pty'> + <target type='serial' port='0'/> + </console> + <channel type='unix'> + <target type='virtio' name='org.qemu.guest_agent.0'/> + <address type='virtio-serial' controller='0' bus='0' port='1'/> + </channel> + <channel type='spicevmc'> + <target type='virtio' name='com.redhat.spice.0'/> + <address type='virtio-serial' controller='0' bus='0' port='2'/> + </channel> + <input type='tablet' bus='usb'> + <address type='usb' bus='0' port='1'/> + </input> + <input type='mouse' bus='ps2'/> + <input type='keyboard' bus='ps2'/> + <input type='keyboard' bus='virtio'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x0a' function='0x0'/> + </input> + <graphics type='spice' autoport='yes'> + <listen type='address'/> + <image compression='off'/> + </graphics> + <sound model='ich6'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/> + </sound> + <video> + <model type='qxl' ram='65536' vram='65536' vgamem='16384' heads='1' primary='yes'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/> + </video> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='2'/> + </redirdev> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='3'/> + </redirdev> + <memballoon model='virtio'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x09' function='0x0'/> + </memballoon> + </devices> +</domain> + diff --git a/documentation/kvm-details/domain-centoscl1.xml b/documentation/kvm-details/domain-centoscl1.xml new file mode 100644 index 0000000..db987f0 --- /dev/null +++ b/documentation/kvm-details/domain-centoscl1.xml @@ -0,0 +1,137 @@ +<domain type='kvm'> + <name>centoscl1</name> + <uuid>eab083a7-a2bd-42bb-a679-8f7588fc0fde</uuid> + <title>muromachi51</title> + <description>CentOS 7</description> + <memory unit='KiB'>1048576</memory> + <currentMemory unit='KiB'>1048576</currentMemory> + <vcpu placement='static'>1</vcpu> + <os> + <type arch='x86_64' machine='pc-i440fx-2.10'>hvm</type> + <loader readonly='yes' type='pflash'>/usr/share/edk2/ovmf/OVMF_CODE.fd</loader> + <nvram>/var/lib/libvirt/qemu/nvram/centoscl1_VARS.fd</nvram> + <boot dev='hd'/> + </os> + <features> + <acpi/> + <apic/> + <vmport state='off'/> + </features> + <cpu mode='custom' match='exact' check='partial'> + <model fallback='allow'>Broadwell-noTSX</model> + </cpu> + <clock offset='utc'> + <timer name='rtc' tickpolicy='catchup'/> + <timer name='pit' tickpolicy='delay'/> + <timer name='hpet' present='no'/> + </clock> + <on_poweroff>destroy</on_poweroff> + <on_reboot>restart</on_reboot> + <on_crash>destroy</on_crash> + <pm> + <suspend-to-mem enabled='no'/> + <suspend-to-disk enabled='no'/> + </pm> + <devices> + <emulator>/usr/bin/qemu-kvm</emulator> + <disk type='block' device='disk'> + <driver name='qemu' type='raw' cache='none' io='native'/> + <source dev='/dev/libvirt/centoscl1-boot'/> + <target dev='vda' bus='virtio'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x0'/> + </disk> + <disk type='block' device='disk'> + <driver name='qemu' type='raw' cache='none' io='native'/> + <source dev='/dev/libvirt/centoscl1-root'/> + <target dev='vdb' bus='virtio'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x08' function='0x0'/> + </disk> + <disk type='file' device='cdrom'> + <driver name='qemu' type='raw'/> + <target dev='hda' bus='ide'/> + <readonly/> + <address type='drive' controller='0' bus='0' target='0' unit='0'/> + </disk> + <controller type='usb' index='0' model='ich9-ehci1'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x7'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci1'> + <master startport='0'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0' multifunction='on'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci2'> + <master startport='2'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x1'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci3'> + <master startport='4'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x2'/> + </controller> + <controller type='pci' index='0' model='pci-root'/> + <controller type='ide' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/> + </controller> + <controller type='virtio-serial' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x0'/> + </controller> + <interface type='network'> + <mac address='52:54:00:2b:5a:87'/> + <source network='sosaria05'/> + <model type='virtio'/> + <driver name='vhost' queues='16'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/> + </interface> + <interface type='network'> + <mac address='52:54:00:fc:c5:8c'/> + <source network='san-cluster'/> + <model type='virtio'/> + <driver name='vhost' queues='16'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x0b' function='0x0'/> + </interface> + <serial type='pty'> + <target type='isa-serial' port='0'> + <model name='isa-serial'/> + </target> + </serial> + <console type='pty'> + <target type='serial' port='0'/> + </console> + <channel type='unix'> + <target type='virtio' name='org.qemu.guest_agent.0'/> + <address type='virtio-serial' controller='0' bus='0' port='1'/> + </channel> + <channel type='spicevmc'> + <target type='virtio' name='com.redhat.spice.0'/> + <address type='virtio-serial' controller='0' bus='0' port='2'/> + </channel> + <input type='tablet' bus='usb'> + <address type='usb' bus='0' port='1'/> + </input> + <input type='mouse' bus='ps2'/> + <input type='keyboard' bus='ps2'/> + <input type='keyboard' bus='virtio'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x0a' function='0x0'/> + </input> + <graphics type='spice' autoport='yes'> + <listen type='address'/> + <image compression='off'/> + </graphics> + <sound model='ich6'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/> + </sound> + <video> + <model type='qxl' ram='65536' vram='65536' vgamem='16384' heads='1' primary='yes'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/> + </video> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='2'/> + </redirdev> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='3'/> + </redirdev> + <memballoon model='virtio'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x09' function='0x0'/> + </memballoon> + </devices> +</domain> + diff --git a/documentation/kvm-details/domain-centoscl2.xml b/documentation/kvm-details/domain-centoscl2.xml new file mode 100644 index 0000000..6cacaef --- /dev/null +++ b/documentation/kvm-details/domain-centoscl2.xml @@ -0,0 +1,134 @@ +<domain type='kvm'> + <name>centoscl2</name> + <uuid>1f1a97fa-5541-4979-854d-e5d3fa08094a</uuid> + <title>muromachi52</title> + <description>CentOS 7</description> + <memory unit='KiB'>1048576</memory> + <currentMemory unit='KiB'>1048576</currentMemory> + <vcpu placement='static'>1</vcpu> + <os> + <type arch='x86_64' machine='pc-i440fx-2.10'>hvm</type> + <loader readonly='yes' type='pflash'>/usr/share/edk2/ovmf/OVMF_CODE.fd</loader> + <nvram>/var/lib/libvirt/qemu/nvram/centoscl2_VARS.fd</nvram> + <boot dev='hd'/> + </os> + <features> + <acpi/> + <apic/> + <vmport state='off'/> + </features> + <cpu mode='custom' match='exact' check='partial'> + <model fallback='allow'>Broadwell-noTSX</model> + </cpu> + <clock offset='utc'> + <timer name='rtc' tickpolicy='catchup'/> + <timer name='pit' tickpolicy='delay'/> + <timer name='hpet' present='no'/> + </clock> + <on_poweroff>destroy</on_poweroff> + <on_reboot>restart</on_reboot> + <on_crash>destroy</on_crash> + <pm> + <suspend-to-mem enabled='no'/> + <suspend-to-disk enabled='no'/> + </pm> + <devices> + <emulator>/usr/bin/qemu-kvm</emulator> + <disk type='block' device='disk'> + <driver name='qemu' type='raw' cache='none' io='native'/> + <source dev='/dev/libvirt/centoscl2-boot'/> + <target dev='vda' bus='virtio'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x08' function='0x0'/> + </disk> + <disk type='block' device='disk'> + <driver name='qemu' type='raw' cache='none' io='native'/> + <source dev='/dev/libvirt/centoscl2-root'/> + <target dev='vdb' bus='virtio'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x09' function='0x0'/> + </disk> + <disk type='file' device='cdrom'> + <driver name='qemu' type='raw'/> + <target dev='hda' bus='ide'/> + <readonly/> + <address type='drive' controller='0' bus='0' target='0' unit='0'/> + </disk> + <controller type='usb' index='0' model='ich9-ehci1'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x7'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci1'> + <master startport='0'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x0' multifunction='on'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci2'> + <master startport='2'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x1'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci3'> + <master startport='4'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x2'/> + </controller> + <controller type='pci' index='0' model='pci-root'/> + <controller type='ide' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/> + </controller> + <controller type='virtio-serial' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x0'/> + </controller> + <interface type='network'> + <mac address='52:54:00:38:a1:d7'/> + <source network='sosaria05'/> + <model type='virtio'/> + <driver name='vhost' queues='16'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/> + </interface> + <interface type='network'> + <mac address='52:54:00:57:6c:31'/> + <source network='san-cluster'/> + <model type='virtio'/> + <driver name='vhost' queues='16'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/> + </interface> + <serial type='pty'> + <target type='isa-serial' port='0'> + <model name='isa-serial'/> + </target> + </serial> + <console type='pty'> + <target type='serial' port='0'/> + </console> + <channel type='unix'> + <target type='virtio' name='org.qemu.guest_agent.0'/> + <address type='virtio-serial' controller='0' bus='0' port='1'/> + </channel> + <channel type='spicevmc'> + <target type='virtio' name='com.redhat.spice.0'/> + <address type='virtio-serial' controller='0' bus='0' port='2'/> + </channel> + <input type='tablet' bus='usb'> + <address type='usb' bus='0' port='1'/> + </input> + <input type='mouse' bus='ps2'/> + <input type='keyboard' bus='ps2'/> + <graphics type='spice' autoport='yes'> + <listen type='address'/> + <image compression='off'/> + </graphics> + <sound model='ich6'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0'/> + </sound> + <video> + <model type='qxl' ram='65536' vram='65536' vgamem='16384' heads='1' primary='yes'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/> + </video> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='2'/> + </redirdev> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='3'/> + </redirdev> + <memballoon model='virtio'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x0a' function='0x0'/> + </memballoon> + </devices> +</domain> + diff --git a/documentation/kvm-details/domain-debian.xml b/documentation/kvm-details/domain-debian.xml new file mode 100644 index 0000000..f2e2fc3 --- /dev/null +++ b/documentation/kvm-details/domain-debian.xml @@ -0,0 +1,140 @@ +<domain type='kvm'> + <name>debian</name> + <uuid>0cc1cc1f-52ba-4adf-96b7-59c781101cf8</uuid> + <title>balinorgel05</title> + <description>Debian 9</description> + <memory unit='KiB'>1048576</memory> + <currentMemory unit='KiB'>1048576</currentMemory> + <vcpu placement='static'>1</vcpu> + <os> + <type arch='x86_64' machine='pc-i440fx-2.10'>hvm</type> + <loader readonly='yes' type='pflash'>/usr/share/edk2/ovmf/OVMF_CODE.fd</loader> + <nvram>/var/lib/libvirt/qemu/nvram/debian_VARS.fd</nvram> + <bootmenu enable='yes'/> + </os> + <features> + <acpi/> + <apic/> + <vmport state='off'/> + </features> + <cpu mode='custom' match='exact' check='partial'> + <model fallback='allow'>Broadwell-noTSX</model> + </cpu> + <clock offset='utc'> + <timer name='rtc' tickpolicy='catchup'/> + <timer name='pit' tickpolicy='delay'/> + <timer name='hpet' present='no'/> + </clock> + <on_poweroff>destroy</on_poweroff> + <on_reboot>restart</on_reboot> + <on_crash>destroy</on_crash> + <pm> + <suspend-to-mem enabled='no'/> + <suspend-to-disk enabled='no'/> + </pm> + <devices> + <emulator>/usr/bin/qemu-kvm</emulator> + <disk type='block' device='disk'> + <driver name='qemu' type='raw' cache='none' io='native'/> + <source dev='/dev/libvirt/debian-root'/> + <target dev='vda' bus='virtio'/> + <boot order='2'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x0'/> + </disk> + <disk type='block' device='disk'> + <driver name='qemu' type='raw' cache='none' io='native'/> + <source dev='/dev/libvirt/debian-boot'/> + <target dev='vdb' bus='virtio'/> + <boot order='1'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x08' function='0x0'/> + </disk> + <disk type='file' device='cdrom'> + <driver name='qemu' type='raw'/> + <target dev='sda' bus='sata'/> + <readonly/> + <boot order='3'/> + <address type='drive' controller='0' bus='0' target='0' unit='0'/> + </disk> + <controller type='usb' index='0' model='ich9-ehci1'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x7'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci1'> + <master startport='0'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0' multifunction='on'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci2'> + <master startport='2'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x1'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci3'> + <master startport='4'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x2'/> + </controller> + <controller type='pci' index='0' model='pci-root'/> + <controller type='virtio-serial' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x0'/> + </controller> + <controller type='sata' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x0b' function='0x0'/> + </controller> + <interface type='network'> + <mac address='de:ad:be:ef:13:49'/> + <source network='sosaria05'/> + <model type='virtio'/> + <boot order='4'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/> + </interface> + <interface type='network'> + <mac address='de:ad:be:ef:13:50'/> + <source network='san-cluster'/> + <model type='virtio'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x0c' function='0x0'/> + </interface> + <serial type='pty'> + <target type='isa-serial' port='0'> + <model name='isa-serial'/> + </target> + </serial> + <console type='pty'> + <target type='serial' port='0'/> + </console> + <channel type='unix'> + <target type='virtio' name='org.qemu.guest_agent.0'/> + <address type='virtio-serial' controller='0' bus='0' port='1'/> + </channel> + <channel type='spicevmc'> + <target type='virtio' name='com.redhat.spice.0'/> + <address type='virtio-serial' controller='0' bus='0' port='2'/> + </channel> + <input type='tablet' bus='usb'> + <address type='usb' bus='0' port='1'/> + </input> + <input type='mouse' bus='ps2'/> + <input type='keyboard' bus='ps2'/> + <graphics type='spice' autoport='yes'> + <listen type='address'/> + <image compression='off'/> + </graphics> + <sound model='ich6'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/> + </sound> + <video> + <model type='qxl' ram='65536' vram='65536' vgamem='16384' heads='1' primary='yes'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/> + </video> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='2'/> + </redirdev> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='3'/> + </redirdev> + <memballoon model='virtio'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x09' function='0x0'/> + </memballoon> + <rng model='virtio'> + <backend model='random'>/dev/urandom</backend> + <address type='pci' domain='0x0000' bus='0x00' slot='0x0a' function='0x0'/> + </rng> + </devices> +</domain> + diff --git a/documentation/kvm-details/domain-firewall.xml b/documentation/kvm-details/domain-firewall.xml new file mode 100644 index 0000000..598b3d5 --- /dev/null +++ b/documentation/kvm-details/domain-firewall.xml @@ -0,0 +1,162 @@ +<domain type='kvm'> + <name>firewall</name> + <uuid>16b6ed39-fbd3-461b-9ffa-a3bcba610a56</uuid> + <title>cthulhu05</title> + <description>Debian 9</description> + <memory unit='KiB'>786432</memory> + <currentMemory unit='KiB'>786432</currentMemory> + <vcpu placement='static'>1</vcpu> + <resource> + <partition>/machine</partition> + </resource> + <os> + <type arch='x86_64' machine='pc-i440fx-2.10'>hvm</type> + <loader readonly='yes' type='pflash'>/usr/share/edk2/ovmf/OVMF_CODE.fd</loader> + <nvram>/var/lib/libvirt/qemu/nvram/firewall_VARS.fd</nvram> + <boot dev='hd'/> + </os> + <features> + <acpi/> + <apic/> + <vmport state='off'/> + </features> + <cpu mode='custom' match='exact' check='full'> + <model fallback='forbid'>Broadwell-noTSX</model> + <feature policy='require' name='vme'/> + <feature policy='require' name='f16c'/> + <feature policy='require' name='rdrand'/> + <feature policy='require' name='hypervisor'/> + <feature policy='require' name='arat'/> + <feature policy='require' name='xsaveopt'/> + <feature policy='require' name='abm'/> + </cpu> + <clock offset='utc'> + <timer name='rtc' tickpolicy='catchup'/> + <timer name='pit' tickpolicy='delay'/> + <timer name='hpet' present='no'/> + </clock> + <on_poweroff>destroy</on_poweroff> + <on_reboot>restart</on_reboot> + <on_crash>destroy</on_crash> + <pm> + <suspend-to-mem enabled='no'/> + <suspend-to-disk enabled='no'/> + </pm> + <devices> + <emulator>/usr/bin/qemu-kvm</emulator> + <disk type='block' device='disk'> + <driver name='qemu' type='raw' cache='none' io='native'/> + <source dev='/dev/libvirt/firewall-boot'/> + <target dev='vda' bus='virtio'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x08' function='0x0'/> + </disk> + <disk type='block' device='disk'> + <driver name='qemu' type='raw' cache='none' io='native'/> + <source dev='/dev/libvirt/firewall-root'/> + <target dev='vdb' bus='virtio'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x09' function='0x0'/> + </disk> + <disk type='block' device='disk'> + <driver name='qemu' type='raw' cache='none' io='native'/> + <source dev='/dev/libvirt/apt'/> + <target dev='vdc' bus='virtio'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x0c' function='0x0'/> + </disk> + <disk type='file' device='cdrom'> + <driver name='qemu' type='raw'/> + <target dev='hda' bus='ide' tray='open'/> + <readonly/> + <address type='drive' controller='0' bus='0' target='0' unit='0'/> + </disk> + <controller type='usb' index='0' model='ich9-ehci1'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x7'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci1'> + <master startport='0'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x0' multifunction='on'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci2'> + <master startport='2'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x1'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci3'> + <master startport='4'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x2'/> + </controller> + <controller type='pci' index='0' model='pci-root'/> + <controller type='ide' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/> + </controller> + <controller type='virtio-serial' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x0'/> + </controller> + <interface type='network'> + <mac address='de:ad:be:ef:10:14'/> + <source network='sosaria05'/> + <model type='e1000'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/> + </interface> + <interface type='network'> + <mac address='de:ad:be:ef:07:92'/> + <source network='san-cluster'/> + <model type='e1000'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/> + </interface> + <interface type='bridge'> + <mac address='de:ad:be:ef:19:16'/> + <source bridge='br0'/> + <model type='rtl8139'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x0b' function='0x0'/> + </interface> + <interface type='network'> + <mac address='de:ad:be:ef:19:21'/> + <source network='hodenkobold'/> + <model type='rtl8139'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x0d' function='0x0'/> + </interface> + <serial type='pty'> + <target type='isa-serial' port='0'> + <model name='isa-serial'/> + </target> + </serial> + <console type='pty'> + <target type='serial' port='0'/> + </console> + <channel type='unix'> + <target type='virtio' name='org.qemu.guest_agent.0'/> + <address type='virtio-serial' controller='0' bus='0' port='1'/> + </channel> + <channel type='spicevmc'> + <target type='virtio' name='com.redhat.spice.0'/> + <address type='virtio-serial' controller='0' bus='0' port='2'/> + </channel> + <input type='tablet' bus='usb'> + <address type='usb' bus='0' port='1'/> + </input> + <input type='mouse' bus='ps2'/> + <input type='keyboard' bus='ps2'/> + <graphics type='spice' autoport='yes' listen='127.0.0.1'> + <listen type='address' address='127.0.0.1'/> + <image compression='off'/> + </graphics> + <sound model='ich6'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0'/> + </sound> + <video> + <model type='qxl' ram='65536' vram='65536' vgamem='16384' heads='1' primary='yes'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/> + </video> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='2'/> + </redirdev> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='3'/> + </redirdev> + <memballoon model='virtio'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x0a' function='0x0'/> + </memballoon> + </devices> + <seclabel type='dynamic' model='selinux' relabel='yes'/> + <seclabel type='dynamic' model='dac' relabel='yes'/> +</domain> + diff --git a/documentation/kvm-details/domain-guestfs-y4pl944s9lh5ows7.xml b/documentation/kvm-details/domain-guestfs-y4pl944s9lh5ows7.xml new file mode 100644 index 0000000..20eb137 --- /dev/null +++ b/documentation/kvm-details/domain-guestfs-y4pl944s9lh5ows7.xml @@ -0,0 +1,109 @@ +<domain type='kvm' id='35' xmlns:qemu='http://libvirt.org/schemas/domain/qemu/1.0'> + <name>guestfs-y4pl944s9lh5ows7</name> + <uuid>6494ba62-4fc7-4efa-b359-22c54b979ae7</uuid> + <memory unit='KiB'>512000</memory> + <currentMemory unit='KiB'>512000</currentMemory> + <vcpu placement='static'>1</vcpu> + <resource> + <partition>/machine</partition> + </resource> + <os> + <type arch='x86_64' machine='pc-i440fx-2.10'>hvm</type> + <kernel>/var/tmp/.guestfs-0/appliance.d/kernel</kernel> + <initrd>/var/tmp/.guestfs-0/appliance.d/initrd</initrd> + <cmdline>panic=1 console=ttyS0 edd=off udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=/dev/sdb selinux=0 quiet TERM=linux</cmdline> + <boot dev='hd'/> + </os> + <cpu mode='host-passthrough' check='none'/> + <clock offset='utc'> + <timer name='rtc' tickpolicy='catchup'/> + <timer name='pit' tickpolicy='delay'/> + <timer name='hpet' present='no'/> + </clock> + <on_poweroff>destroy</on_poweroff> + <on_reboot>destroy</on_reboot> + <on_crash>destroy</on_crash> + <devices> + <emulator>/usr/bin/qemu-kvm</emulator> + <disk type='file' device='disk'> + <driver name='qemu' type='qcow2' cache='unsafe'/> + <source file='/tmp/libguestfscBdQql/overlay1.qcow2'/> + <backingStore type='block' index='1'> + <format type='raw'/> + <source dev='/dev/dm-12'/> + <backingStore/> + </backingStore> + <target dev='sda' bus='scsi'/> + <alias name='scsi0-0-0-0'/> + <address type='drive' controller='0' bus='0' target='0' unit='0'/> + </disk> + <disk type='file' device='disk'> + <driver name='qemu' type='qcow2' cache='unsafe'/> + <source file='/tmp/libguestfscBdQql/overlay2.qcow2'/> + <backingStore type='file' index='1'> + <format type='raw'/> + <source file='/var/tmp/.guestfs-0/appliance.d/root'/> + <backingStore/> + </backingStore> + <target dev='sdb' bus='scsi'/> + <alias name='scsi0-0-1-0'/> + <address type='drive' controller='0' bus='0' target='1' unit='0'/> + </disk> + <controller type='scsi' index='0' model='virtio-scsi'> + <alias name='scsi0'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/> + </controller> + <controller type='usb' index='0' model='none'> + <alias name='usb'/> + </controller> + <controller type='pci' index='0' model='pci-root'> + <alias name='pci.0'/> + </controller> + <controller type='virtio-serial' index='0'> + <alias name='virtio-serial0'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/> + </controller> + <serial type='unix'> + <source mode='connect' path='/tmp/libguestfsHuB37M/console.sock'/> + <target port='0'/> + <alias name='serial0'/> + </serial> + <console type='unix'> + <source mode='connect' path='/tmp/libguestfsHuB37M/console.sock'/> + <target type='serial' port='0'/> + <alias name='serial0'/> + </console> + <channel type='unix'> + <source mode='connect' path='/tmp/libguestfsHuB37M/guestfsd.sock'/> + <target type='virtio' name='org.libguestfs.channel.0' state='connected'/> + <alias name='channel0'/> + <address type='virtio-serial' controller='0' bus='0' port='1'/> + </channel> + <input type='mouse' bus='ps2'> + <alias name='input0'/> + </input> + <input type='keyboard' bus='ps2'> + <alias name='input1'/> + </input> + <memballoon model='none'> + <alias name='balloon0'/> + </memballoon> + <rng model='virtio'> + <backend model='random'>/dev/urandom</backend> + <alias name='rng0'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/> + </rng> + </devices> + <seclabel type='dynamic' model='selinux' relabel='yes'> + <label>system_u:system_r:svirt_t:s0:c262,c431</label> + <imagelabel>system_u:object_r:svirt_image_t:s0:c262,c431</imagelabel> + </seclabel> + <seclabel type='dynamic' model='dac' relabel='yes'> + <label>+107:+107</label> + <imagelabel>+107:+107</imagelabel> + </seclabel> + <qemu:commandline> + <qemu:env name='TMPDIR' value='/var/tmp'/> + </qemu:commandline> +</domain> + diff --git a/documentation/kvm-details/domain-indiana.xml b/documentation/kvm-details/domain-indiana.xml new file mode 100644 index 0000000..26a76f9 --- /dev/null +++ b/documentation/kvm-details/domain-indiana.xml @@ -0,0 +1,126 @@ +<domain type='kvm'> + <name>indiana</name> + <uuid>142d5920-07ba-410d-af2c-a4b6347b66db</uuid> + <title>lughnasadh05</title> + <description>OpenSolaris - OpenIndiana 5.11</description> + <memory unit='KiB'>4194304</memory> + <currentMemory unit='KiB'>4194304</currentMemory> + <vcpu placement='static'>2</vcpu> + <os> + <type arch='x86_64' machine='pc-i440fx-2.11'>hvm</type> + </os> + <features> + <acpi/> + <apic/> + <vmport state='off'/> + </features> + <cpu mode='custom' match='exact' check='partial'> + <model fallback='allow'>Broadwell-noTSX-IBRS</model> + <feature policy='disable' name='x2apic'/> + </cpu> + <clock offset='localtime'> + <timer name='rtc' tickpolicy='catchup'/> + <timer name='pit' tickpolicy='delay'/> + <timer name='hpet' present='no'/> + </clock> + <on_poweroff>destroy</on_poweroff> + <on_reboot>restart</on_reboot> + <on_crash>destroy</on_crash> + <pm> + <suspend-to-mem enabled='no'/> + <suspend-to-disk enabled='no'/> + </pm> + <devices> + <emulator>/usr/bin/qemu-kvm</emulator> + <disk type='file' device='cdrom'> + <driver name='qemu' type='raw'/> + <target dev='hda' bus='ide'/> + <readonly/> + <boot order='1'/> + <address type='drive' controller='0' bus='0' target='0' unit='0'/> + </disk> + <disk type='block' device='disk'> + <driver name='qemu' type='raw' cache='none' io='native'/> + <source dev='/dev/libvirt/indiana-root'/> + <target dev='vda' bus='virtio'/> + <serial>0xBEEF</serial> + <boot order='2'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x08' function='0x0'/> + </disk> + <disk type='block' device='disk'> + <driver name='qemu' type='raw' cache='none' io='native'/> + <source dev='/dev/libvirt/indiana-pl0'/> + <target dev='vdb' bus='virtio'/> + <serial>0x1337</serial> + <address type='pci' domain='0x0000' bus='0x00' slot='0x0a' function='0x0'/> + </disk> + <controller type='usb' index='0' model='ich9-ehci1'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x7'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci1'> + <master startport='0'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0' multifunction='on'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci2'> + <master startport='2'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x1'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci3'> + <master startport='4'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x2'/> + </controller> + <controller type='pci' index='0' model='pci-root'/> + <controller type='virtio-serial' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x0'/> + </controller> + <controller type='sata' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x09' function='0x0'/> + </controller> + <controller type='ide' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/> + </controller> + <interface type='network'> + <mac address='1e:a7:be:ef:13:37'/> + <source network='sosaria05'/> + <model type='e1000'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/> + </interface> + <serial type='pty'> + <target type='isa-serial' port='0'> + <model name='isa-serial'/> + </target> + </serial> + <console type='pty'> + <target type='serial' port='0'/> + </console> + <channel type='spicevmc'> + <target type='virtio' name='com.redhat.spice.0'/> + <address type='virtio-serial' controller='0' bus='0' port='1'/> + </channel> + <input type='tablet' bus='usb'> + <address type='usb' bus='0' port='1'/> + </input> + <input type='mouse' bus='ps2'/> + <input type='keyboard' bus='ps2'/> + <graphics type='vnc' keymap='de'> + <listen type='none'/> + </graphics> + <sound model='ich6'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/> + </sound> + <video> + <model type='virtio' heads='1' primary='yes'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/> + </video> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='2'/> + </redirdev> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='3'/> + </redirdev> + <memballoon model='virtio'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x0'/> + </memballoon> + </devices> +</domain> + diff --git a/documentation/kvm-details/domain-iscsi.xml b/documentation/kvm-details/domain-iscsi.xml new file mode 100644 index 0000000..ea609cd --- /dev/null +++ b/documentation/kvm-details/domain-iscsi.xml @@ -0,0 +1,147 @@ +<domain type='kvm'> + <name>iscsi</name> + <uuid>14e2aa10-a66f-417a-86e6-964317c200ad</uuid> + <title>brehon05</title> + <description>CentOS 7</description> + <memory unit='KiB'>1048576</memory> + <currentMemory unit='KiB'>1048576</currentMemory> + <vcpu placement='static'>1</vcpu> + <os> + <type arch='x86_64' machine='pc-i440fx-2.10'>hvm</type> + <loader readonly='yes' type='pflash'>/usr/share/edk2/ovmf/OVMF_CODE.fd</loader> + <nvram>/var/lib/libvirt/qemu/nvram/iscsi_VARS.fd</nvram> + <boot dev='hd'/> + <boot dev='hd'/> + </os> + <features> + <acpi/> + <apic/> + <vmport state='off'/> + </features> + <cpu mode='custom' match='exact' check='partial'> + <model fallback='allow'>Broadwell-noTSX</model> + </cpu> + <clock offset='utc'> + <timer name='rtc' tickpolicy='catchup'/> + <timer name='pit' tickpolicy='delay'/> + <timer name='hpet' present='no'/> + </clock> + <on_poweroff>destroy</on_poweroff> + <on_reboot>restart</on_reboot> + <on_crash>destroy</on_crash> + <pm> + <suspend-to-mem enabled='no'/> + <suspend-to-disk enabled='no'/> + </pm> + <devices> + <emulator>/usr/bin/qemu-kvm</emulator> + <disk type='block' device='disk'> + <driver name='qemu' type='raw' cache='none' io='native'/> + <source dev='/dev/libvirt/quorum-boot'/> + <target dev='vda' bus='virtio'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x0'/> + </disk> + <disk type='block' device='disk'> + <driver name='qemu' type='raw' cache='none' io='native'/> + <source dev='/dev/libvirt/quorum-root'/> + <target dev='vdb' bus='virtio'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x08' function='0x0'/> + </disk> + <disk type='block' device='disk'> + <driver name='qemu' type='raw' cache='none' io='native'/> + <source dev='/dev/libvirt/quorum-iscsi'/> + <target dev='vdc' bus='virtio'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x0a' function='0x0'/> + </disk> + <disk type='block' device='disk'> + <driver name='qemu' type='raw' cache='none' io='native'/> + <source dev='/dev/libvirt/quorum-appdisk1'/> + <target dev='vdd' bus='virtio'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x0b' function='0x0'/> + </disk> + <disk type='file' device='cdrom'> + <driver name='qemu' type='raw'/> + <target dev='hda' bus='ide'/> + <readonly/> + <address type='drive' controller='0' bus='0' target='0' unit='0'/> + </disk> + <controller type='usb' index='0' model='ich9-ehci1'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x7'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci1'> + <master startport='0'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0' multifunction='on'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci2'> + <master startport='2'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x1'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci3'> + <master startport='4'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x2'/> + </controller> + <controller type='pci' index='0' model='pci-root'/> + <controller type='ide' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/> + </controller> + <controller type='virtio-serial' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x0'/> + </controller> + <interface type='network'> + <mac address='52:54:00:f5:d3:e0'/> + <source network='sosaria05'/> + <model type='virtio'/> + <driver name='vhost' queues='16'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/> + </interface> + <interface type='network'> + <mac address='52:54:00:5e:fe:eb'/> + <source network='san-cluster'/> + <model type='virtio'/> + <driver name='vhost' queues='16'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x0c' function='0x0'/> + </interface> + <serial type='pty'> + <target type='isa-serial' port='0'> + <model name='isa-serial'/> + </target> + </serial> + <console type='pty'> + <target type='serial' port='0'/> + </console> + <channel type='unix'> + <target type='virtio' name='org.qemu.guest_agent.0'/> + <address type='virtio-serial' controller='0' bus='0' port='1'/> + </channel> + <channel type='spicevmc'> + <target type='virtio' name='com.redhat.spice.0'/> + <address type='virtio-serial' controller='0' bus='0' port='2'/> + </channel> + <input type='tablet' bus='usb'> + <address type='usb' bus='0' port='1'/> + </input> + <input type='mouse' bus='ps2'/> + <input type='keyboard' bus='ps2'/> + <graphics type='spice' autoport='yes'> + <listen type='address'/> + <image compression='off'/> + </graphics> + <sound model='ich6'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/> + </sound> + <video> + <model type='qxl' ram='65536' vram='65536' vgamem='16384' heads='1' primary='yes'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/> + </video> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='2'/> + </redirdev> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='3'/> + </redirdev> + <memballoon model='virtio'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x09' function='0x0'/> + </memballoon> + </devices> +</domain> + diff --git a/documentation/kvm-details/domain-jango105.xml b/documentation/kvm-details/domain-jango105.xml new file mode 100644 index 0000000..a46746f --- /dev/null +++ b/documentation/kvm-details/domain-jango105.xml @@ -0,0 +1,137 @@ +<domain type='kvm'> + <name>jango105</name> + <uuid>ce445332-b7f2-428a-961a-5781c8b4946a</uuid> + <title>jango105.domain.de</title> + <description>I bims 1 Jango</description> + <memory unit='KiB'>6291456</memory> + <currentMemory unit='KiB'>6291456</currentMemory> + <vcpu placement='static'>2</vcpu> + <os> + <type arch='x86_64' machine='pc-i440fx-2.10'>hvm</type> + <loader readonly='yes' type='pflash'>/usr/share/edk2/ovmf/OVMF_CODE.fd</loader> + <nvram>/var/lib/libvirt/qemu/nvram/jango105_VARS.fd</nvram> + <bootmenu enable='no'/> + </os> + <features> + <acpi/> + <apic/> + <hyperv> + <relaxed state='on'/> + <vapic state='on'/> + <spinlocks state='on' retries='8191'/> + </hyperv> + <vmport state='off'/> + </features> + <cpu mode='host-model' check='partial'> + <model fallback='allow'/> + </cpu> + <clock offset='localtime'> + <timer name='rtc' tickpolicy='catchup'/> + <timer name='pit' tickpolicy='delay'/> + <timer name='hpet' present='no'/> + <timer name='hypervclock' present='yes'/> + </clock> + <on_poweroff>destroy</on_poweroff> + <on_reboot>restart</on_reboot> + <on_crash>destroy</on_crash> + <pm> + <suspend-to-mem enabled='no'/> + <suspend-to-disk enabled='no'/> + </pm> + <devices> + <emulator>/usr/bin/qemu-kvm</emulator> + <disk type='block' device='disk'> + <driver name='qemu' type='raw' cache='none' io='native'/> + <source dev='/dev/libvirt/jango105'/> + <target dev='hda' bus='ide'/> + <boot order='1'/> + <address type='drive' controller='0' bus='0' target='0' unit='0'/> + </disk> + <disk type='file' device='cdrom'> + <driver name='qemu' type='raw'/> + <source file='/usr/share/virtio-win/virtio-win-0.1.141.iso'/> + <target dev='sda' bus='sata'/> + <readonly/> + <boot order='2'/> + <address type='drive' controller='0' bus='0' target='0' unit='0'/> + </disk> + <controller type='usb' index='0' model='ich9-ehci1'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x7'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci1'> + <master startport='0'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0' multifunction='on'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci2'> + <master startport='2'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x1'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci3'> + <master startport='4'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x2'/> + </controller> + <controller type='pci' index='0' model='pci-root'/> + <controller type='ide' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/> + </controller> + <controller type='virtio-serial' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x0'/> + </controller> + <controller type='sata' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x08' function='0x0'/> + </controller> + <filesystem type='mount' accessmode='mapped'> + <source dir='/usr/src/kvm'/> + <target dir='virtio'/> + <readonly/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x09' function='0x0'/> + </filesystem> + <interface type='bridge'> + <mac address='de:ad:be:ef:13:37'/> + <source bridge='br0'/> + <model type='virtio'/> + <boot order='3'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/> + </interface> + <serial type='pty'> + <target type='isa-serial' port='0'> + <model name='isa-serial'/> + </target> + </serial> + <console type='pty'> + <target type='serial' port='0'/> + </console> + <channel type='spicevmc'> + <target type='virtio' name='com.redhat.spice.0'/> + <address type='virtio-serial' controller='0' bus='0' port='1'/> + </channel> + <input type='tablet' bus='usb'> + <address type='usb' bus='0' port='1'/> + </input> + <input type='mouse' bus='ps2'/> + <input type='keyboard' bus='ps2'/> + <graphics type='spice' autoport='yes' keymap='de'> + <listen type='address'/> + <image compression='off'/> + <gl enable='no'/> + </graphics> + <sound model='ich6'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/> + </sound> + <video> + <model type='qxl' ram='65536' vram='65536' vgamem='131072' heads='1' primary='yes'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/> + </video> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='2'/> + </redirdev> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='3'/> + </redirdev> + <memballoon model='virtio'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x0'/> + </memballoon> + <panic model='hyperv'/> + </devices> +</domain> + diff --git a/documentation/kvm-details/domain-opensuse-old.xml b/documentation/kvm-details/domain-opensuse-old.xml new file mode 100644 index 0000000..93bcaed --- /dev/null +++ b/documentation/kvm-details/domain-opensuse-old.xml @@ -0,0 +1,115 @@ +<domain type='kvm'> + <name>opensuse-old</name> + <uuid>e1600cc0-d71e-4cc3-9884-7d820bf3dd82</uuid> + <title>kolbasz05</title> + <description>openSUSE 13.2</description> + <memory unit='KiB'>1048576</memory> + <currentMemory unit='KiB'>1048576</currentMemory> + <vcpu placement='static'>1</vcpu> + <os> + <type arch='x86_64' machine='pc-i440fx-2.10'>hvm</type> + </os> + <features> + <acpi/> + <apic/> + <vmport state='off'/> + </features> + <cpu mode='custom' match='exact' check='partial'> + <model fallback='allow'>Broadwell-noTSX</model> + </cpu> + <clock offset='utc'> + <timer name='rtc' tickpolicy='catchup'/> + <timer name='pit' tickpolicy='delay'/> + <timer name='hpet' present='no'/> + </clock> + <on_poweroff>destroy</on_poweroff> + <on_reboot>restart</on_reboot> + <on_crash>destroy</on_crash> + <pm> + <suspend-to-mem enabled='no'/> + <suspend-to-disk enabled='no'/> + </pm> + <devices> + <emulator>/usr/bin/qemu-kvm</emulator> + <disk type='file' device='cdrom'> + <driver name='qemu' type='raw'/> + <target dev='hda' bus='ide'/> + <readonly/> + <boot order='1'/> + <address type='drive' controller='0' bus='0' target='0' unit='0'/> + </disk> + <controller type='usb' index='0' model='ich9-ehci1'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x7'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci1'> + <master startport='0'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0' multifunction='on'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci2'> + <master startport='2'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x1'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci3'> + <master startport='4'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x2'/> + </controller> + <controller type='pci' index='0' model='pci-root'/> + <controller type='ide' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/> + </controller> + <controller type='sata' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x0'/> + </controller> + <controller type='virtio-serial' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x0'/> + </controller> + <interface type='network'> + <mac address='52:54:00:32:00:e2'/> + <source network='sosaria05'/> + <model type='virtio'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/> + </interface> + <serial type='pty'> + <target type='isa-serial' port='0'> + <model name='isa-serial'/> + </target> + </serial> + <console type='pty'> + <target type='serial' port='0'/> + </console> + <channel type='spicevmc'> + <target type='virtio' name='com.redhat.spice.0'/> + <address type='virtio-serial' controller='0' bus='0' port='1'/> + </channel> + <input type='tablet' bus='usb'> + <address type='usb' bus='0' port='1'/> + </input> + <input type='mouse' bus='ps2'/> + <input type='keyboard' bus='ps2'/> + <graphics type='spice' autoport='yes'> + <listen type='address'/> + <image compression='off'/> + </graphics> + <sound model='ich6'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/> + </sound> + <video> + <model type='qxl' ram='65536' vram='65536' vgamem='16384' heads='1' primary='yes'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/> + </video> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='2'/> + </redirdev> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='3'/> + </redirdev> + <memballoon model='virtio'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x08' function='0x0'/> + </memballoon> + <rng model='virtio'> + <backend model='random'>/dev/urandom</backend> + <address type='pci' domain='0x0000' bus='0x00' slot='0x09' function='0x0'/> + </rng> + </devices> +</domain> + diff --git a/documentation/kvm-details/domain-opensuse.xml b/documentation/kvm-details/domain-opensuse.xml new file mode 100644 index 0000000..859f4cf --- /dev/null +++ b/documentation/kvm-details/domain-opensuse.xml @@ -0,0 +1,132 @@ +<domain type='kvm'> + <name>opensuse</name> + <uuid>8320f0bc-5cf4-4bc5-aef3-3accdc6f6140</uuid> + <title>loukaniko05</title> + <description>openSUSE Leap</description> + <memory unit='KiB'>1048576</memory> + <currentMemory unit='KiB'>1048576</currentMemory> + <vcpu placement='static'>1</vcpu> + <os> + <type arch='x86_64' machine='pc-i440fx-2.10'>hvm</type> + <loader readonly='yes' type='pflash'>/usr/share/edk2/ovmf/OVMF_CODE.fd</loader> + <nvram>/var/lib/libvirt/qemu/nvram/opensuse_VARS.fd</nvram> + <bootmenu enable='no'/> + </os> + <features> + <acpi/> + <apic/> + <vmport state='off'/> + </features> + <cpu mode='custom' match='exact' check='partial'> + <model fallback='allow'>Broadwell-noTSX</model> + </cpu> + <clock offset='utc'> + <timer name='rtc' tickpolicy='catchup'/> + <timer name='pit' tickpolicy='delay'/> + <timer name='hpet' present='no'/> + </clock> + <on_poweroff>destroy</on_poweroff> + <on_reboot>restart</on_reboot> + <on_crash>destroy</on_crash> + <pm> + <suspend-to-mem enabled='no'/> + <suspend-to-disk enabled='no'/> + </pm> + <devices> + <emulator>/usr/bin/qemu-kvm</emulator> + <disk type='file' device='cdrom'> + <driver name='qemu' type='raw'/> + <target dev='hda' bus='ide'/> + <readonly/> + <boot order='2'/> + <address type='drive' controller='0' bus='0' target='0' unit='0'/> + </disk> + <disk type='block' device='disk'> + <driver name='qemu' type='raw' cache='none' io='native'/> + <source dev='/dev/libvirt/suse-boot'/> + <target dev='sda' bus='sata'/> + <boot order='1'/> + <address type='drive' controller='0' bus='0' target='0' unit='0'/> + </disk> + <disk type='block' device='disk'> + <driver name='qemu' type='raw' cache='none' io='native'/> + <source dev='/dev/libvirt/suse-root'/> + <target dev='sdb' bus='sata'/> + <address type='drive' controller='0' bus='0' target='0' unit='1'/> + </disk> + <controller type='usb' index='0' model='ich9-ehci1'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x7'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci1'> + <master startport='0'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0' multifunction='on'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci2'> + <master startport='2'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x1'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci3'> + <master startport='4'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x2'/> + </controller> + <controller type='pci' index='0' model='pci-root'/> + <controller type='ide' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/> + </controller> + <controller type='sata' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x0'/> + </controller> + <controller type='virtio-serial' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x0'/> + </controller> + <interface type='network'> + <mac address='52:54:00:1f:5e:b4'/> + <source network='sosaria05'/> + <model type='virtio'/> + <boot order='3'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/> + </interface> + <serial type='pty'> + <target type='isa-serial' port='0'> + <model name='isa-serial'/> + </target> + </serial> + <console type='pty'> + <target type='serial' port='0'/> + </console> + <channel type='spicevmc'> + <target type='virtio' name='com.redhat.spice.0'/> + <address type='virtio-serial' controller='0' bus='0' port='1'/> + </channel> + <input type='tablet' bus='usb'> + <address type='usb' bus='0' port='1'/> + </input> + <input type='mouse' bus='ps2'/> + <input type='keyboard' bus='ps2'/> + <graphics type='spice' autoport='yes'> + <listen type='address'/> + <image compression='off'/> + </graphics> + <sound model='ich6'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/> + </sound> + <video> + <model type='qxl' ram='65536' vram='65536' vgamem='16384' heads='1' primary='yes'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/> + </video> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='2'/> + </redirdev> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='3'/> + </redirdev> + <memballoon model='virtio'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x08' function='0x0'/> + </memballoon> + <rng model='virtio'> + <backend model='random'>/dev/urandom</backend> + <address type='pci' domain='0x0000' bus='0x00' slot='0x09' function='0x0'/> + </rng> + </devices> +</domain> + diff --git a/documentation/kvm-details/domain-vswitch.xml b/documentation/kvm-details/domain-vswitch.xml new file mode 100644 index 0000000..b98c0c2 --- /dev/null +++ b/documentation/kvm-details/domain-vswitch.xml @@ -0,0 +1,130 @@ +<domain type='kvm'> + <name>vswitch</name> + <uuid>6ac58d7a-193b-49c3-bc12-4fa2a263889e</uuid> + <title>greymane05</title> + <description>Debian 9 + Open vSwitch</description> + <memory unit='KiB'>1048576</memory> + <currentMemory unit='KiB'>1048576</currentMemory> + <vcpu placement='static'>1</vcpu> + <os> + <type arch='x86_64' machine='pc-i440fx-2.10'>hvm</type> + <loader readonly='yes' type='pflash'>/usr/share/edk2/ovmf/OVMF_CODE.fd</loader> + <nvram>/var/lib/libvirt/qemu/nvram/vswitch_VARS.fd</nvram> + <boot dev='hd'/> + </os> + <features> + <acpi/> + <apic/> + <vmport state='off'/> + </features> + <cpu mode='custom' match='exact' check='partial'> + <model fallback='allow'>Broadwell-noTSX</model> + </cpu> + <clock offset='utc'> + <timer name='rtc' tickpolicy='catchup'/> + <timer name='pit' tickpolicy='delay'/> + <timer name='hpet' present='no'/> + </clock> + <on_poweroff>destroy</on_poweroff> + <on_reboot>restart</on_reboot> + <on_crash>destroy</on_crash> + <pm> + <suspend-to-mem enabled='no'/> + <suspend-to-disk enabled='no'/> + </pm> + <devices> + <emulator>/usr/bin/qemu-kvm</emulator> + <disk type='file' device='cdrom'> + <driver name='qemu' type='raw'/> + <target dev='hda' bus='ide'/> + <readonly/> + <address type='drive' controller='0' bus='0' target='0' unit='0'/> + </disk> + <controller type='usb' index='0' model='ich9-ehci1'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x7'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci1'> + <master startport='0'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0' multifunction='on'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci2'> + <master startport='2'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x1'/> + </controller> + <controller type='usb' index='0' model='ich9-uhci3'> + <master startport='4'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x2'/> + </controller> + <controller type='pci' index='0' model='pci-root'/> + <controller type='ide' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/> + </controller> + <controller type='virtio-serial' index='0'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x0'/> + </controller> + <interface type='network'> + <mac address='52:54:00:cd:53:2f'/> + <source network='san-cluster'/> + <model type='virtio'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x0b' function='0x0'/> + </interface> + <interface type='network'> + <mac address='52:54:00:4a:29:b2'/> + <source network='sosaria05'/> + <model type='virtio'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/> + </interface> + <interface type='bridge'> + <mac address='52:54:00:90:10:13'/> + <source bridge='br0'/> + <model type='rtl8139'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x0c' function='0x0'/> + </interface> + <serial type='pty'> + <target type='isa-serial' port='0'> + <model name='isa-serial'/> + </target> + </serial> + <console type='pty'> + <target type='serial' port='0'/> + </console> + <channel type='unix'> + <target type='virtio' name='org.qemu.guest_agent.0'/> + <address type='virtio-serial' controller='0' bus='0' port='1'/> + </channel> + <channel type='spicevmc'> + <target type='virtio' name='com.redhat.spice.0'/> + <address type='virtio-serial' controller='0' bus='0' port='2'/> + </channel> + <input type='tablet' bus='usb'> + <address type='usb' bus='0' port='1'/> + </input> + <input type='mouse' bus='ps2'/> + <input type='keyboard' bus='ps2'/> + <graphics type='spice' autoport='yes'> + <listen type='address'/> + <image compression='off'/> + </graphics> + <sound model='ich6'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/> + </sound> + <video> + <model type='qxl' ram='65536' vram='65536' vgamem='16384' heads='1' primary='yes'/> + <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/> + </video> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='2'/> + </redirdev> + <redirdev bus='usb' type='spicevmc'> + <address type='usb' bus='0' port='3'/> + </redirdev> + <memballoon model='virtio'> + <address type='pci' domain='0x0000' bus='0x00' slot='0x09' function='0x0'/> + </memballoon> + <rng model='virtio'> + <backend model='random'>/dev/urandom</backend> + <address type='pci' domain='0x0000' bus='0x00' slot='0x0a' function='0x0'/> + </rng> + </devices> +</domain> + diff --git a/documentation/kvm-details/net-hodenkobold.xml b/documentation/kvm-details/net-hodenkobold.xml new file mode 100644 index 0000000..8b9b414 --- /dev/null +++ b/documentation/kvm-details/net-hodenkobold.xml @@ -0,0 +1,10 @@ +<network> + <name>hodenkobold</name> + <uuid>2a40c0e9-efa1-4423-b03c-9761d736a02f</uuid> + <bridge name='virbr0' stp='on' delay='0'/> + <mac address='52:54:00:91:3a:3a'/> + <domain name='boldtroll'/> + <ip address='10.16.125.1' netmask='255.255.255.0'> + </ip> +</network> + diff --git a/documentation/kvm-details/net-hundehuette.xml b/documentation/kvm-details/net-hundehuette.xml new file mode 100644 index 0000000..48f4042 --- /dev/null +++ b/documentation/kvm-details/net-hundehuette.xml @@ -0,0 +1,8 @@ +<network> + <name>hundehuette</name> + <uuid>39ab83dc-2b1a-4001-b151-8ec20ba2b3c7</uuid> + <bridge name='wuffbr0' stp='on' delay='0'/> + <mac address='de:ad:d0:65:de:ad'/> + <domain name='hundehuette'/> +</network> + diff --git a/documentation/kvm-details/net-san-cluster.xml b/documentation/kvm-details/net-san-cluster.xml new file mode 100644 index 0000000..039478d --- /dev/null +++ b/documentation/kvm-details/net-san-cluster.xml @@ -0,0 +1,10 @@ +<network> + <name>san-cluster</name> + <uuid>26526378-0e2b-4fce-b971-147a17d5c236</uuid> + <bridge name='clusbr0' stp='on' delay='0'/> + <mac address='52:54:00:cc:7d:90'/> + <domain name='SAN+Clust0r'/> + <ip address='172.16.25.253' netmask='255.255.255.0'> + </ip> +</network> + diff --git a/documentation/kvm-details/net-sosaria05.xml b/documentation/kvm-details/net-sosaria05.xml new file mode 100644 index 0000000..9802ce2 --- /dev/null +++ b/documentation/kvm-details/net-sosaria05.xml @@ -0,0 +1,11 @@ +<network> + <name>sosaria05</name> + <uuid>40de02d4-213b-48e3-9101-00d7948d0bb1</uuid> + <forward mode='route'/> + <bridge name='sosbr0' stp='on' delay='0'/> + <mac address='de:ad:be:ef:06:66'/> + <domain name='sosaria'/> + <ip address='10.16.25.253' netmask='255.255.255.0'> + </ip> +</network> + diff --git a/documentation/kvm-details/pool-isos.xml b/documentation/kvm-details/pool-isos.xml new file mode 100644 index 0000000..4eb1db3 --- /dev/null +++ b/documentation/kvm-details/pool-isos.xml @@ -0,0 +1,19 @@ +<pool type='dir'> + <name>isos</name> + <uuid>c86f16a6-8391-40af-8199-3d4deee47a09</uuid> + <capacity unit='bytes'>63145029632</capacity> + <allocation unit='bytes'>40271142912</allocation> + <available unit='bytes'>22873886720</available> + <source> + </source> + <target> + <path>/var/lib/libvirt/isos/pool</path> + <permissions> + <mode>0775</mode> + <owner>0</owner> + <group>977</group> + <label>system_u:object_r:public_content_t:s0</label> + </permissions> + </target> +</pool> + diff --git a/documentation/kvm-details/pool-kuehe.xml b/documentation/kvm-details/pool-kuehe.xml new file mode 100644 index 0000000..b451526 --- /dev/null +++ b/documentation/kvm-details/pool-kuehe.xml @@ -0,0 +1,19 @@ +<pool type='dir'> + <name>kuehe</name> + <uuid>5b95fa91-2d16-48eb-a19b-ebfa5462b0cd</uuid> + <capacity unit='bytes'>63145029632</capacity> + <allocation unit='bytes'>40271147008</allocation> + <available unit='bytes'>22873882624</available> + <source> + </source> + <target> + <path>/var/lib/libvirt/images</path> + <permissions> + <mode>0711</mode> + <owner>0</owner> + <group>0</group> + <label>system_u:object_r:virt_image_t:s0</label> + </permissions> + </target> +</pool> + diff --git a/documentation/kvm-details/pool-libvirt.xml b/documentation/kvm-details/pool-libvirt.xml new file mode 100644 index 0000000..85dc37c --- /dev/null +++ b/documentation/kvm-details/pool-libvirt.xml @@ -0,0 +1,16 @@ +<pool type='logical'> + <name>libvirt</name> + <uuid>6f9c143b-54dc-4a29-a1d9-d45aab222307</uuid> + <capacity unit='bytes'>269735690240</capacity> + <allocation unit='bytes'>220788162560</allocation> + <available unit='bytes'>48947527680</available> + <source> + <device path='/dev/mapper/libvirt'/> + <name>libvirt</name> + <format type='lvm2'/> + </source> + <target> + <path>/dev/libvirt</path> + </target> +</pool> + diff --git a/documentation/kvm-details/pool-nvram.xml b/documentation/kvm-details/pool-nvram.xml new file mode 100644 index 0000000..46e52cc --- /dev/null +++ b/documentation/kvm-details/pool-nvram.xml @@ -0,0 +1,19 @@ +<pool type='dir'> + <name>nvram</name> + <uuid>9179194b-aa40-4081-a8de-3728aa23c57d</uuid> + <capacity unit='bytes'>63145029632</capacity> + <allocation unit='bytes'>40271142912</allocation> + <available unit='bytes'>22873886720</available> + <source> + </source> + <target> + <path>/var/lib/libvirt/qemu/nvram</path> + <permissions> + <mode>0755</mode> + <owner>107</owner> + <group>107</group> + <label>system_u:object_r:qemu_var_run_t:s0</label> + </permissions> + </target> +</pool> + diff --git a/documentation/kvm-details/pool-ovmf.xml b/documentation/kvm-details/pool-ovmf.xml new file mode 100644 index 0000000..af2193f --- /dev/null +++ b/documentation/kvm-details/pool-ovmf.xml @@ -0,0 +1,19 @@ +<pool type='dir'> + <name>ovmf</name> + <uuid>6c9ef61b-ded4-49c3-86f6-a7568935968d</uuid> + <capacity unit='bytes'>84014424064</capacity> + <allocation unit='bytes'>23793397760</allocation> + <available unit='bytes'>60221026304</available> + <source> + </source> + <target> + <path>/usr/share/edk2/ovmf</path> + <permissions> + <mode>0755</mode> + <owner>0</owner> + <group>0</group> + <label>system_u:object_r:usr_t:s0</label> + </permissions> + </target> +</pool> + diff --git a/documentation/kvm-details/pool-virtio-win-git.xml b/documentation/kvm-details/pool-virtio-win-git.xml new file mode 100644 index 0000000..2c852c8 --- /dev/null +++ b/documentation/kvm-details/pool-virtio-win-git.xml @@ -0,0 +1,19 @@ +<pool type='dir'> + <name>virtio-win-git</name> + <uuid>dee60d39-5c97-47b9-b441-7fab32f25978</uuid> + <capacity unit='bytes'>84014424064</capacity> + <allocation unit='bytes'>23793397760</allocation> + <available unit='bytes'>60221026304</available> + <source> + </source> + <target> + <path>/usr/src/kvm/kvm-guest-drivers-windows</path> + <permissions> + <mode>0775</mode> + <owner>21337</owner> + <group>977</group> + <label>unconfined_u:object_r:usr_t:s0</label> + </permissions> + </target> +</pool> + diff --git a/documentation/kvm-details/pool-virtio-win.xml b/documentation/kvm-details/pool-virtio-win.xml new file mode 100644 index 0000000..b618fa3 --- /dev/null +++ b/documentation/kvm-details/pool-virtio-win.xml @@ -0,0 +1,19 @@ +<pool type='dir'> + <name>virtio-win</name> + <uuid>257909d7-aa22-4775-88e2-3df04d685070</uuid> + <capacity unit='bytes'>84014424064</capacity> + <allocation unit='bytes'>23793397760</allocation> + <available unit='bytes'>60221026304</available> + <source> + </source> + <target> + <path>/usr/share/virtio-win</path> + <permissions> + <mode>0755</mode> + <owner>0</owner> + <group>0</group> + <label>system_u:object_r:usr_t:s0</label> + </permissions> + </target> +</pool> + diff --git a/documentation/kvm-details/pool-vmshare.xml b/documentation/kvm-details/pool-vmshare.xml new file mode 100644 index 0000000..a43258b --- /dev/null +++ b/documentation/kvm-details/pool-vmshare.xml @@ -0,0 +1,19 @@ +<pool type='dir'> + <name>vmshare</name> + <uuid>ba5d6457-5b94-4c5f-8bc5-4dda69f1159e</uuid> + <capacity unit='bytes'>63145029632</capacity> + <allocation unit='bytes'>40271147008</allocation> + <available unit='bytes'>22873882624</available> + <source> + </source> + <target> + <path>/srv/vmshare</path> + <permissions> + <mode>0755</mode> + <owner>0</owner> + <group>0</group> + <label>system_u:object_r:var_t:s0</label> + </permissions> + </target> +</pool> + diff --git a/documentation/kvm_overview b/documentation/kvm_overview new file mode 100644 index 0000000..b644168 --- /dev/null +++ b/documentation/kvm_overview @@ -0,0 +1,36 @@ + Id Name State Title +---------------------------------------------------------------------------------- + - arch shut off triskel05 + - basfperl shut off mezouli05 + - centoscl0 shut off muromachi50 + - centoscl1 shut off muromachi51 + - centoscl2 shut off muromachi52 + - debian shut off balinorgel05 + - firewall shut off cthulhu05 + - indiana shut off lughnasadh05 + - iscsi shut off brehon05 + - jango105 shut off jango105.domain.de + - opensuse shut off loukaniko05 + - opensuse-old shut off kolbasz05 + - vswitch shut off greymane05 + + + Name State Autostart Persistent +---------------------------------------------------------- + hodenkobold active yes yes + hundehuette active no yes + san-cluster active no yes + sosaria05 active no yes + + + Name State Autostart Persistent Capacity Allocation Available +----------------------------------------------------------------------------------- + isos running yes yes 58.81 GiB 37.51 GiB 21.30 GiB + kuehe running yes yes 58.81 GiB 37.51 GiB 21.30 GiB + libvirt running yes yes 251.21 GiB 205.62 GiB 45.59 GiB + nvram running yes yes 58.81 GiB 37.51 GiB 21.30 GiB + ovmf running yes yes 78.24 GiB 22.16 GiB 56.09 GiB + virtio-win running yes yes 78.24 GiB 22.16 GiB 56.09 GiB + virtio-win-git running yes yes 78.24 GiB 22.16 GiB 56.09 GiB + vmshare running no yes 58.81 GiB 37.51 GiB 21.30 GiB + diff --git a/documentation/packages b/documentation/packages new file mode 100644 index 0000000..05c33fc --- /dev/null +++ b/documentation/packages @@ -0,0 +1,524 @@ +Packages installed by user +0ad-0.0.23-1.fc28.x86_64 +CutyCapt-0-0.13.20130714svn.fc28.x86_64 +GraphicsMagick-1.3.29-1.fc28.x86_64 +NetworkManager-fortisslvpn-gnome-1.2.8-2.fc28.x86_64 +NetworkManager-l2tp-1.2.10-1.fc28.x86_64 +NetworkManager-l2tp-gnome-1.2.10-1.fc28.x86_64 +NetworkManager-strongswan-1.4.3-1.fc28.x86_64 +NetworkManager-tui-1:1.10.12-1.fc28.x86_64 +RetroArch-1.7.1-0.fc27.x86_64 +ShellCheck-0.4.7-3.fc28.x86_64 +Zim-0.68-1.fc28.noarch +acpid-2.0.30-1.fc28.x86_64 +acpitool-0.5.1-16.fc28.x86_64 +akmods-0.5.6-15.fc28.noarch +alien-8.95-6.fc28.noarch +alsa-firmware-1.0.29-6.fc28.noarch +alsa-plugins-pulseaudio-1.1.6-3.fc28.i686 +apt-0.5.15lorg3.95-31.git522.fc28.x86_64 +asciiquarium-1.1-9.fc28.noarch +asclock-2.0.12-596.1.x86_64 +autofs-1:5.1.4-20.fc28.x86_64 +automake-1.15.1-5.fc28.noarch +bash-completion-1:2.8-1.fc28.noarch +batctl-2018.3-1.fc28.x86_64 +bb-1.3.0-12.1.x86_64 +binclock-0.4.0-5.fc28.noarch +blueman-1:2.1-0.9.alpha2.fc28.x86_64 +bluez-hid2hci-5.50-1.fc28.x86_64 +bluez-tools-0.2.0-0.7.git20170912.7cb788c.fc28.x86_64 +bmon-3.7-9.fc28.x86_64 +brewtarget-2.1.0-3.fc23.x86_64 +brightness-1.0.1-3.1.noarch +bwm-ng-0.6.1-7.fc28.x86_64 +byobu-5.127-1.fc28.noarch +caca-utils-0.99-0.36.beta19.fc28.x86_64 +ceph-fuse-1:12.2.8-1.fc28.x86_64 +check-mk-agent-1.4.0p31-2.fc28.x86_64 +chrome-gnome-shell-10.1-1.fc28.x86_64 +chromium-69.0.3497.100-1.fc28.x86_64 +ciphertest-0.2.2-4.fc28.noarch +clamav-0.100.2-2.fc28.x86_64 +clamav-scanner-systemd-0.100.2-2.fc28.x86_64 +clamav-update-0.100.2-2.fc28.x86_64 +clusterssh-4.13.2-1.fc28.noarch +clutter-gst-devel-1.6.0-20.fc28.x86_64 +clutter-gtk-devel-1.8.4-3.fc28.x86_64 +cmatrix-1.2a-2.fc28.x86_64 +colordiff-1.0.18-3.fc28.noarch +colorgcc-1.4.5-4.fc28.noarch +colorize-0.3.4-14.fc28.noarch +comic-neue-angular-fonts-2.2-6.fc28.noarch +compton-0.1-2.fc28.x86_64 +conky-1.10.8-1.fc28.x86_64 +convmv-2.01-3.fc28.noarch +copr-cli-1.74-1.fc28.noarch +copr-frontend-1.139-1.fc28.noarch +copr-selinux-1.48-1.fc28.noarch +corkscrew-2.0-23.fc28.x86_64 +cowsay-3.04-10.fc28.noarch +crm114-0-15.20100106.fc28.x86_64 +csv2xls-0.4.2-3.1.noarch +cups-pdf-3.0.1-4.fc28.x86_64 +davfs2-1.5.4-7.fc28.x86_64 +dblatex-0.3.10-4.fc28.noarch +ddate-0.2.2-5.fc28.x86_64 +detox-1.3.0-4.fc28.x86_64 +displaylink-1.5.0-2.x86_64 +distro-info-0.18-1.fc28.x86_64 +dnf-utils-2.1.5-4.fc28.noarch +docker-ce-18.06.1.ce-3.fc28.x86_64 +dosbox-0.74-25.fc28.x86_64 +dotnet-host-2.1.0_preview2_26411_07-1.x86_64 +dotnet-runtime-2.0.5-2.0.5-1.x86_64 +dotnet-sdk-2.1.4-2.1.4-1.x86_64 +dstat-0.7.3-4.fc28.noarch +dunst-1.2.0-2.fc28.x86_64 +dzen2-0.8.5-21.20100104svn.fc28.x86_64 +e16-themes-1.0.1-11.fc28.noarch +efibootmgr-16-2.fc28.x86_64 +emacs-goodies-35.8-8.fc28.noarch +emacs-nox-1:26.1-3.fc28.x86_64 +empathy-1:3.12.14-5.fc28.x86_64 +epydoc-3.0.1.20090203svn-9.fc28.noarch +espeak-ng-1.49.2-2.fc28.x86_64 +ethstatus-0.4.8-1.fc28.x86_64 +evtest-1.33-7.fc28.x86_64 +exa-0.8.0-4.fc28.x86_64 +exif-0.6.21-13.fc28.x86_64 +exmplayer-5.0.1-11.1.x86_64 +f27-backgrounds-27.0.1-3.fc28.noarch +fbida-2.14-3.fc28.x86_64 +fedora-icon-theme-1.0.0-23.fc28.noarch +fedora-kickstarts-0.28.1-1.fc28.noarch +fedora-motd-0.1.2-6.fc28.noarch +fedora-review-0.6.1-8.fc28.noarch +fedora-screensaver-theme-1.0.0-12.fc23.noarch +feh-2.19.3-2.fc28.x86_64 +fence-virt-0.4.0-7.fc28.x86_64 +fence-virtd-libvirt-0.4.0-7.fc28.x86_64 +fence-virtd-multicast-0.4.0-7.fc28.x86_64 +fence-virtd-serial-0.4.0-7.fc28.x86_64 +figlet-2.2.5-15.20151018gita565ae1.fc28.x86_64 +finger-0.17-61.fc28.x86_64 +flash-plugin-31.0.0.122-release.x86_64 +flashlauncher-0.3-25.1.x86_64 +fmt-ptrn-1.3.22-12.fc28.x86_64 +fontawesome-fonts-4.7.0-4.fc28.noarch +freshplayerplugin-0.3.9-3.fc28.x86_64 +ftp-0.17-76.fc28.x86_64 +gallery2-flashvideo-2.3.2-19.fc27.noarch +gcc-c++-8.2.1-4.fc28.x86_64 +gdouros-aroania-fonts-8.01-2.fc28.noarch +gdouros-asea-fonts-8.01-2.fc28.noarch +gedit-latex-3.20.0-5.fc28.x86_64 +gimp-2:2.8.22-7.fc28.x86_64 +gimp-help-2.8.2-8.fc28.noarch +git-all-2.17.2-1.fc28.noarch +git-evtag-2016.1-6.fc28.x86_64 +glances-2.11.1-2.fc28.noarch +gmpc-devel-11.8.16-18.fc28.x86_64 +gnome-python2-gnomekeyring-2.32.0-32.fc28.x86_64 +google-droid-sans-fonts-20120715-13.fc28.noarch +google-droid-sans-mono-fonts-20120715-13.fc28.noarch +google-droid-serif-fonts-20120715-13.fc28.noarch +gpm-1.20.7-15.fc28.x86_64 +graphviz-2.40.1-23.fc28.x86_64 +grub2-breeze-theme-5.13.5-1.fc28.x86_64 +grub2-efi-x64-1:2.02-38.fc28.x86_64 +grub2-pc-1:2.02-38.fc28.x86_64 +gsimplecal-2.1-3.1.x86_64 +gst-transcoder-devel-1.14.0-1.fc28.x86_64 +gstreamer-plugins-bad-0.10.23-10.fc28.x86_64 +gstreamer-plugins-bad-nonfree-0.10.23-6.fc28.x86_64 +gstreamer-plugins-good-extras-0.10.31-20.fc27.x86_64 +gstreamer-plugins-ugly-0.10.19-27.fc28.x86_64 +gstreamer1-libav-1.14.1-1.fc28.x86_64 +gstreamer1-plugins-bad-nonfree-1.14.1-1.fc28.x86_64 +gstreamer1-plugins-ugly-1.14.1-2.fc28.x86_64 +gtk+extra-devel-2.1.2-23.fc28.x86_64 +gtk3-devel-3.22.30-1.fc28.x86_64 +gucharmap-10.0.4-1.fc28.x86_64 +gwenview-1:18.04.3-1.fc28.x86_64 +halberd-0.2.4-15.fc28.noarch +hamster-time-tracker-2.0-0.13.rc1.fc28.noarch +haveged-1.9.1-8.fc27.x86_64 +heimdall-1.4.2-6.fc28.x86_64 +hibernate-validator-performance-5.2.4-4.fc28.noarch +hostapd-2.6-9.fc28.x86_64 +hostapd-logwatch-2.6-9.fc28.x86_64 +htop-2.2.0-1.fc28.x86_64 +i3-gaps-4.15.0.1-3.fc28.x86_64 +i3blocks-1.4-3.fc28.x86_64 +i3lock-2.9.1-2.fc28.x86_64 +icedtea-web-1.7.1-9.fc28.noarch +iftop-1.0-0.17.pre4.fc28.x86_64 +ike-2.2.1-7.fc24.x86_64 +inkscape-0.92.3-2.fc28.x86_64 +inkscape-psd-0.1.1-7.fc28.noarch +inkscape-sozi-13.11-8.fc28.noarch +inkscape-table-1.0-7.fc28.noarch +inkscape-view-0.92.3-2.fc28.x86_64 +intclock-2.13-25.1.noarch +intel-gpu-tools-2.99.917-32.20171025.fc28.x86_64 +inxi-3.0.26-1.fc28.noarch +iometer-1.1.0-4.1.x86_64 +ipsec-tools-0.8.2-12.fc28.x86_64 +iptraf-ng-1.1.4-18.fc28.x86_64 +java-1.8.0-openjdk-1:1.8.0.181.b15-6.fc28.x86_64 +john-1.8.0-11.fc28.x86_64 +jp2a-1.0.7-2.fc28.x86_64 +json-glib-devel-1.4.2-3.fc28.x86_64 +kapow-1.5.8-1.fc28.x86_64 +keepass-2.38-4.fc28.x86_64 +keepassx-1:2.0.3-6.fc28.x86_64 +keepassxc-2.3.4-1.fc28.x86_64 +kernel-4.18.13-200.fc28.x86_64 +kernel-4.18.14-200.fc28.x86_64 +kernel-4.18.16-200.fc28.x86_64 +kernel-core-4.18.13-200.fc28.x86_64 +kernel-core-4.18.14-200.fc28.x86_64 +kernel-core-4.18.16-200.fc28.x86_64 +kernel-devel-4.18.13-200.fc28.x86_64 +kernel-devel-4.18.14-200.fc28.x86_64 +kernel-devel-4.18.16-200.fc28.x86_64 +kernel-modules-4.18.13-200.fc28.x86_64 +kernel-modules-4.18.14-200.fc28.x86_64 +kernel-modules-4.18.16-200.fc28.x86_64 +kernel-modules-extra-4.18.13-200.fc28.x86_64 +kernel-modules-extra-4.18.14-200.fc28.x86_64 +kernel-modules-extra-4.18.16-200.fc28.x86_64 +keybase-2.9.0.20181030145358.ea86aa30e5-1.x86_64 +keychecker-1.0-4.fc28.noarch +kf5-ktnef-18.04.3-1.fc28.x86_64 +khal-0.9.8-2.fc28.noarch +ksh-20120801-247.fc28.x86_64 +langpacks-bg-1.0-12.fc28.noarch +langpacks-de-1.0-12.fc28.noarch +langpacks-en-1.0-12.fc28.noarch +langpacks-en_GB-1.0-12.fc28.noarch +langpacks-fi-1.0-12.fc28.noarch +langpacks-ga-1.0-12.fc28.noarch +langpacks-hi-1.0-12.fc28.noarch +langpacks-is-1.0-12.fc28.noarch +langpacks-nb-1.0-12.fc28.noarch +langpacks-nn-1.0-12.fc28.noarch +langpacks-ru-1.0-12.fc28.noarch +langpacks-te-1.0-12.fc28.noarch +latex-mk-2.1-11.fc28.noarch +latex2rtf-2.3.16-5.fc28.x86_64 +lftp-4.8.4-1.fc28.x86_64 +libglade2-devel-2.6.4-18.fc28.x86_64 +libgudev-devel-232-3.fc28.x86_64 +libguestfs-bash-completion-1:1.38.6-1.fc28.noarch +libguestfs-tools-1:1.38.6-1.fc28.noarch +libgxps-tools-0.3.0-5.fc28.x86_64 +libinput-utils-1.11.3-1.fc28.x86_64 +libmpc-devel-1.0.2-9.fc28.x86_64 +libnice-devel-0.1.14-7.20180504git34d6044.fc28.x86_64 +libnl3-devel-3.4.0-3.fc28.x86_64 +libpeas-devel-1.22.0-5.fc28.x86_64 +libpurple-devel-2.13.0-1.fc28.1.x86_64 +libreoffice-TexMaths-0.42-5.fc28.x86_64 +libreoffice-gallery-vrt-network-equipment-1.2.0-9.fc28.x86_64 +libreoffice-writer2latex-1.0.2-23.fc28.x86_64 +libretro-gpsp-20180812gitd99f3ac-1.fc28.x86_64 +libretro-mgba-20180918git0ad9641-1.fc28.x86_64 +libretro-pcsx-rearmed-20180907git0370856-1.fc28.x86_64 +libsoup-devel-2.62.3-1.fc28.x86_64 +libtool-2.4.6-24.fc28.x86_64 +libva-intel-driver-2.1.0-2.fc28.x86_64 +libvirt-4.1.0-5.fc28.x86_64 +libvirt-wireshark-4.1.0-5.fc28.x86_64 +libwebp-tools-1.0.0-1.fc28.x86_64 +libxslt-devel-1.1.32-2.fc28.x86_64 +libzeitgeist-0.3.18-13.fc27.x86_64 +links-1:2.14-4.fc28.x86_64 +lm_sensors-sensord-3.4.0-17.20180522git70f7e08.fc28.x86_64 +lshw-B.02.18-16.fc28.x86_64 +lvm2-2.02.177-5.fc28.x86_64 +lxc-2.0.9-1.fc28.1.x86_64 +lynx-2.8.9-1.fc28.x86_64 +makepasswd-0.5.3-12.fc28.x86_64 +mariadb-devel-3:10.2.18-1.fc28.x86_64 +mariadb-server-3:10.2.18-1.fc28.x86_64 +mate-terminal-1.20.1-1.fc28.x86_64 +matrixgl-2.3.2-13.1.x86_64 +mediawiki-intersection-37906-8.fc27.noarch +mediawiki-semantic-1.8.0.4-8.fc27.noarch +mediawiki-validator-0.5.1-7.fc27.noarch +mediawiki-wikicalendar-1.16-11.fc27.noarch +meson-0.47.2-1.fc28.noarch +microdnf-3-5.fc28.x86_64 +mingw32-qt-qmake-4.8.7-3.fc27.x86_64 +mingw64-dlfcn-1.1.2-1.fc28.noarch +mingw64-qt-qmake-4.8.7-3.fc27.x86_64 +mkdocs-0.16.3-5.fc28.noarch +mod_geoip-1.2.10-6.fc27.x86_64 +mod_limitipconn-0.23-21.fc28.x86_64 +mod_proxy_html-1:2.4.34-3.fc28.x86_64 +mod_ssl-1:2.4.34-3.fc28.x86_64 +moin-1.9.9-3.fc27.noarch +mono-addins-1.1-7.fc27.x86_64 +mono-basic-4.7-1.fc28.x86_64 +mono-winfx-4.8.0-14.fc28.x86_64 +mpc-0.30-1.fc28.x86_64 +mpdas-0.4.4-1.fc28.x86_64 +mpdscribble-0.22-15.fc27.x86_64 +mplus-1mn-fonts-056-7.fc27.noarch +mpv-0.29.1-1.fc28.x86_64 +mussh-1.0-10.fc27.noarch +mutt-5:1.10.1-1.fc28.x86_64 +mycli-1.17.0-1.fc28.noarch +nagios-plugins-all-2.2.1-12.fc28.x86_64 +ncmpc-0.27-4.fc27.x86_64 +ncmpcpp-0.8.2-1.fc28.x86_64 +ncurses-devel-6.1-5.20180224.fc28.x86_64 +netcat-gnu-0.7.1-15.1.x86_64 +nethogs-0.8.5-4.fc27.x86_64 +netris-0.52-11.1.x86_64 +network-manager-applet-1.8.10-2.fc28.2.x86_64 +newsbeuter-2.9-9.fc28.x86_64 +nextcloud-client-caja-2.3.3-2.fc28.x86_64 +nextcloud-client-dolphin-2.3.3-2.fc28.x86_64 +nextcloud-client-nemo-2.3.3-2.fc28.x86_64 +ninja-build-1.8.2-1.fc28.x86_64 +nitrogen-1.6.1-4.fc28.x86_64 +nload-0.7.4-13.fc28.x86_64 +nm-tray-0.4.1-4.fc28.x86_64 +nmap-2:7.60-12.fc28.x86_64 +nodejs-esprima-2.7.2-4.fc28.noarch +nodejs-hosted-git-info-2.1.4-5.fc27.noarch +nodejs-revalidator-0.1.7-6.fc27.noarch +nodejs-util-0.10.3-6.fc27.noarch +npm-1:6.4.1-1.8.12.0.1.fc28.x86_64 +numix-gtk-theme-2.6.7-1.fc28.noarch +numix-icon-theme-0.1.0-19.20180717.git763489f.fc28.noarch +numlockx-1.2-12.fc27.x86_64 +nuvola-app-tunein-1.3-4.fc28.noarch +oddjob-0.34.4-4.fc28.x86_64 +oddjob-mkhomedir-0.34.4-4.fc28.x86_64 +oneko-1.2-25.fc28.x86_64 +openh264-1.7.0-6.fc28.x86_64 +openjfx-8.0.152-12.b04.fc27.x86_64 +openssl-devel-1:1.1.0i-1.fc28.x86_64 +orion-1.6.6-1.fc28.x86_64 +p0rn-comfort-0.0.4-29.fc28.noarch +pandoc-2.0.6-2.fc28.x86_64 +pango-devel-1.42.4-1.fc28.x86_64 +pass-1.7.3-1.fc28.noarch +passmenu-1.7.3-1.fc28.noarch +pavucontrol-3.0-11.fc28.x86_64 +perl-AnyEvent-I3-0.17-4.fc28.noarch +perl-CPAN-2.18-397.fc28.noarch +perl-Crypt-CipherSaber-1.01-7.fc28.noarch +perl-SVG-Parser-1.03-27.fc28.noarch +pgpdump-0.33-1.fc28.x86_64 +php-ZendFramework-Db-Adapter-Mysqli-1.12.20-4.fc28.noarch +php-phpseclib-crypt-base-0.3.9-6.fc28.noarch +php-tcpdf-gnu-free-mono-fonts-6.2.26-1.fc28.noarch +phpMyAdmin-4.8.3-1.fc28.noarch +pimd-2.3.2-7.fc28.x86_64 +playonlinux-4.2.12-4.fc28.x86_64 +polkit-gnome-0.106-0.2.20170423gita0763a2.fc28.x86_64 +polybar-3.2.1-1.fc28.x86_64 +postfix-2:3.3.1-2.fc28.x86_64 +powerline-2.7-1.fc28.x86_64 +powerline-docs-2.7-1.fc28.noarch +powershell-6.1.0~preview.1-1.rhel.7.x86_64 +pqiv-gdkpixbuf-2.6-7.1.x86_64 +pqiv-poppler-2.6-7.1.x86_64 +pqiv-spectre-2.6-7.1.x86_64 +proxychains-ng-4.12-2.fc28.x86_64 +pssh-2.3.1-20.fc28.noarch +psutils-1.23-13.fc28.x86_64 +ptbatterysystemtray-0.9.9-5.1.x86_64 +purple-matrix-0-9.20180325git49ea988.fc28.x86_64 +purple-sipe-1.23.3-1.fc28.x86_64 +purple-skypeweb-1.5-3.20180720git2290013.fc28.x86_64 +pykickstart-3.12-4.fc28.noarch +pylint-1.7.5-1.fc28.noarch +python-genlisp-devel-0.3.3-13.20130623git8790a17.fc28.noarch +python2-Cython-0.28.4-1.fc28.x86_64 +python2-cairo-devel-1.16.3-1.fc28.x86_64 +python2-configparser-3.5.0b2-8.fc28.noarch +python2-cysignals-devel-1.6.4-3.fc28.x86_64 +python2-devel-2.7.15-4.fc28.x86_64 +python2-dnf-plugin-migrate-2.1.5-4.fc28.noarch +python2-keyring-13.2.1-2.fc28.noarch +python2-ldb-devel-1.4.0-4.fc28.1.3.6.x86_64 +python2-matplotlib-2.2.3-1.fc28.x86_64 +python2-phabricator-0.7.0-4.fc28.noarch +python2-pyaes-1.6.0-3.fc28.noarch +python2-pynacl-1.2.0-2.fc28.x86_64 +python2-pyroute2-0.4.21-1.fc28.noarch +python2-talloc-devel-2.1.13-1.fc28.x86_64 +python2-werkzeug-0.12.2-2.fc28.noarch +python3-Cython-0.28.4-1.fc28.x86_64 +python3-beautifulsoup4-4.6.3-1.fc28.noarch +python3-blessed-1.14.1-6.fc28.noarch +python3-bluez-0.22-10.fc28.x86_64 +python3-configparser-3.5.0b2-8.fc28.noarch +python3-crypto-2.6.1-22.fc28.x86_64 +python3-dnf-plugin-kickstart-2.0.5-3.fc28.noarch +python3-dnf-plugin-leaves-2.1.5-4.fc28.noarch +python3-dnf-plugin-show-leaves-2.1.5-4.fc28.noarch +python3-dnf-plugin-torproxy-2.0.5-3.fc28.noarch +python3-keyring-13.2.1-2.fc28.noarch +python3-lxml-4.1.1-2.fc28.x86_64 +python3-phabricator-0.7.0-4.fc28.noarch +python3-psutil-5.4.3-4.fc28.x86_64 +python3-pyaes-1.6.0-3.fc28.noarch +python3-qt5-5.10.1-4.fc28.x86_64 +python3-seqdiag-0.9.5-11.fc28.noarch +python3-websocket-client-0.47.0-1.fc28.noarch +python3-werkzeug-0.12.2-2.fc28.noarch +qconf-1:2.4-2.fc28.x86_64 +qiv-2.3.1-7.fc28.x86_64 +qt-devel-1:4.8.7-44.fc28.x86_64 +qt5-devel-5.11.1-3.fc28.noarch +rachota-2.3-14.20130104cvs.fc28.noarch +rdpdesk-3.2-19.1.x86_64 +redhat-lsb-desktop-4.1-44.fc28.x86_64 +redhat-lsb-languages-4.1-44.fc28.x86_64 +redshift-1.11-8.fc28.x86_64 +redshift-gtk-1.11-8.fc28.x86_64 +remmina-plugins-rdp-1.2.32-1.fc28.x86_64 +remmina-plugins-secret-1.2.32-1.fc28.x86_64 +remmina-plugins-spice-1.2.32-1.fc28.x86_64 +riot-0.17.2-1.fc28.taw0.x86_64 +rkhunter-1.4.6-1.fc28.noarch +rofi-1.5.1-2.fc28.x86_64 +rpmfusion-free-release-28-1.noarch +rpmfusion-nonfree-release-28-1.noarch +rsyslog-8.38.0-1.fc28.x86_64 +rubygem-rails-1:5.1.5-1.fc28.noarch +rxvt-2.7.10-33.fc28.x86_64 +rxvt-unicode-9.22-8.fc28.x86_64 +scapy-2.3.3-2.fc27.noarch +schroedinger-cat-backgrounds-extras-base-18.91.0-8.fc28.noarch +scrot-0.8-18.fc28.x86_64 +seahorse-3.20.0-9.fc28.x86_64 +selinux-policy-devel-3.14.1-47.fc28.noarch +setools-console-4.1.1-9.fc28.x86_64 +sharutils-4.15.2-9.fc28.x86_64 +shim-x64-15-2.x86_64 +sil-gentium-fonts-1.02-22.fc28.noarch +sky-2.1.7300-1.fc28.x86_64 +sl-5.02-8.fc28.x86_64 +smplayer-18.10.0-1.fc28.x86_64 +sox-14.4.2.0-22.fc28.x86_64 +speedtest-cli-1.0.2-3.fc28.noarch +spice-gtk-tools-0.35-1.fc28.x86_64 +sssd-libwbclient-1.16.3-2.fc28.x86_64 +sssd-tools-1.16.3-2.fc28.x86_64 +stow-2.2.2-5.fc28.noarch +streamtuner-2.1.9-9.fc28.noarch +stress-1.0.4-20.fc28.x86_64 +svg-utils-0.1-7.1.noarch +svg2pdf-20110111-6.1.x86_64 +svgcleaner-0.6.2-6.1.x86_64 +sysfsutils-2.1.0-23.fc28.x86_64 +sysstat-11.7.3-1.fc28.x86_64 +system-config-kickstart-2.10.0-1.fc28.noarch +systemd-devel-238-9.git0e0aa59.fc28.x86_64 +task-2.5.1-9.fc28.x86_64 +tasksh-1.2.0-2.fc28.x86_64 +telepathy-glib-vala-0.24.1-8.fc28.x86_64 +telepathy-mission-control-1:5.16.4-6.fc28.x86_64 +telepathy-rakia-0.8.0-9.fc28.x86_64 +telred-fedora-28-5.fc28.noarch +terminus-fonts-4.40-8.fc28.noarch +termite-12-1.fc28.x86_64 +testssl-2.9.5-2.fc28.noarch +texlive-allrunes-6:svn21886.2.1-52.fc28.2.noarch +texlive-allrunes-doc-6:svn21886.2.1-52.fc28.2.noarch +texlive-bundledoc-7:20170520-41.fc28.noarch +texlive-collection-fontsextra-6:svn41166-52.20160520.fc28.noarch +texlive-collection-formatsextra-6:svn33658.0-52.20160520.fc28.noarch +texlive-collection-games-6:svn36348.0-52.20160520.fc28.noarch +texlive-collection-genericextra-6:svn39964-52.20160520.fc28.noarch +texlive-collection-genericrecommended-6:svn35655.0-52.20160520.fc28.noarch +texlive-collection-langarabic-6:svn40201-52.20160520.fc28.noarch +texlive-collection-langcjk-6:svn37224.0-52.20160520.fc28.noarch +texlive-collection-langcyrillic-6:svn41167-52.20160520.fc28.noarch +texlive-collection-langeuropean-6:svn39721-52.20160520.fc28.noarch +texlive-collection-langgerman-6:svn40098-52.20160520.fc28.noarch +texlive-collection-langgreek-6:svn39121-52.20160520.fc28.noarch +texlive-collection-langindic-6:svn35737.0-52.20160520.fc28.noarch +texlive-collection-langpolish-6:svn30372.0-52.20160520.fc28.noarch +texlive-collection-music-6:svn40561-52.20160520.fc28.noarch +texlive-collection-plainextra-6:svn37156.0-52.20160520.fc28.noarch +texlive-collection-publishers-6:svn41372-52.20160520.fc28.noarch +texlive-collection-science-6:svn39074-52.20160520.fc28.noarch +texlive-comicneue-6:svn37744.1.0-52.fc28.2.noarch +texlive-dejavu-6:svn31771.2.34-52.fc28.2.noarch +texlive-gentium-tug-6:svn37378.1.1-52.fc28.2.noarch +thefuck-3.15-3.fc28.noarch +thunderbird-enigmail-2.0.8-1.fc28.noarch +tidy-5.6.0-3.fc28.x86_64 +timew-1.1.1-1.fc28.x86_64 +tlp-1.1-1.fc28.noarch +tmux-powerline-2.7-1.fc28.noarch +tnef-1.4.15-2.fc28.x86_64 +toilet-0.3-3.fc28.x86_64 +torbrowser-launcher-0.2.9-1.fc28.noarch +transmission-cli-2.94-2.fc28.x86_64 +transmission-daemon-2.94-2.fc28.x86_64 +transmission-gtk-2.94-2.fc28.x86_64 +transmission-remote-cli-1.7.0-7.fc28.noarch +u3-tool-0.3-2.1.x86_64 +ubuntu-backgrounds-0.35.1-7.1.noarch +uml_utilities-20070815-21.fc28.x86_64 +umplayer-0.98.2-5.1.x86_64 +unbound-1.7.3-10.fc28.x86_64 +uni2ascii-4.18-3.1.x86_64 +unicode-2.1-5.1.noarch +unitedrpms-27-7.fc27.noarch +units-2.17-5.fc28.x86_64 +utf8proc-2.1.1-2.fc28.x86_64 +vim-latex-1.9.0-4.fc28.noarch +vim-latex-doc-1.9.0-4.fc28.noarch +vim-nerdtree-5.0.0-2.fc28.noarch +vim-powerline-2.7-1.fc28.noarch +vinagre-3.22.0-11.fc28.x86_64 +virt-manager-1.5.1-1.fc28.noarch +virt-top-1.0.8-29.fc28.x86_64 +virt-viewer-6.0-4.fc28.x86_64 +virtio-win-0.1.141-1.noarch +vit-1.3-0.1.beta1.fc28.noarch +vlc-3.0.5-4.fc28.x86_64 +vlc-extras-3.0.5-4.fc28.x86_64 +vnstat-1.17-4.fc28.x86_64 +w3c-markup-validator-1.3-14.fc28.noarch +w3m-0.5.3-38.git20180125.fc28.x86_64 +weechat-2.2-1.fc28.x86_64 +wesnoth-server-1.14.5-1.fc28.x86_64 +wesnoth-tools-1.14.5-1.fc28.x86_64 +wifi-radar-2.0.s10-6.fc28.noarch +wine-3.18-1.fc28.i686 +wine-capi-3.18-1.fc28.x86_64 +wine-desktop-3.18-1.fc28.noarch +winetricks-20180603-1.fc28.noarch +wireshark-gtk-1:2.6.2-1.fc28.x86_64 +wmctrl-1.07-23.fc28.x86_64 +wxsvg-1.5.12-5.fc28.x86_64 +xbacklight-1.2.2-1.fc28.x86_64 +xbattbar-acpi-0.4.0-3.1.x86_64 +xcalc-1.0.6-7.fc28.x86_64 +xcompmgr-1.1.7-5.fc28.x86_64 +xcpustate-2.9-20.1.x86_64 +xfce4-terminal-0.8.7.4-2.fc28.x86_64 +xirod-fonts-3.001-2.1.noarch +xl2tpd-1.3.8-7.fc28.x86_64 +xmonad-0.13-5.fc28.x86_64 +xorg-x11-server-devel-1.19.6-8.fc28.x86_64 +xsane-gimp-0.999-28.fc28.x86_64 +xscreensaver-extras-1:5.40-1.fc28.x86_64 +yamllint-1.12.1-1.fc28.noarch +yetris-2.3.0-4.1.x86_64 +youtube-dl-2018.09.26-1.fc28.noarch +yum-plugin-fastestmirror-1.1.31-515.fc28.noarch +zeitgeist-1.0-6.fc28.x86_64 +zsh-syntax-highlighting-0.6.0-2.fc28.noarch diff --git a/documentation/selinux/my-dbusdaemonlau.pp b/documentation/selinux/my-dbusdaemonlau.pp Binary files differnew file mode 100644 index 0000000..1fd321f --- /dev/null +++ b/documentation/selinux/my-dbusdaemonlau.pp diff --git a/documentation/selinux/my-dbusdaemonlau.te b/documentation/selinux/my-dbusdaemonlau.te new file mode 100644 index 0000000..a4112af --- /dev/null +++ b/documentation/selinux/my-dbusdaemonlau.te @@ -0,0 +1,11 @@ + +module my-dbusdaemonlau 1.0; + +require { + type system_dbusd_t; + type admin_home_t; + class file { map open }; +} + +#============= system_dbusd_t ============== +allow system_dbusd_t admin_home_t:file { map open }; diff --git a/documentation/selinux/my-iptables.pp b/documentation/selinux/my-iptables.pp Binary files differnew file mode 100644 index 0000000..3b4f469 --- /dev/null +++ b/documentation/selinux/my-iptables.pp diff --git a/documentation/selinux/my-iptables.te b/documentation/selinux/my-iptables.te new file mode 100644 index 0000000..849fb22 --- /dev/null +++ b/documentation/selinux/my-iptables.te @@ -0,0 +1,11 @@ + +module my-iptables 1.0; + +require { + type admin_home_t; + type iptables_t; + class file read; +} + +#============= iptables_t ============== +allow iptables_t admin_home_t:file read; diff --git a/documentation/selinux/my-kdumpdepgener.pp b/documentation/selinux/my-kdumpdepgener.pp Binary files differnew file mode 100644 index 0000000..6be9b5c --- /dev/null +++ b/documentation/selinux/my-kdumpdepgener.pp diff --git a/documentation/selinux/my-kdumpdepgener.te b/documentation/selinux/my-kdumpdepgener.te new file mode 100644 index 0000000..279be6e --- /dev/null +++ b/documentation/selinux/my-kdumpdepgener.te @@ -0,0 +1,11 @@ + +module my-kdumpdepgener 1.0; + +require { + type init_t; + type admin_home_t; + class file read; +} + +#============= init_t ============== +allow init_t admin_home_t:file read; diff --git a/documentation/selinux/my-pklacheckauth.pp b/documentation/selinux/my-pklacheckauth.pp Binary files differnew file mode 100644 index 0000000..f43f78d --- /dev/null +++ b/documentation/selinux/my-pklacheckauth.pp diff --git a/documentation/selinux/my-pklacheckauth.te b/documentation/selinux/my-pklacheckauth.te new file mode 100644 index 0000000..0b427de --- /dev/null +++ b/documentation/selinux/my-pklacheckauth.te @@ -0,0 +1,11 @@ + +module my-pklacheckauth 1.0; + +require { + type admin_home_t; + type policykit_auth_t; + class file map; +} + +#============= policykit_auth_t ============== +allow policykit_auth_t admin_home_t:file map; diff --git a/documentation/selinux/my-sssd.pp b/documentation/selinux/my-sssd.pp Binary files differnew file mode 100644 index 0000000..ef383f4 --- /dev/null +++ b/documentation/selinux/my-sssd.pp diff --git a/documentation/selinux/my-sssd.te b/documentation/selinux/my-sssd.te new file mode 100644 index 0000000..d733365 --- /dev/null +++ b/documentation/selinux/my-sssd.te @@ -0,0 +1,11 @@ + +module my-sssd 1.0; + +require { + type admin_home_t; + type sssd_t; + class file { getattr map open read }; +} + +#============= sssd_t ============== +allow sssd_t admin_home_t:file { getattr map open read }; diff --git a/documentation/selinux/my-unixchkpwd.pp b/documentation/selinux/my-unixchkpwd.pp Binary files differnew file mode 100644 index 0000000..85fff32 --- /dev/null +++ b/documentation/selinux/my-unixchkpwd.pp diff --git a/documentation/selinux/my-unixchkpwd.te b/documentation/selinux/my-unixchkpwd.te new file mode 100644 index 0000000..e0e3025 --- /dev/null +++ b/documentation/selinux/my-unixchkpwd.te @@ -0,0 +1,11 @@ + +module my-unixchkpwd 1.0; + +require { + type admin_home_t; + type chkpwd_t; + class file { map open read }; +} + +#============= chkpwd_t ============== +allow chkpwd_t admin_home_t:file { map open read }; |