0

I am trying to run Secondlife in Linux Mint 19. However it's a 32-bit program and I'm running a 64-bit system. How do I install a 32-bit compatibility environment in Linux Mint 19?

Rui F Ribeiro
  • 56,709
  • 26
  • 150
  • 232
Leo Ohyama
  • 109
  • 1
  • 2

1 Answers1

1

try something like this:

dpkg --add-architecture i386

apt-get update

apt-get install multiarch-support

apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386

If your app require more libraries, install everyone with :i386 at the library name.

Ubuntu packages website can help you to found out, the packages providing files, that eventually are missing.

Stephen Kitt
  • 434,908
  • Thank you for the edit and the advice about multiarch-support not needed anymore. – Luciano Andress Martini Jan 08 '19 at 16:52
  • thanks for the help. None of the code worked.I encoutnered an error when trying to run the first line (dpkg etc.) with dpkg: error: unable to create new file '/var/lib/dpkg/arch-new': Permission denied I tried running it with sudo and nothing happened. I will check the website – Leo Ohyama Jan 08 '19 at 17:01
  • It will not return nothing, just run it , and try again to execute your application at end. Showing the errors for us. – Luciano Andress Martini Jan 08 '19 at 17:08
  • It seems to be a connection error. Which doesn't make sense because my connection is robust (I'm on a University's network that allows secondlife This is the error: 2019-01-08T05:16:33Z WARNING: LLViewerMediaImpl::navigateInternal: Couldn't navigate to: http://viewer-login.agni.lindenlab.com/?channel=Second%20Life%20Release&firstlogin=TRUE&grid=Agni&lang=en&login_content_version=2&os=Linux%204.15&sourceid=&version=5.0.9%20(329906) as there is no media type for: text/html – Leo Ohyama Jan 08 '19 at 17:16
  • 2019-01-08T05:18:51Z WARNING: stageAfterCompletion: HTTP request 0xf392d410 failed after 5 retries. Reason: Couldn't connect to server (Easy_7) 2019-01-08T05:18:51Z WARNING: onCompleted:

    Error[Easy_7] cannot access url 'https://sim10730.agni.lindenlab.com:12043/cap/2999b8b3-195c-2977-0ae9-d84888f29e22' because Couldn't connect to server

    2019-01-08T05:18:51Z WARNING: requestBaseCapabilitiesCoro: Received capabilities for region that no longer exists!

    – Leo Ohyama Jan 08 '19 at 17:19
  • And if you wget to that address what happen ? – Luciano Andress Martini Jan 08 '19 at 17:20
  • I should be able to actually log in to the account. – Leo Ohyama Jan 08 '19 at 17:23
  • I haven't seen any other error images in the terminal – Leo Ohyama Jan 08 '19 at 17:23
  • Well but the port is listening in for wget? – Luciano Andress Martini Jan 08 '19 at 17:28
  • Sorry I don't understand, port? – Leo Ohyama Jan 08 '19 at 17:33
  • I see that the address are using port 12043, now you know what i am talking about? Maybe you have some kind of firewall blocking connection to this port or missing ssl libraries for 32 bits. – Luciano Andress Martini Jan 08 '19 at 17:34
  • Ah yes, I see it. Perhaps there's something wrong with the connection? – Leo Ohyama Jan 08 '19 at 17:36
  • Yes. Maybe your firewall are blocking connections to this port. If I am not wrong mint comes with a firewall pre-configured. You need to disable or configure it. – Luciano Andress Martini Jan 08 '19 at 17:56