我想玩我的Xubuntu第二生活,当我安装没有任何问题,但当我点击图标没有出现任何东西.当我在终端上运行它时,它向我发送了一条消息,它说它找不到gftools-2,它还说我需要安装ia32-lib,但是当我试图安装这个库终端时,它说它不存在,那么.有人能帮我做第二人生的工作吗?
NB:我从Linux系统的官方页面下载了tar。
<#>更新
$ sudo ./secondlife
64-bit Linux detected.
Multi-arch support detected.
Running from /home/nikasha/Second_Life_5_0_9_329906_i686
- Installing menu entries in /usr/local/share/applications
bin/do-not-directly-run-secondlife-bin: error while loading shared libraries: libgdk-x11-2.0.so.0: cannot open shared object file: No such file or directory
*** Bad shutdown ($LL_RUN_ERR). ***
You are running the Second Life Viewer on a x86_64 platform. The
most common problems when launching the Viewer (particularly
'bin/do-not-directly-run-secondlife-bin: not found' and 'error while
loading shared libraries') may be solved by installing your Linux
distribution's 32-bit compatibility packages.
For example, on Ubuntu and other Debian-based Linuxes you might run:
$ sudo apt-get install ia32-libs ia32-libs-gtk ia32-libs-kde ia32-libs-sdl
*******************************************************
This is a BETA release of the Second Life linux client.
Thank you for testing!
Please see README-linux.txt before reporting problems.所以..。发生什么事了?
解决方案
好的!!与火风暴完美地工作!非常感谢!
http://www.firestormviewer.org/linux/
发布于 2018-09-24 17:03:19
当我玩“第二人生”( MEPIS 11和Kubuntu 14.04,上一次是2014年)时,一般推荐使用来自凤凰城的火暴,而不是林登实验室的查看器。有一个64位的版本,定期更新,并且应该比Linden版本更好地跟上Ubuntu的变化。在我的记忆中,安装起来并不难,而且在那个时候工作得更好。
发布于 2018-10-26 03:01:34
在Ubuntu18.04中运行第二生命(没有媒体)所需的最低要求如下:
sudo apt install libgtk2.0-0:i386 libpangox-1.0-0:i386 libpangoxft-1.0-0:i386 libidn11:i386 libglu1-mesa:i386
sudo apt install lsb-core i386体系结构已经被打开。还运行以下命令以克服注册表错误:
sudo apt install gconf2
mkdir -p ~/.kde/share/kde4/services # for KDE desktop environments发布于 2018-09-24 16:22:43
随着时间的推移,Linux管理32位和64位包的方式发生了变化,这就是为什么您将看到引用ia32-libs包的过时文档。你应该能够得到你想要的东西,使用:
sudo dpkg --add-architecture i386
sudo apt update
sudo apt install libidn11:i386 libstdc++6:i386 libuuid1:i386 zlib1g:i386 libnss3:i386 libnspr4:i386 libxtst6:i386 libgconf-2-4:i386 libxss1:i386 它可能也需要其他库,但是这里的基本思想是安装somelib:i386,因为第二生命试图使用32位二进制文件。
https://askubuntu.com/questions/1078071
复制相似问题