Wine、Cedega、CrossOver 等配置
-
Veryczn
- 帖子: 164
- 注册时间: 2009-04-04 14:53
#1
帖子
由 Veryczn » 2010-05-22 13:34
安装后无法使用,根本.wine-thunder里面没有迅雷的文件,终端提示解压时出错,怎么办?
求解!!估计是解压的时候出了问题。
代码: 全选
veryczn@Veryczn-Mobile-Studio:~$ /usr/bin/wine-thunder
Virtual drive_c doesn't exist, now will create it.
/usr/bin/wine-thunder: 14: wineprefixcreate: not found
ln: 目标 “/home/veryczn/.wine-thunder/drive_c/windows/Fonts/” 不是目录: 没有那个文件或目录
tar: /home/veryczn/.wine-thunder/drive_c/Program Files:无法 chdir: 没有那个文件或目录
tar: 错误不可恢复:现在退出
wine: created the configuration directory '/home/veryczn/.wine-thunder'
fixme:msvcrt:_setmbcp trail bytes data not available for DBCS codepage 0 - assuming all bytes
fixme:system:SetProcessDPIAware stub!
fixme:dwmapi:DwmIsCompositionEnabled 0x33cff4
fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented
fixme:advapi:SetNamedSecurityInfoW L"C:\\windows\\system32\\gecko\\1.0.0\\wine_gecko\\components\\xpti.dat" 1 536870916 (nil) (nil) 0x18cdb4 (nil)
fixme:iphlpapi:NotifyAddrChange (Handle 0x268e8d8, overlapped 0x268e8e0): stub
fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented
fixme:advapi:SetNamedSecurityInfoW L"C:\\windows\\system32\\gecko\\1.0.0\\wine_gecko\\components\\compreg.dat" 1 536870916 (nil) (nil) 0x1d4bfdc (nil)
wine: configuration in '/home/veryczn/.wine-thunder' has been updated.
fixme:msvcrt:_setmbcp trail bytes data not available for DBCS codepage 0 - assuming all bytes
Creation finished, now will launch wine-thunder.
wine: cannot find '/home/veryczn/.wine-thunder/drive_c/Program Files/Thunder/Thunder.exe'
-
peteryeh64
- 论坛版主
- 帖子: 9386
- 注册时间: 2008-12-20 15:43
- 系统: 家kubuntu20.04
- 来自: 心靈深處
#2
帖子
由 peteryeh64 » 2010-05-22 13:45

打電話去罵迅雷...為什麼不開發for ubuntu的.deb包...
[论坛版主行为规定]+
[PITIVI簡易教程]+
[ubuntu裝迅雷]
[releases.ubuntu.com]+[cdimage.ubuntu.com]+[old-releases.ubuntu.com]
[學ubuntu必須拜讀懶蝸牛"笨兔兔的故事"=viewtopic.php?f=112&t=162040][Linux明日的希望在中國]
-
sunjacker
- 帖子: 84
- 注册时间: 2009-07-19 17:19
#4
帖子
由 sunjacker » 2010-05-27 19:57
Veryczn 写了:
可以把 deb 用 ark 打开解压
找到迅雷 得文件夹 直接wine 就可以 也不用装deb
-
Veryczn
- 帖子: 164
- 注册时间: 2009-04-04 14:53
#5
帖子
由 Veryczn » 2010-05-27 22:02
现在回到Kubuntu的拥抱,一点问题也没有。但是Gnome下的问题仍然无解?另外Kubuntu中Wine的Browse C:Drive的菜单似乎有问题~~
-
lwt8787
- 帖子: 70
- 注册时间: 2009-01-15 22:12
#6
帖子
由 lwt8787 » 2010-06-01 23:37
解决方法如下:
用‘归档管理器’打开迅雷的deb包,找到data.tar.gz, 双击,打开‘。’文件夹,然后一次打开usr/share/就看到thunder的文件夹了,把这个文件夹解压缩到 ./wine-thunder/c:/program里边就可以了
Think Green: Read On The Screen
-
ocnzhao
- 帖子: 65
- 注册时间: 2008-12-14 11:47
-
联系:
#7
帖子
由 ocnzhao » 2010-07-25 19:11
lwt8787 写了:解决方法如下:
用‘归档管理器’打开迅雷的deb包,找到data.tar.gz, 双击,打开‘。’文件夹,然后一次打开usr/share/就看到thunder的文件夹了,把这个文件夹解压缩到 ./wine-thunder/c:/program里边就可以了
正解,既然安装一遍,把thunder文件夹拷贝过去就行
-
kkldv
- 帖子: 59
- 注册时间: 2010-01-22 20:21
#9
帖子
由 kkldv » 2010-08-02 11:02
很好解决
首先把~/.wine-thunder这个文件夹删除
再把/usr/bin/wine-thunder这个文件改成如下内容
#! /bin/sh
export WINEPREFIX=$HOME/.wine-thunder
export LANG=zh_CN.utf8
if [ -e $WINEPREFIX ];then
echo "Virtual drive_c exists. If Thunder doesn't work, try remove directory ~/.wine-thunder and restart."
else
echo "Virtual drive_c doesn't exist, now will create it."
regedit /usr/share/thunder/init.reg
wineprefixcreate --prefix $WINEPREFIX
ln -s /usr/share/fonts/truetype/wqy/wqy-microhei.ttc ~/.wine-thunder/drive_c/windows/Fonts/
tar -xzf /usr/share/thunder/Thunder.tar.gz -C $WINEPREFIX/drive_c/Program\ Files/
echo "Creation finished, now will launch wine-thunder."
fi
wine $WINEPREFIX/drive_c/Program\ Files/Thunder/Thunder.exe
这个与原先的没什么大区别
只是把regedit /usr/share/thunder/init.reg这一行提前了
我想这是一个失误吧
没有注册就开始进行操作了