分页: 1 / 1

安装迅雷 deb 无法运行。

发表于 : 2010-05-22 13:34
Veryczn
安装后无法使用,根本.wine-thunder里面没有迅雷的文件,终端提示解压时出错,怎么办?
求解!!估计是解压的时候出了问题。 :em20 :em20

代码: 全选

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'

Re: 安装迅雷 deb 无法运行。

发表于 : 2010-05-22 13:45
peteryeh64
:em04 打電話去罵迅雷...為什麼不開發for ubuntu的.deb包...

Re: 安装迅雷 deb 无法运行。

发表于 : 2010-05-22 13:47
Veryczn
:em06

Re: 安装迅雷 deb 无法运行。

发表于 : 2010-05-27 19:57
sunjacker
Veryczn 写了::em06

可以把 deb 用 ark 打开解压

找到迅雷 得文件夹 直接wine 就可以 也不用装deb

Re: 安装迅雷 deb 无法运行。

发表于 : 2010-05-27 22:02
Veryczn
现在回到Kubuntu的拥抱,一点问题也没有。但是Gnome下的问题仍然无解?另外Kubuntu中Wine的Browse C:Drive的菜单似乎有问题~~

Re: 安装迅雷 deb 无法运行。

发表于 : 2010-06-01 23:37
lwt8787
解决方法如下:
用‘归档管理器’打开迅雷的deb包,找到data.tar.gz, 双击,打开‘。’文件夹,然后一次打开usr/share/就看到thunder的文件夹了,把这个文件夹解压缩到 ./wine-thunder/c:/program里边就可以了

Re: 安装迅雷 deb 无法运行。

发表于 : 2010-07-25 19:11
ocnzhao
lwt8787 写了:解决方法如下:
用‘归档管理器’打开迅雷的deb包,找到data.tar.gz, 双击,打开‘。’文件夹,然后一次打开usr/share/就看到thunder的文件夹了,把这个文件夹解压缩到 ./wine-thunder/c:/program里边就可以了
正解,既然安装一遍,把thunder文件夹拷贝过去就行

Re: 安装迅雷 deb 无法运行。

发表于 : 2010-07-30 19:57
283703134
用ubuntu自带的wine版本也可以,我试过直接可以用的

Re: 安装迅雷 deb 无法运行。

发表于 : 2010-08-02 11:02
kkldv
很好解决
首先把~/.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这一行提前了
我想这是一个失误吧
没有注册就开始进行操作了