求助!刚装的wine什么软件都运行不了

Wine、Cedega、CrossOver 等配置
回复
Reikon_cn
帖子: 3
注册时间: 2013-10-30 23:24
系统: ubuntu

求助!刚装的wine什么软件都运行不了

#1

帖子 Reikon_cn » 2013-11-21 23:56

ubuntu 13.10下, 直接用apt-get install wine 装的。
wine 版本1.4.1

然后就是什么软件都运行不了,运行notepad.exe提示如下:
~/文档$ wine notepad.exe
fixme:system:SetProcessDPIAware stub!
fixme:heap:HeapSetInformation (nil) 1 (nil) 0

自己在windows下用C写了个helloworld.exe倒是能用wine运行
guratony
帖子: 18
注册时间: 2013-04-30 19:28
系统: ubuntu 13.04

Re: 求助!刚装的wine什么软件都运行不了

#2

帖子 guratony » 2013-11-22 23:04

你先用winetricks安装几个常用的Vc库等常见的win环境看看。我虽然wine了很多软件但是,不成的情况还挺少见。。。 :em06
头像
eexpress
帖子: 58428
注册时间: 2005-08-14 21:55
来自: 长沙

Re: 求助!刚装的wine什么软件都运行不了

#3

帖子 eexpress » 2013-11-22 23:14

代码: 全选

● cat bin/wine.sh 
o=`xrandr|grep -o '.*\*'|cut -d' ' -f 4`
echo $o
#n=800x600
#r=76
n=960x540
r=68
d=`dirname "$1"`
echo $d
cd "$d"
e=`basename "$1"`
#wine explorer /desktop=foo,$r "$e"
xrandr --output default --mode $n --rate $r
echo change to $n
#wine "$e"
wine explorer /desktop=foo,$n "$e"
xrandr --output default --mode $o
以前玩游戏用的,适合异常的屏幕分辨率下使用。现在都没安装wine。
● 鸣学
回复