Wine 3.0稳定版出现“ make install”错误


2

我已经配置了Wine 3.0。我已经运行了make命令。30分钟后,生成了Wine,但make install失败了:

make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/home/hafeez/Downloads/wine-3.0/winecrt0'
make[1]: Entering directory '/home/hafeez/Downloads/wine-3.0/acledit'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/home/hafeez/Downloads/wine-3.0/dlls/acledit'
STRIPPROG="strip" ./tools/install-sh dlls/acledit/acledit.dll.so /usr/local/lib/wine/acledit.dll.so
mkdir: cannot create directory ‘/usr/local/lib/wine‘: Permission denied
mkdir: cannot create directory ‘/usr/local/lib/wine‘: Permission denied
Makefile:1608: recipe for target 'dlls/acledit/install-lib' failed
make: *** [dlls/acledit/install-lib] Error 1

如何make install安装Wine?


给出了数字链接
afroz1198 '18

请不要将屏幕截图用于终端文本。而是将文本粘贴到您的问题中,选择文本,然后{}在编辑器中按按钮。
Chai T. Rex '18年

知道了.........
afroz1198 '18

Answers:


2

该命令make install除非以sudo如下形式开头,否则不会成功完成:

sudo make install 

要在wine中运行Windows程序,您需要输入wine c:\\path\\to\\app。通常位于的“程序文件”文件夹中\home\user\.wine

如果您从源代码安装Wine,请使用sudo rm来从安装文件的目录中删除wine文件(通常是/usr/local/bin)。


哦..哎呀,我一直在按照确切的文字自述..
afroz1198

@ afroz1198如果这回答了您的问题,则可以通过单击答案旁边的灰色复选标记将其颜色更改为绿色,将其标记为已接受。
karel

亲爱的karel,为什么不建议安装checkinstallmake install以后在支撑系统上造成困难。
N0rbert

这就是它在自述文件中所说的。
karel

那又怎样 很多软件被安装解压,./configuremakesudo make install。所有此类安装都可能会损坏系统。即使它们安装在/opt或中/usr/local,因为所有它们都将位于PATH中。所以我建议阅读有关checkinstall
N0rbert

1

不推荐您做的事情。

更好的方法是使用
checkinstallsudo apt-get install checkinstall)安装自编译的应用程序,
以使其制作deb-packages。
您可以使用我的其他答案来获得完整的指导。

或从Ubuntu的WineHQ官方存储库安装Wine :

wget https://dl.winehq.org/wine-builds/Release.key
sudo apt-key add Release.key
sudo apt-add-repository 'https://dl.winehq.org/wine-builds/ubuntu/'
sudo apt-get update
sudo apt-get install winehq-stable # for trusty, xenial and artful

上面的命令将安装Wine 3.0。


1
我之前做过,但是它安装了wine 2.X
afroz1198

这取决于您的Ubuntu版本。16.04 LTS具有winehq稳定的3.0.0〜xenial,17.10具有winehq稳定的3.0.0〜x。
N0rbert
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.