wine1.5.27怎么安装
-
- 帖子: 14
- 注册时间: 2013-04-07 14:06
- 系统: ubuntu
wine1.5.27怎么安装
在网上下载了wine1.5.27解压后没有makefile文件,该如何安装呀,还有就是怎样按照http://forum.ubuntu.org.cn/viewtopic.php?f=121&t=416235&p=2961683#p2961683这个帖子说的修改wine代码,使得进入英雄联盟点击进入服务器不崩溃,求解。。。。。。
-
- 论坛版主
- 帖子: 5211
- 注册时间: 2009-12-12 19:29
- 系统: Kubuntu
Re: wine1.5.27怎么安装
试试从PPA安装:
sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo add-apt-repository ppa:ubuntu-wine/ppa
-
- 帖子: 41
- 注册时间: 2013-03-21 11:24
- 系统: Slackware + Gentoo
Re: wine1.5.27怎么安装
ppa的wine不能正常运行lol,需要hack一下,打个patchmraandtux 写了:试试从PPA安装:
sudo add-apt-repository ppa:ubuntu-wine/ppa
-
- 帖子: 41
- 注册时间: 2013-03-21 11:24
- 系统: Slackware + Gentoo
Re: wine1.5.27怎么安装
lz,要先configure才生成makefile的,您再去看看lol的那个帖子吧
-
- 帖子: 14
- 注册时间: 2013-04-07 14:06
- 系统: ubuntu
Re: wine1.5.27怎么安装
zhtengw 写了:lz,要先configure才生成makefile的,您再去看看lol的那个帖子吧
wang@wang-Rev-1-0:~$ cd /home/wang/下载/wine-1.5.25
wang@wang-Rev-1-0:~/下载/wine-1.5.25$ ./configure
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking for cpp... cpp
checking whether gcc -m32 works... no
configure: error: Cannot build a 32-bit program, you need to install 32-bit development libraries.
wang@wang-Rev-1-0:~/下载/wine-1.5.25$ make
make: *** 没有指明目标并且找不到 makefile。 停止。
wang@wang-Rev-1-0:~/下载/wine-1.5.25$
先./configure后也没生成makefile,不能安装怎么办
-
- 帖子: 14
- 注册时间: 2013-04-07 14:06
- 系统: ubuntu
Re: wine1.5.27怎么安装
zhtengw 写了:ppa的wine不能正常运行lol,需要hack一下,打个patchmraandtux 写了:试试从PPA安装:
sudo add-apt-repository ppa:ubuntu-wine/ppa
能详细说说怎么操作吗,因为没有makefile,我也不会安装wine,需要怎样编译?谢谢~
-
- 帖子: 14
- 注册时间: 2013-04-07 14:06
- 系统: ubuntu
Re: wine1.5.27怎么安装
里面的makefile.in是吗?zhtengw 写了:lz,要先configure才生成makefile的,您再去看看lol的那个帖子吧
-
- 帖子: 41
- 注册时间: 2013-03-21 11:24
- 系统: Slackware + Gentoo
Re: wine1.5.27怎么安装
您的是64位系统呀,给你一个网址:
http://wiki.winehq.org/WineOn64bit
如果嫌麻烦,您也可以去我的lol的那篇帖子里,点击原帖地址,我上传了已经编译好的64位wine在那里,你去下来看看。还有,你必须装一下ia32-libs,
http://wiki.winehq.org/WineOn64bit
如果嫌麻烦,您也可以去我的lol的那篇帖子里,点击原帖地址,我上传了已经编译好的64位wine在那里,你去下来看看。还有,你必须装一下ia32-libs,
代码: 全选
apt-get install ia32-libs
上次由 zhtengw 在 2013-04-07 19:37,总共编辑 1 次。
-
- 帖子: 41
- 注册时间: 2013-03-21 11:24
- 系统: Slackware + Gentoo
Re: wine1.5.27怎么安装
这里是说您缺少32位的库,configure失败,makefile就没有生成呀,您做操作要看看错误信息嘛578287290 写了:zhtengw 写了:lz,要先configure才生成makefile的,您再去看看lol的那个帖子吧
wang@wang-Rev-1-0:~$ cd /home/wang/下载/wine-1.5.25
wang@wang-Rev-1-0:~/下载/wine-1.5.25$ ./configure
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking for cpp... cpp
checking whether gcc -m32 works... no
configure: error: Cannot build a 32-bit program, you need to install 32-bit development libraries.
wang@wang-Rev-1-0:~/下载/wine-1.5.25$ make
make: *** 没有指明目标并且找不到 makefile。 停止。
wang@wang-Rev-1-0:~/下载/wine-1.5.25$
先./configure后也没生成makefile,不能安装怎么办
-
- 帖子: 14
- 注册时间: 2013-04-07 14:06
- 系统: ubuntu
Re: wine1.5.27怎么安装
zhtengw 写了:您的是64位系统呀,给你一个网址:
http://wiki.winehq.org/WineOn64bit
如果嫌麻烦,您也可以去我的lol的那篇帖子里,点击原帖地址,我上传了已经编译好的64位wine在那里,你去下来看看。还有,你必须装一下ia32-libs,代码: 全选
apt-get install ia32-libs
装完了还是不行
wang@wang-Rev-1-0:~$ WINEPREFIX=~/LOL/.wine WINEARCH=win32 winecfg
wine: '/home/wang/LOL/.wine' is a 64-bit installation, it cannot be used with a 32-bit wineserver.
wang@wang-Rev-1-0:~$
-
- 帖子: 14
- 注册时间: 2013-04-07 14:06
- 系统: ubuntu
Re: wine1.5.27怎么安装
zhtengw 写了:这里是说您缺少32位的库,configure失败,makefile就没有生成呀,您做操作要看看错误信息嘛578287290 写了:zhtengw 写了:lz,要先configure才生成makefile的,您再去看看lol的那个帖子吧
wang@wang-Rev-1-0:~$ cd /home/wang/下载/wine-1.5.25
wang@wang-Rev-1-0:~/下载/wine-1.5.25$ ./configure
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking for cpp... cpp
checking whether gcc -m32 works... no
configure: error: Cannot build a 32-bit program, you need to install 32-bit development libraries.
wang@wang-Rev-1-0:~/下载/wine-1.5.25$ make
make: *** 没有指明目标并且找不到 makefile。 停止。
wang@wang-Rev-1-0:~/下载/wine-1.5.25$
先./configure后也没生成makefile,不能安装怎么办
唉。。。菜鸟啊,第一天用ubuntu,弄了一天了,还没弄好,悲催了///
-
- 帖子: 41
- 注册时间: 2013-03-21 11:24
- 系统: Slackware + Gentoo
Re: wine1.5.27怎么安装
您用的是64位系统,请下载64位的wine578287290 写了:zhtengw 写了:您的是64位系统呀,给你一个网址:
http://wiki.winehq.org/WineOn64bit
如果嫌麻烦,您也可以去我的lol的那篇帖子里,点击原帖地址,我上传了已经编译好的64位wine在那里,你去下来看看。还有,你必须装一下ia32-libs,代码: 全选
apt-get install ia32-libs
装完了还是不行
wang@wang-Rev-1-0:~$ WINEPREFIX=~/LOL/.wine WINEARCH=win32 winecfg
wine: '/home/wang/LOL/.wine' is a 64-bit installation, it cannot be used with a 32-bit wineserver.
wang@wang-Rev-1-0:~$

