分页: 1 / 1

何解用新立得装的VMware Player一打开就定住了?

发表于 : 2006-10-14 18:02
爱国者黑客
一打开就定住在选择的窗口了!何解?高手指点!谢谢! :oops:

发表于 : 2006-10-14 18:39
jimmin
cd /usr/bin/
sudo gedit vmplayer

修改/usr/bin/vmplayer这个脚本,在第一行后面加上unset GTK_IM_MODULE

发表于 : 2006-10-14 20:11
爱国者黑客
#!/bin/sh
#
# Copyright 2005 VMware, Inc. All rights reserved.
#
# Wrapper for the real 'vmplayer' binary. Ensure that the binary will find
# all the shared libraries it needs. If a shared library is not available from any

在哪加?

发表于 : 2006-10-14 22:39
jimmin
我觉得加在哪无所谓
你可以先试试

代码: 全选

unset GTK_IM_MODULE
#!/bin/sh 
# 
# Copyright 2005 VMware, Inc. All rights reserved. 
# 
# Wrapper for the real 'vmplayer' binary. Ensure that the binary will find 
# all the shared libraries it needs. If a shared library is not available from any
不行再换成

代码: 全选

#!/bin/sh 
unset GTK_IM_MODULE
# 
# Copyright 2005 VMware, Inc. All rights reserved. 
# 
# Wrapper for the real 'vmplayer' binary. Ensure that the binary will find 
# all the shared libraries it needs. If a shared library is not available from any
我加在了第二行是成功的,你可以先试试第一行看看行不行,我现在在Windows下用VMware Workstation创建虚拟系统,没办法试。
我准备把Windows格式化了只装Ubuntu,然后在虚拟机中用XP.

发表于 : 2006-10-14 23:14
爱国者黑客
解决了~谢谢!