There are two parts to networking within QEMU:
- The virtual network device that is provided to the guest (e.g. a PCI network card).
- The network backend that interacts with the emulated NIC (e.g. puts packets onto the host's network).
# Change colors of elements in Gnuplot | |
# change a color of border. | |
set border lw 3 lc rgb "white" | |
# change text colors of tics | |
set xtics textcolor rgb "white" | |
set ytics textcolor rgb "white" | |
# change text colors of labels |
# name: это строка которую транслитим | |
def transliterate(name): | |
""" | |
Автор: LarsKort | |
Дата: 16/07/2011; 1:05 GMT-4; | |
Не претендую на "хорошесть" словарика. В моем случае и такой пойдет, | |
вы всегда сможете добавить свои символы и даже слова. Только | |
это нужно делать в обоих списках, иначе будет ошибка. | |
""" | |
# Слоаврь с заменами |
<? | |
///////////////////// | |
// slack2html | |
// by @levelsio | |
///////////////////// | |
// | |
///////////////////// | |
// WHAT DOES THIS DO? | |
///////////////////// | |
// |
#!/bin/bash | |
if [ "$#" -ne 1 ]; then | |
echo | |
echo "No hostname given to obtain certificate status" | |
echo "\tuse: $0 www.example.com" | |
echo | |
exit 1 | |
fi |
USB Quick Start | |
=============== | |
XHCI controller support | |
----------------------- | |
QEMU has XHCI host adapter support. The XHCI hardware design is much | |
more virtualization-friendly when compared to EHCI and UHCI, thus XHCI | |
emulation uses less resources (especially cpu). So if your guest |