-
- 帖子: 14
- 注册时间: 2013-04-07 14:06
- 系统: ubuntu
Re: wine1.5.27怎么安装
zhtengw 写了:您用的是64位系统,请下载64位的wine578287290 写了:zhtengw 写了:您的是64位系统呀,给你一个网址:
http://wiki.winehq.org/WineOn64bit
如果嫌麻烦,您也可以去我的lol的那篇帖子里,点击原帖地址,我上传了已经编译好的64位wine在那里,你去下来看看。还有,你必须装一下ia32-libs,代码: 全选
apt-get install ia32-libs
装完了还是不行
wang@wang-Rev-1-0:~$ WINEPREFIX=~/LOL/.wine WINEARCH=win32 winecfg
wine: '/home/wang/LOL/.wine' is a 64-bit installation, it cannot be used with a 32-bit wineserver.
wang@wang-Rev-1-0:~$
在麻烦您一下 去哪下载64位的wine 我百度都也没说是32位的还是64位的
-
- 论坛版主
- 帖子: 5211
- 注册时间: 2009-12-12 19:29
- 系统: Kubuntu
Re: wine1.5.27怎么安装
用新立得看看。
-
- 帖子: 41
- 注册时间: 2013-03-21 11:24
- 系统: Slackware + Gentoo
Re: wine1.5.27怎么安装
真心……唉~~
我在前几个回里说了的
我在前几个回里说了的
我还以为你是去那里下的呢如果嫌麻烦,您也可以去我的lol的那篇帖子里,点击原帖地址,我上传了已经编译好的64位wine在那里,你去下来看看。