virt-manager Unable to initialize GTK: could not open display

在使用virt-manager安装kvm虚拟机的时候,启动报错,提示Unable to initialize GTK: could not open display

查看日志显示:WARNING! The remote SSH server rejected X11 forwarding request.

解决办法:yum -y install xorg-x11-xauth 退出xshell后从新登录,然后再调用virt-manager即可。

时间: 2024-10-14 10:34:41

virt-manager Unable to initialize GTK: could not open display的相关文章

嵌入式linux系统中,lsusb出现unable to initialize libusb: -99 解决办法 【转】

转自:http://cpbest.blog.163.com/blog/static/41241519201111575726966/ libusb是linux系统中,提供给用户空间访问usb设备的API,方便从linux内核中获取或设置usb设备的信息.lsusb这个用户空间程序,也正是依赖libusb提供的接口API来实现对系统当前的usb总线的扫描,从而显示当前系统存在的usb设备的. 在嵌入式linux中,输入lsusb命名,出现unable to initialize libusb: -

unable to initialize provider

场景:新服务器发布 系统:windows server 2012 程序环境:mysql6.9.5,iis8.5,.net4.0 错误:unable to initialize provider 分析原因:项目中采用了membership,安装新数据库时直接copy了原数据库的membership表 解决方法:步骤1.假如数据库中没有membership的表,修改machine.config (c:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\Config

LR12“License Manager was not initialize”问题决方法

今天使用loadrunner12进行压测,开始执行时直接失败了,查看ERROR信息报的"License Manager was not initialize".百度了一下没有找到解决方案.后来在HP官方社区找到了原因. 环境:Windows server2008+loadrunner12社区版 由于Windows Server2008有DEP系统(磁盘数据保护),导致LR的License Manager无法初始化.解决方法很简单:关闭DEP(关闭有风险,真实上服务器谨慎操作). 关闭方

pb - unable to initialize client library context

电脑一主程序正常,打开另一程序时,总是提示 unable to initialize client library context 从DSEDIT发现 "Loaded the Dynamic Link Library NLWNSCK.DLL (c:\sybase\DLL\NLWNSCK.DLL)" 找到“c:\sybase\DLL”,把下边的DLL全部复制出来,程序正常打开.

MATLAB读视频报错 Unable to initialize the video obtain properties (videoreader in Matlab)

这个bug卡了半天,这里记录一下 Error using VideoReader/init (line 619) Could not read file due to an unexpected error. Reason: Unable to initialize the video obtain properties Error in VideoReader (line 172) obj.init(fileName); 环境:Ubuntu16.04 参考:stackoverflow 首先安装

dbus启动失败:Couldn't connect to system bus: Unable to autolaunch a dbus-daemon without a $DISPLAY for X11

在没有开启x窗口的shell下启动dbus相关程序时会如上错误,详细原因如下: This is not considered to be a bug. Auto-launching D-Bus sessions whennot under X11 would result in one new D-Bus session per application thattried to use it, unable to communicate with other user-facingapplica

ubuntu使用virt manager kvm

首先在确定自己的CPU支持硬件虚拟化,有些可能要在BIOS中开启 找到 Intel Virtualization Technlogy 并打开 要确定自己的内核支持KVM uname -a 2.6以上的内核一般都支持 安装KVM和virt软件包 virt-manager (图形化管理工具) python-vm-builder (创建基于Ubuntu的虚拟机的脚本,可选) sudo apt-get install kvm ubuntu-virt-server kvm-pxe sudo apt-get

SecureCRT连接virt-manager 管理KVM

安装KVM后,我们通过SecureCRT管理virt-manager 首先在KVM本机执行:  编辑sshd_config:  # vi /etc/ssh/sshd_config  #Match User anoncvs         X11Forwarding yes #       AllowTcpForwarding no 安装相关组件 #yum install -y xorg-x11-font-utils.x86_64 xorg-x11-server-utils.x86_64 xorg

kvm安装和配置

硬件环境Dell R730 软件环境CentoS6.8 minimal 1.看物理机(主要是CPU)是否支持虚拟机技术   通过以下命令查看:(注意xen和kvm不能共存,在带xen内核的系统中使用下面的命令会无效,即使你的机器支持VT技术也不会查到vmx或者svm)     egrep '(vmx|svm)' --color=always /proc/cpuinfo 2.安装KVM    yum install -y kvm kmod-kvm kvm-qemu-img libvirt Pyth