交叉编译调试qemu_guest_agent
Winodws版本
编译环境Fedora23
下载VSS SDK的setup.exe
提取VSS SDK头文件
将下面的代码保存成extract-vsssdk-headers.sh脚本,然后放入setup.exe所在的/home/fedora/Downloads
目录,然后执行./extract-vsssdk-headers.sh setup.exe
#! /bin/bash
# extract-vsssdk-headers
# Author: Paolo Bonzini <pbonzini@redhat.com>
set -e
if test $# != 1 || ! test -f "$1"; then
echo 'Usage: extract-vsssdk-headers /path/to/setup.exe' >&2
exit 1
fi
if ! command -v msiextract > /dev/null; then
echo 'msiextract not found. Please install msitools.' >&2
exit 1
fi
if test -e inc; then
echo '"inc" already exists.' >&2
exit 1
fi
# Extract .MSI file in the .exe, looking for the OLE compound
# document signature. Extra data at the end does not matter.
export LC_ALL=C
MAGIC=$'\xd0\xcf\x11\xe0\xa1\xb1\x1a\xe1'
offset=$(grep -abom1 "$MAGIC" "$1" | sed -n 's/:/\n/; P')
tmpdir=$(mktemp -d)
trap 'rm -fr -- "$tmpdir" vsssdk.msi' EXIT HUP INT QUIT ALRM TERM
tail -c +$(($offset+1)) -- "$1" > vsssdk.msi
# Now extract the files.
msiextract -C $tmpdir vsssdk.msi
mv "$tmpdir/Program Files/Microsoft/VSSSDK72/inc" inc
echo 'Extracted SDK headers into "inc" directory.'
exit 0
安装交叉编译依赖
下载qemu源文件
安装依赖
- 32位环境
[fedora@bogon ~]$ rpm -qa|grep mingw32
mingw32-gcc-c++-4.9.2-1.fc21.x86_64
mingw32-SDL-1.2.15-5.fc21.noarch
mingw32-termcap-1.3.1-17.fc21.noarch
mingw32-filesystem-100-1.fc21.noarch
mingw32-glib2-static-2.42.2-1.fc21.noarch
mingw32-winpthreads-4.0.1-1.fc21.noarch
mingw32-binutils-2.25-1.fc21.x86_64
mingw32-win-iconv-0.0.6-2.fc21.noarch
mingw32-gettext-0.18.3.2-2.fc21.noarch
mingw32-gmp-6.0.0-2.fc21.noarch
mingw32-zlib-static-1.2.8-3.fc21.noarch
mingw32-headers-4.0.1-1.fc21.noarch
mingw32-nsis-2.46-13.fc21.x86_64
mingw32-gcc-4.9.2-1.fc21.x86_64
mingw32-zlib-1.2.8-3.fc21.noarch
mingw32-winpthreads-static-4.0.1-1.fc21.noarch
mingw32-gettext-static-0.18.3.2-2.fc21.noarch
mingw32-cpp-4.9.2-1.fc21.x86_64
mingw32-libffi-3.0.13-5.fc21.noarch
mingw32-glib2-2.42.2-1.fc21.noarch
mingw32-crt-4.0.1-1.fc21.noarch
mingw32-pkg-config-0.28-4.fc21.x86_64
mingw32-pixman-0.32.6-1.fc21.noarch
- 64位环境
[fedora@bogon ~]$ rpm -qa|grep mingw64
mingw64-binutils-2.25-1.fc21.x86_64
mingw64-glib2-2.42.2-1.fc21.noarch
mingw64-crt-4.0.1-1.fc21.noarch
mingw64-win-iconv-0.0.6-2.fc21.noarch
mingw64-gettext-static-0.18.3.2-2.fc21.noarch
mingw64-winpthreads-4.0.1-1.fc21.noarch
mingw64-gcc-4.9.2-1.fc21.x86_64
mingw64-termcap-1.3.1-17.fc21.noarch
mingw64-glib2-static-2.42.2-1.fc21.noarch
mingw64-headers-4.0.1-1.fc21.noarch
mingw64-gcc-c++-4.9.2-1.fc21.x86_64
mingw64-zlib-1.2.8-3.fc21.noarch
mingw64-gettext-0.18.3.2-2.fc21.noarch
mingw64-filesystem-100-1.fc21.noarch
mingw64-pkg-config-0.28-4.fc21.x86_64
mingw64-libffi-3.0.13-5.fc21.noarch
mingw64-zlib-static-1.2.8-3.fc21.noarch
mingw64-cpp-4.9.2-1.fc21.x86_64
mingw64-winpthreads-static-4.0.1-1.fc21.noarch
编译qemu-ga.exe
- 32位编译指令
cd /home/fedora/Downloads/qemu-2.6.0 && ./configure --enable-guest-agent --cross-prefix=i686-w64-mingw32- --with-vss-sdk=/home/fedora/Downloads && make msi
- 64位编译指令
cd /home/fedora/Downloads/qemu-2.6.0 && ./configure --enable-guest-agent --cross-prefix=x86_64-w64-mingw32- --with-vss-sdk=/home/fedora/Downloads && make msi
修改虚拟机配置
使用virsh edit 域名
编辑配置文件,添加如下内容
<channel type='unix'>
<source mode='bind' path='/var/lib/libvirt/qemu/f16x86_64.agent'/>
<target type='virtio' name='org.qemu.guest_agent.0'/>
</channel>
其中path
对应的是主机上的文件,虚拟机启动时候自动创建,用于和虚拟机进行通信,文件名不能和其他虚拟机重复,但name为固定值不能修改
安装qemu-ga.exe
qemu-ga.exe只能安装到win7以上版本
标准方法
直接双击msi完成安装
手动手法
- 安装virtio
- 在虚拟机中创建C:\Program Files\QEMU\run目录
- 拷贝qemu-ga.exe、qga-vss.dll、qga-vss.tlb文件到run目录
- 使用管理员身份在run启动一个控制台,执行
qemu-ga.exe –l "C:\Program Files\QEMU\run\log.txt" –s install
命令,出现如下字样表示成功
Registering QEMU Guest Agent VSS Provider:
C:\Program Files\QEMU\run\qga-vss.dll
C:\Program Files\QEMU\run\qga-vss.tlb
Service was installed successfully
- 执行
net start qemu-ga
启动服务,出现如下字样表示成功
QEMU Guest Agent 服务正在启动.
QEMU Guest Agent 服务已经启动成功.
Linux版本
编译环境Fedora23
下载qemu源文件
编译qemu-ga
cd /home/fedora/Downloads/qemu-2.6.0 && ./configure --enable-guest-agent && make qemu-ga
修改虚拟机配置
使用virsh edit 域名
编辑配置文件,添加如下内容
<channel type='unix'>
<source mode='bind' path='/var/lib/libvirt/qemu/f16x86_64.agent'/>
<target type='virtio' name='org.qemu.guest_agent.0'/>
</channel>
其中path
对应的是主机上的文件,虚拟机启动时候自动创建,用于和虚拟机进行通信,文件名不能和其他虚拟机重复,但name为固定值不能修改
安装qemu-ga
以下操作在虚拟机中执行
- 安装virtio
- 拷贝qemu-ga到/usr/bin目录
- 拷贝/home/fedora/Downloads/qemu-2.6.0/scripts/qemu-guest-agent/目录下的fsfreeze-hook文件和fsfreeze-hook.d目录到/usr/libexec/qemu-ga/目录
- 将下面内容保存为qemu-ga文件,并放入/etc/sysconfig/目录
# Transport method may be one of following:
# * unix-listen
# * virtio-serial
# * isa-serial
# Default: virtio-serial
TRANSPORT_METHOD="virtio-serial"
# You also can override the device/socket path
# Default: /dev/virtio-ports/org.qemu.guest_agent.0
DEVPATH="/dev/virtio-ports/org.qemu.guest_agent.0"
# If logfile is unset it defaults to stderr but the daemon
# function of init script redirects stderr to /dev/null
LOGFILE="/var/log/qemu-ga/qemu-ga.log"
# Override pidfile name
# Default: /var/run/qemu-ga.pid
PIDFILE="/var/run/qemu-ga.pid"
# SELinux note:
# About guest arbitrary file read/write
#
# A new selinux policy is introduced on RHEL-6.4 to deny qemu-ga to
# read/write arbitrary guest files except the device file used to talk
# with host processes, LOGFILE and PIDFILE.
#
# You can disable this policy by "restorecon -R -v /usr/bin/qemu-ga"
# Comma-separated blacklist of RPCs to disable or empty list to enable all
# Tip: You can get the list of RPC commands using `qemu-ga --blacklist ?`
# Default: blank list to enable all RPCs
# Note: There should be no spaces between commas and commands in the blacklist
BLACKLIST_RPC="guest-file-open,guest-file-close,guest-file-read,guest-file-write,guest-file-seek,guest-file-flush"
# Enable fsfreeze hook. See the --fsfreeze-hook option in "qemu-ga --help".
FSFREEZE_HOOK_ENABLE=0
# Set the option argument for --fsfreeze-hook, which is the full pathname of
# the hook script. An empty or unset value designates the default script
# (invoke "qemu-ga --help" to interrogate).
#
# This setting (independently of value) takes effect only when
# FSFREEZE_HOOK_ENABLE is nonzero.
FSFREEZE_HOOK_PATHNAME=/usr/libexec/qemu-ga/fsfreeze-hook
- 将下面内容保存为qemu-ga文件,并放入/etc/rc.d/init.d/目录
#! /bin/sh
#
# qemu-ga Start/Stop qemu-ga daemon
#
# chkconfig: 345 30 30
# description: qemu guest agent daemon
# processname: qemu-ga
# Source function library.
. /etc/init.d/functions
# Check that we're a privileged user
[ `id -u` = 0 ] || exit 4
[ -f /etc/sysconfig/qemu-ga ] && . /etc/sysconfig/qemu-ga
prog="qemu-ga"
RETVAL=0
lockfile=/var/lock/subsys/$prog
start() {
# Check if binary is installed & executable
[ -f /usr/bin/$prog ] && [ -x /usr/bin/$prog ] || exit 5
# Check the device/path exists
[ -n "$DEVPATH" ] && [ -e "$DEVPATH" ] || exit 6
echo -n $"Starting $prog: "
ARGS="--daemonize"
[ ! -z "$TRANSPORT_METHOD" ] && ARGS="$ARGS --method $TRANSPORT_METHOD"
[ ! -z "$DEVPATH" ] && ARGS="$ARGS --path $DEVPATH"
[ ! -z "$LOGFILE" ] && ARGS="$ARGS --logfile $LOGFILE"
[ ! -z "$PIDFILE" ] && ARGS="$ARGS --pidfile $PIDFILE"
[ ! -z "$BLACKLIST_RPC" ] && ARGS="$ARGS --blacklist $BLACKLIST_RPC"
if [ "$FSFREEZE_HOOK_ENABLE" -ne 0 ] 2>/dev/null; then
ARGS="$ARGS --fsfreeze-hook"
if [ -n "$FSFREEZE_HOOK_PATHNAME" ]; then
ARGS="$ARGS=$FSFREEZE_HOOK_PATHNAME"
fi
fi
daemon /usr/bin/$prog $ARGS
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && touch $lockfile
return $RETVAL
}
stop() {
echo -n $"Stopping $prog: "
killproc $prog
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && rm -f $lockfile
return $RETVAL
}
restart() {
stop
start
}
# See how we were called.
case "$1" in
start)
start
;;
stop)
stop
;;
status)
status $prog
;;
restart|reload|force-reload)
restart
;;
condrestart|try-restart)
[ -f $lockfile ] && restart || :
;;
*)
echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}"
exit 2
esac
exit $?
- 执行
service qemu-ga start
命令启动服务 - 执行
chkconfig qemu-ga on
命令设置开机启动
Solaris版本
编译环境Solaris 10
下载qemu源文件
需要在solaris系统中进行解压缩,拷贝进去会出现文件名全部变成小写的情况
设置编译环境
步骤 | 说明 | 命令 |
---|---|---|
安装pkgutil | 一种自动化安装工具,类似CentOS的yum | pkgadd -d http://get.opencsw.org/now |
设置bash环境 | 自动tab补齐 | 编辑/etc/passwd的root用户的/sbin/sh为/bin/bash |
设置编译bash环境 | configure使用的bash | 将系统自带的/usr/bin/sh保存为/usr/bin/sh.bak,然后建立/usr/bin/sh软链接到/usr/bin/bash |
扩展PATH路径 | 设置pkgutil的可执行路径 | 拷贝/etc/skel/local.profile为/.profile,然后修改PATH=/usr/bin:/usr/local/bin:/usr/ucb:/etc:/usr/sbin:/opt/csw/bin:/usr/ccs/bin:/usr/sfw/bin:.,最后添加export PS1='\u:\w#' |
安装gcc | 安装编译器 | pkgutil -i gcc5core |
安装glib | 安装编译器 | pkgutil -i glib2_devel_stub |
编译qemu-ga
./configure --cc=gcc --install=/usr/ucb/install --target-list= --cpu= --enable-guest-agent --without-pixman --disable-tools --disable-system --disable-fdt && gmake qemu-ga
测试
在主机上执行virsh qemu-agent-command domain_name --cmd '{"execute":"guest-fsfreeze-status"}'
命令测试虚拟机中的qemu-ga
运行是否正常
调试
Winodws版本
安装mingw32文件系统
[fedora@fedora ~]$ sudo yum -y install mingw32-filesystem.noarch
安装gdb
[fedora@fedora ~]$ sudo yum -y install mingw32-gdb.noarch
到
/usr/i686-w64-mingw32/sys-root/mingw/bin/
目录下提取gdb相关文件gdb.exe gdbserver.exe libexpat-1.dll zlib1.dll
将gdb相关文件放入qemu-ga.exe所在目录
到服务列表关闭已经启动的qemu相关服务,否则调试的时候会提示
failed to initialize guest agent channel
用管理员身份启动cmd,然后切换到qemu-ga.exe所在目录,使用
gdb.exe qemu-ga.exe
进行调试先执行
run
待程序能正常运行后使用ctrl+c
暂停程序设置断点,由于没法加载源文件,只能去编译端查看要设置的断点位置,然后使用break filename:line
的方式设置断点或者使用
gdbserver.exe 0.0.0.0:2345 qemu-ga.exe
开启远程调试,然后在编译端使用gdb qemu-ga.exe
开启调试,然后使用target remote guest_ip:2345
命令连接远程调试,这个的好处在于能加载编译端本地的源文件
交叉编译调试qemu_guest_agent的更多相关文章
- 01.ubuntu16.06编译安装Hi3518EV200 SDK
转载,侵删 HI3518EV200 SDK安装并编译osdr. 1.开发环境 windows10电脑 + 虚拟机14 Pro + Ubuntu16.0.4 2.拷贝并解压.将 Hi3518E_SDK_ ...
- eclipse的C/C++开发搭建
环境 宿主机:ubuntu 16.04 交叉编译:gcc-linaro-4.9-2014.11 ubuntu自带源 eclipse 安装(想使用新版直接跳过) 安装eclipse sudo apt-g ...
- codeblocks 配置交叉编译和调试环境
我要用codeblocks交叉编译和调试arm开发板上的程序,宿主机是ubuntu12.04.开发板是嵌入式linux操作系统. 1.配置交叉编译环境 由上到下,1处直接选择即可.2处是你交叉编译器安 ...
- Linux下交叉编译gdb,gdbserver+gdb的使用以及通过gdb调试core文件
交叉编译gdb和gdbserver 1.下载gdb:下载地址为:http://ftp.gnu.org/gnu/gdb/按照一般的想法,最新版本越好,因此下载7.2这个版本.当然,凡事无绝对.我们以gd ...
- 嵌入式arm-linux mips-linux 交叉编译GDB,结合vscode图形化调试使用,coredump定位段错误
第一部分:使用GDB GDB源码下载路径:http://ftp.gnu.org/gnu/gdb/ 遇到的主要难点: 选择合适的GDB源码版本 我的mips-linux交叉编译器不支持C++11特性,所 ...
- linux应用调试技术之GDB和GDBServer
1.调试原理 GDB调试是应用程序在开发板上运行,然后在PC机上对开发板上得应用程序进行调试,PC机运行GDB,开发板上运行GDBServer.在应用程序调试的时候,pc机上的gdb向开发板上的GDB ...
- Linux主机上使用交叉编译移植u-boot到树莓派
0环境 Linux主机OS:Ubuntu14.04 64位,运行在wmware workstation 10虚拟机 树莓派版本:raspberry pi 2 B型. 树莓派OS: Debian Jes ...
- Linux 14.04lts 环境下搭建交叉编译环境arm-linux-gcc-4.5.1
交叉编译工具链是为了编译.链接.处理和调试跨平台体系结构的程序代码,在该环境下编译出嵌入式Linux系统所需要的操作系统.应用程序等,然后再上传到目标板上. 首 先要明确gcc 和arm-linux- ...
- Windows7 64位系统搭建Cocos2d-x-2.2.1最新版以及Android交叉编译环境(详细教程)
Windows7 64位系统搭建Cocos2d-x-2.2.1最新版以及Android交叉编译环境(详细教程) 声明:本教程在参考了以下博文,并经过自己的摸索后实际操作得出,本教程系本人原创,由于升级 ...
随机推荐
- 高性能 Socket 组件 HP-Socket v3.2.1-RC1 公布
HP-Socket 是一套通用的高性能 TCP/UDP Socket 组件.包括服务端组件.client组件和 Agent 组件.广泛适用于各种不同应用场景的 TCP/UDP 通信系统.提供 C/C+ ...
- 20170325 ABAP调用webservice
转自:http://www.cnblogs.com/SolisOculus/archive/2013/04/01/2993198.html 在ABAP中调用Webservice 1.创建Pro ...
- Java for LeetCode 113 Path Sum II
Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given su ...
- wampserver发布详解
以下为wampserver发布php并绑定域名的操作 1 在“httpd.conf”文件中查找:Include conf/extra/httpd-vhosts.conf,去掉前面的注释# 2 打开ap ...
- HDU2243 考研路茫茫——单词情结 ——AC自动机、矩阵优化
题目链接:https://vjudge.net/problem/HDU-2243 考研路茫茫——单词情结 Time Limit: 2000/1000 MS (Java/Others) Memor ...
- Spring Boot2.0之 yml的使用
yml Spring Boot 默认读取 .yml .properties 结尾的 yml非常好的作用,比properties更节约 结构清晰 server: port: 8090 con ...
- redis持久化【转】
Redis是一种高级key-value数据库.它跟memcached类似,不过数据可以持久化,而且支持的数据类型很丰富.有字符串,链表,集 合和有序集合.支持在服务器端计算集合的并,交和补集(diff ...
- ZOJ 1141 Closest Common Ancestors(LCA)
注意:poj上的数据与zoj不同,第二处输入没有逗号 ' , ' 题意:输出测试用例中是最近公共祖先的节点,以及这个节点作为最近公共祖先的次数. 思路:直接求,两个节点一直往上爬,知道爬到同一个节点, ...
- mysql密码过期的修改方法(your password has expired)
今天打开SQLyog提示密码过期:Your password has expired 解决方法: 1. 启动MySQL服务 2. 启动MySQL后台 3. 执行以下命令 step 1: S ...
- Python实现结对编程项目
Github (李昆乘)(陈俊豪) 开发流程 PSP2.1 PSP2.1 Personal Software Process Stages 预估耗时(分钟) 实际耗时(分钟) Planning 计划 ...