PDA

View Full Version : Regnum Online Linux installer


surak
11-23-2007, 12:51 AM
Hello, Linux users! You can download the linux installers for Regnum Online from here:

32-bit http://www.regnumonlinegame.com/downloads/files/RegnumOnlineInstall_32.torrent
64-bit http://www.regnumonlinegame.com/downloads/files/RegnumOnlineInstall_64.torrent

This installer was created using InstallJammer: http://www.installjammer.com/

Regards

surak
02-24-2008, 03:51 AM
Linux installer was re-done using another installation system.

Please test it. If there are no problems we will put it in the webpage along with the Windows installer.

theotherhiveking
02-24-2008, 01:47 PM
Works fine in ubuntu 7.10 32bits.

Zarakaye
02-26-2008, 07:08 AM
works fine in Fedora 8 32 and 64 bit

Znurre
03-04-2008, 11:58 AM
Tested in Kubuntu 7.10 32 - No problem
Tested in openSuSE 10.3 64 - No problem

Heglin
03-05-2008, 09:58 AM
Works fine in Kubuntu 7.10 64 bit

WesMatte
03-05-2008, 11:48 AM
Tried it out on my laptop, Ubuntu 7.10 32bit, works fine.. :beerchug:

johnpriest
03-12-2008, 05:58 PM
oddly, works on my ubuntu 7.10 and debian testing install

aric_swartzell
03-23-2008, 02:16 AM
Works fine using nvidia-glx, Ubuntu 8.04 32 bit Beta.

Herduk
03-25-2008, 08:32 AM
Works fine on my Mandriva 2008 Laptop.

yizuman
03-26-2008, 09:12 AM
How do I use this installer? Need instructions please.

Thanks

aric_swartzell
03-26-2008, 09:30 AM
I believe this should do it.

cd to the directory where you downloaded the bin file. Make it executable. and type ./nameofbinhere

That will start the installer. The rest is self explanitory. Good luck.

Reuhman
03-29-2008, 02:50 PM
couldn't get it working.

i'm using ubuntu 8.04 64bit beta.

downloaded the 64bit installer. whenever i try to run it it does absolutely nothing, not even complain, it just returns immediately.

i installed the game with the 64bit launcher (rolauncher64.tar.bz2, from another post) and it worked fine.

i have no idea what the problem could be, i'm no linux expert.

ArcticWolf
03-29-2008, 08:18 PM
Did you check if the file could be ran? I mean, the execution rights.

Reuhman
03-30-2008, 03:14 PM
Did you check if the file could be ran? I mean, the execution rights.

yes, that i did. i tried several ways to run it. it tried playing with the mallock check too.
./RegnumOnlineInstall_64 did nothing. sh RegnumOnlineInstall_64 either but it said something about a syntax error and a "(" don't remember exactly as i gave up using the linux client. windows version is much more stable with my computer, don't know why. just wanted to try for the 64bit as there is no such client for windows but i ended crashing all day long.

WesMatte
04-06-2008, 05:00 PM
I've got that problem to... When i run "./RegnumOnlineInstall_64" nothing happens(no errors at all)... running "sh RegnumOnlineInstall_64" gives me: RegnumOnlineInstall_64: 1: Syntax error: "(" unexpected


My system is a 64bit singelcore AMD 2.0Ghz, 1gig Ram, Geforce 7600GS PCI-E(nvidia 169.12 drivers i think), Ubuntu 8.04 Beta 64bit...

WesMatte
04-06-2008, 05:35 PM
MALLOC_CHECK_=0 ./RegnumOnlineInstall_64

This started the installer for me(Ubuntu 8.04 Beta 64bit). Game works, but with a bit of messed up grafics(prob. the nvidia drivers to blame)..

Edit:
Same Computer, but with Ubuntu 7.10 64bit, "./RegnumOnlineInstall_64", "sh RegnumOnlineInstall_64" and
"MALLOC_CHECK_=0 ./RegnumOnlineInstall_64" did not start the installer. No error messages other than the "syntax error"-ish mentioned in the other post.. Have to use old "rolauncher64.tar.bz2" file to install game, and it works ok..

muunleit
04-23-2008, 02:36 AM
The 32bit-Version works fine on Archlinux.

When will it be added to the Downloads-Page (http://www.regnumonline.com.ar/index.php?l=1&sec=6)?

dctalk37
05-08-2008, 09:38 AM
I'm running Ubuntu 8.04 32 bit. I downloaded the 32 bit install. changed my cwd to the desktop where i installed it. Used ch mod +x RegnumOnlineInstaller_32 . When i try and run ./RegnumInstaller_32 i get this error.

bash: ./RegnumOnlineInstall_32: Text file busy

I am pretty new to Linux. did i do something wrong?

Froste
05-08-2008, 02:42 PM
I'm running Ubuntu 8.04 32 bit. I downloaded the 32 bit install. changed my cwd to the desktop where i installed it. Used ch mod +x RegnumOnlineInstaller_32 . When i try and run ./RegnumInstaller_32 i get this error.

bash: ./RegnumOnlineInstall_32: Text file busy

I am pretty new to Linux. did i do something wrong?

Well I'm pretty old to linux, and I've never seen that message before :p

chmod should be one word (not ch mod)

EDIT: Just tried the installer for the first time, if you install it as root it should default to /usr/local/games not /usr/local, and it should install a wrapper script to /usr/local/bin that starts the launcher.

magnet
05-08-2008, 09:33 PM
I'm running Ubuntu 8.04 32 bit. I downloaded the 32 bit install. changed my cwd to the desktop where i installed it. Used ch mod +x RegnumOnlineInstaller_32 . When i try and run ./RegnumInstaller_32 i get this error.

bash: ./RegnumOnlineInstall_32: Text file busy

I am pretty new to Linux. did i do something wrong?

IIRC, a busy file is like a busy device; there is an flock() call to that file already; ie, an application is locking/using it already and doesn't want another to do so. Just to check: were you done downloading the installer when you tried to execute the installer? Are you editing it with some stupid program who would feel like flocking it?

Also try "sh ./RegnumOnlineInstall_32" rather than using the executable bit for scripts subsytem sometimes it's messed up.

Froste
05-08-2008, 10:57 PM
Also try "sh ./RegnumOnlineInstall_32" rather than using the executable bit for scripts subsytem sometimes it's messed up.

No that won't work (which surprised me too!), it's not a self-unpacking tar shellscript, it's an ELF (:

ArcticWolf
05-09-2008, 04:11 PM
IIRC, a busy file is like a busy device; there is an flock() call to that file already; ie, an application is locking/using it already and doesn't want another to do so. Just to check: were you done downloading the installer when you tried to execute the installer? Are you editing it with some stupid program who would feel like flocking it?

Also try "sh ./RegnumOnlineInstall_32" rather than using the executable bit for scripts subsytem sometimes it's messed up.


I guess he may still be downloading it :P

The problem is that torrents take a good amount of time, but generate the file in the folder, making it appear like it's a runnable file.

Thrik
05-12-2008, 02:14 AM
Here is the output I get when I execute the script:

http://pastebin.ubuntu.com/11587/

Thrik
05-12-2008, 02:16 AM
Nevermind, I altered the permissions of the file. It works now.

mohaakilla51
06-01-2008, 04:37 PM
IIRC, a busy file is like a busy device; there is an flock() call to that file already; ie, an application is locking/using it already and doesn't want another to do so. Just to check: were you done downloading the installer when you tried to execute the installer? Are you editing it with some stupid program who would feel like flocking it?

Also try "sh ./RegnumOnlineInstall_32" rather than using the executable bit for scripts subsytem sometimes it's messed up.

YAY!! I found a way to fix a problem!
Allrighty. You are still seeding. I had the same problem. Got this output:
http://pastebin.ubuntu.com/16195/
But, if you go back to whatever torrent program you were using to download, stop seeding (JUST untill installer is done) then it will work fine.

BTW, works fine on Ubuntu 8.04, Kubuntu 8.04, and Mandriva 2008

evilTak
06-02-2008, 12:38 AM
Works well on Debian unstable x86 using nvidia-glx-legacy-96xx.

Edit: Thank you very much for doing a Linux client!

TravisB
06-02-2008, 09:34 PM
Segfaults when using aoss, works fine without.

travis@localhost ~/Documents/games/regnum $ MALLOC_CHECK_=0 aoss ./rolauncher
travis@localhost ~/Documents/games/regnum $ Saving backtrace to crash_backtrace_13937.log
Got SIGSEGV (segmentation fault)

travis@localhost ~/Documents/games/regnum $ cat live/crash_backtrace_13937.log
libs/libcore_client.so(_ZN10ClientBase14save_backtraceE v+0x79) [0xb7d8ba79]
libs/libcore_client.so(_ZN10ClientBase12client_crashEi+ 0x1b) [0xb7d8c11b]
[0xffffe400]
/lib/libc.so.6(__uflow+0x6a) [0xb709762a]
/lib/libc.so.6(getc+0xbc) [0xb70911dc]
libs/liblua51.so(luaL_loadfile+0x2d4) [0xb72b12e4]
libs/libresource_system_extension.so(_ZN13ScriptManager 10lua_dofileEP9lua_State+0xbf) [0xb77a23df]
libs/liblua51.so [0xb729ac8c]
libs/liblua51.so [0xb729b676]
libs/liblua51.so [0xb7290464]
libs/liblua51.so [0xb7299eb3]
libs/liblua51.so [0xb7299f29]
libs/liblua51.so(lua_cpcall+0x4c) [0xb72903dc]
libs/libresource_system_extension.so(_ZN13ScriptManager 10run_scriptEP9lua_StatePKc+0xda) [0xb77a34ba]
libs/libresource_system_extension.so(_ZN13ScriptManager 6dofileEP9lua_State+0x3d) [0xb77a42dd]
libs/liblua51.so [0xb729ac8c]
libs/liblua51.so [0xb729b676]
libs/liblua51.so [0xb72904a1]
libs/liblua51.so [0xb7299eb3]
libs/liblua51.so [0xb7299f29]
libs/liblua51.so(lua_pcall+0x8d) [0xb7290b5d]
libs/libentity_system.so(_ZN9LuaEntity4callEii+0x42a) [0xb759b2aa]
libs/libentity_system.so(_ZN9LuaEntity6dofileEPKc+0x69) [0xb759d3f9]
libs/libentity_system.so(_ZN9LuaEntity10run_scriptEPKc+ 0x33) [0xb759d4a3]
libs/libconsole.so(_ZN7Console15creation_notifyEP7Messa ge+0x122) [0xb75c8bd2]
libs/libentity_system.so(_ZN13EntityManager32initialize _entity_as_custom_typeEPKciS1_P7MessageP6Entity+0x 4b9) [0xb7577ab9]
libs/libentity_system.so(_ZN13EntityManager27register_i nitialized_entityEPKciP6EntityP7Message+0x43) [0xb7578993]
libs/libcommon_entities.so(_ZN24ApplicationManagerEntit y34start_application_entity_with_infoEPN17Applicat ionEntity4DataEP7MessageP10EntityInfo+0x93) [0xb7bee1d3]
libs/libcommon_entities.so(_ZN24ApplicationManagerEntit y18launch_applicationEP7Message+0x402) [0xb7beee92]
libs/libentity_system.so(_ZN6Entity22input_message_inte rnalEP7Message+0x700) [0xb7570e80]
libs/libentity_system.so(_ZN6Entity13input_messageEP7Me ssage+0x22) [0xb756dc82]
libs/libentity_system.so(_ZN6Entity13input_messageEPKcP 7Message+0x3f) [0xb756dfef]
libs/libregnum_client.so(_ZN10GameClient19initialize_en titiesEv+0x13ef) [0xb7f081af]
libs/libregnum_client.so(_ZN10GameClient4initEiPPc+0x7b 6) [0xb7f09c86]
libs/libregnum_client.so(_ZN10GameClientC1EiPPc+0xd1) [0xb7f0a651]
./game(main+0x25a) [0x8048f7a]
/lib/libc.so.6(__libc_start_main+0xdc) [0xb7048fdc]
./game(__gxx_personality_v0+0x6d) [0x8048c21]


System uname: 2.6.25-gentoo i686 AMD Athlon(tm) 64 X2 Dual Core Processor 6000+
media-libs/alsa-oss-1.0.15

v3ctormax
06-15-2008, 04:29 AM
No intel x3100 intergrated mobo graphics support under linux :-(
Brand new lenovo lappy core 2 duo 2.5ghz with Mobile GM965/GL960 Integrated Graphics Controller

SA0BSE
06-23-2008, 11:36 PM
ArchLinux 64Bit does not work.

[etu@Trillian Desktop]$ ./RegnumOnlineInstall_64
[etu@Trillian Desktop]$

[etu@Trillian Desktop]$ MALLOC_CHECK_=0 ./RegnumOnlineInstall_64
[etu@Trillian Desktop]$

Vijabei
07-12-2008, 08:30 PM
Hi there,

the installer 64bit works on Sabayon Linux 3.5 r1 64bit fine. But after the Terms of Use and entering my login datas the client stops.

I open a new thread for this error.

:thumb_up: and thx for the installer

Greetz,
Vijabei

Zodar
08-10-2008, 12:02 PM
Thanks for producing a Linux version.
32bit works flawlessly on Slackware 12.0.0.

Franz1789
08-13-2008, 04:01 PM
Will there be some kind of openGL 3 upgrade?

NorthFear
08-13-2008, 08:49 PM
Will there be some kind of openGL 3 upgrade?
I doubt that all Regnum players has opengl 3 compatible hardware

surak
08-13-2008, 08:54 PM
Will there be some kind of openGL 3 upgrade?

If we find a good reason, maybe. I've seen none yet :P

ArcticWolf
08-13-2008, 11:41 PM
If we find a good reason, maybe. I've seen none yet :P

OpenGL3 has a OGL2 legacy mode, so you don't have to worry if drivers start to come in OGL3 only :P

To me, OpenGL could have modified the API completely and provide a OpenGL2 "on top of" OpenGL3 mode. As far as I know, OpenGL3 supports the legacy mode directly and that means the driver programmers will have more work. That means more things to code, and hence more bugs.

torgath
11-08-2008, 09:27 PM
okay here is the deal. I just bought a mini pc with linux. I've had it for 3 days now. i downloaded the game and i have no idea how to install it. i need some instructions. i have asus eee pc

ArcticWolf
11-08-2008, 09:56 PM
okay here is the deal. I just bought a mini pc with linux. I've had it for 3 days now. i downloaded the game and i have no idea how to install it. i need some instructions. i have asus eee pc

You should start a new thread, but here it goes:

Download the i386 version of the game (32 bits).
Right click on the file and change the permissions to make it executable. If you're more of a console-and-keyboard guy, then you can type chmod +x Regnum*
Double click the file. That should launch the installer window.

torgath
11-08-2008, 11:18 PM
You should start a new thread, but here it goes:

Download the i386 version of the game (32 bits).
Right click on the file and change the permissions to make it executable. If you're more of a console-and-keyboard guy, then you can type chmod +x Regnum*
Double click the file. That should launch the installer window.


thanks mate i love you :D

Mrreality13
12-09-2008, 05:30 AM
works in linux mint 5 ce fluxbox

Potironth
12-23-2008, 10:25 PM
It works fine as hell on Debian Lenny. (32bit installer)

CappY
01-03-2009, 10:42 AM
Tested with Gentoo Base System release 1.12.11.1. I don't met problems with installing.

Mashu
01-20-2009, 03:12 PM
Works fine on GNU/Linux Debian Sid 64bit kernel 2.6.29, xserver-xorg 1.6, mesa 7.3, dri2, UXA with Intel GM965 in safe mode as far because of GLSL. Game is awesome, great action! :horsey:

Azereiah
02-22-2009, 05:14 PM
Terminal --> Directory of RegnumOnlineInstall_64

USER@ComputerName:~/Desktop$ chmod +x RegnumOnlineInstall_64
USER@ComputerName:~/Desktop$ ./RegnumOnlineInstall_64


You change the type of file to Executable, then run from terminal.

I am running Ubuntu 8.04 Hardy x86_64


Hope that was helpful to you :)

deadmaster
03-06-2009, 11:11 PM
Is this the same one from the downloads section? I'm downloading that one, hopefully its the same.

chibicorpse
03-17-2009, 10:24 PM
xxx@xxx:~$ ./RegnumOnlineInstall_64
Segmentation fault

what can i do with this?

arlick
03-17-2009, 10:54 PM
xxx@xxx:~$ ./RegnumOnlineInstall_64
Segmentation fault

what can i do with this?

are you sure that you have 64 bits system? and what distro do you have?

noobcryptor
03-21-2009, 05:38 PM
Tested in MOPSlinux 6.2 - No problem;

ethil
03-28-2009, 01:49 PM
the installer doesn't work on ubuntu 9.04 :fury:

ArcticWolf
03-28-2009, 08:05 PM
Did you give it execution rights? Are you running the 64-bit version on a 32-bit kernel?

ethil
03-28-2009, 10:20 PM
I'm running the 64 bit installer on a 64 bit kernel...
And yes, i gave it execution right with chmod +x and i tried to run the installer with ./installername

ArcticWolf
03-29-2009, 01:11 AM
I'm running the 64 bit installer on a 64 bit kernel...
And yes, i gave it execution right with chmod +x and i tried to run the installer with ./installername

Ok, so you're missing the 32-bit compatibility libriaries to run the installer... I forgot that, sorry. :S

sudo apt-get install ia32-libs


That should be all. Good luck!! :D

ethil
03-29-2009, 08:11 AM
ok, it runs :guitar:
but i can't understand why the 64-bit installer needs the ia32 library :dumbofme:

eXhibiT
04-18-2009, 08:51 PM
on Fedora 10 32 bit works fine.

Wintershade
05-14-2009, 09:17 PM
32-bit http://www.regnumonlinegame.com/downloads/files/RegnumOnlineInstall_32.torrent
64-bit http://www.regnumonlinegame.com/downloads/files/RegnumOnlineInstall_64.torrent

links are dead :(
anything newer?

arlick
05-14-2009, 09:20 PM
links are dead :(
anything newer?

Here it is :D

http://www.regnumonline.com.ar/index.php?l=1&sec=6

Wintershade
05-14-2009, 09:32 PM
I see... and the client available from the BitTorrent and the one available from HTTP/FTP download are the same, right?

Abhorsen123
05-20-2009, 09:18 AM
okay ive downloaded it but it wont run heres my script
matt@matt-laptop:~/Desktop$ chmod +x RegnumOnlineInstall_32
matt@matt-laptop:~/Desktop$ ./RegnumOnlineInstall_32
bash: ./RegnumOnlineInstall_32: cannot execute binary file


HELP

Znurre
05-20-2009, 09:35 AM
okay ive downloaded it but it wont run heres my script
matt@matt-laptop:~/Desktop$ chmod +x RegnumOnlineInstall_32
matt@matt-laptop:~/Desktop$ ./RegnumOnlineInstall_32
bash: ./RegnumOnlineInstall_32: cannot execute binary file


HELPSeems like if you are running a 64-bit distro, without any 32-bit libraries installed.

viperdh
05-26-2009, 10:57 AM
Seems like if you are running a 64-bit distro, without any 32-bit libraries installed.

Can somone edit an earlier post of theres and put this in bold as a possible fix. So many pages of reading before I realized I had forgot to install them.

sudo apt-get install ia32-libs

Nightchill
06-08-2009, 10:39 AM
why not pack the RO linux version in a tarball since only thing installer does is add the desktop shortcut

Jszyn
06-08-2009, 12:05 PM
Has anyone been able to get it to work with Ubuntu 9.04?

Thanks!

ethil
06-08-2009, 03:29 PM
Has anyone been able to get it to work with Ubuntu 9.04?

Thanks!

me :play_ball:

Franz1789
06-14-2009, 06:23 PM
yep, ok, but not anyone has apt-based distro, which are these 32bit-libs??

Vijabei
06-15-2009, 02:30 PM
yep, ok, but not anyone has apt-based distro, which are these 32bit-libs??
Thanks for this question. Google don't know this answere. I am using Fedora 11 and can't use .deb-packages.


EDIT: Found it, under RedHat based distros you have to install the following meta package

redhat-lsb-3.2-3.fc11 (i586)

The version no may vary.

Vijabei
06-15-2009, 08:17 PM
Since the OpenSource ATI drivers for "older" graphic cards supporting full 3D, it is annoying to read always the message "Your graphic card is tooooo old ... bla bla"

http://wiki.x.org/wiki/radeon
http://dri.freedesktop.org/wiki/ATIRadeon

Please, I want to get rid of these restrictions. :dumbofme:

Franz1789
06-15-2009, 09:03 PM
Thanks for this question. Google don't know this answere. I am using Fedora 11 and can't use .deb-packages.


EDIT: Found it, under RedHat based distros you have to install the following meta package

redhat-lsb-3.2-3.fc11 (i586)

The version no may vary.
Yep, but i'm using archlinux!!! i need single libs needed to start the game...

Franz1789
06-17-2009, 01:22 PM
up

c'mon, not so difficult, everyone here uses rpm or deb-based distro? I need to know which libs are needed to run the game, so I 'll know which one to download in 32bit version...

Znurre
06-17-2009, 01:47 PM
gtk2 libs for launcher, openal libs for audio, xorg, graphic drivers...
That's about it.

Znurre@Znurre Regnum $ ldd ./rolauncher
linux-gate.so.1 => (0xffffe000)
libpthread.so.0 => /lib/libpthread.so.0 (0xb7edd000)
libgthread-2.0.so.0 => /usr/lib/libgthread-2.0.so.0 (0xb7ed8000)
libgtk-x11-2.0.so.0 => /usr/lib/libgtk-x11-2.0.so.0 (0xb7b2a000)
libgdk-x11-2.0.so.0 => /usr/lib/libgdk-x11-2.0.so.0 (0xb7a9e000)
libGL.so.1 => /usr/lib/libGL.so.1 (0xb79e4000)
libXxf86vm.so.1 => /usr/lib/libXxf86vm.so.1 (0xb79de000)
libXext.so.6 => /usr/lib/libXext.so.6 (0xb79ce000)
libXt.so.6 => /usr/lib/libXt.so.6 (0xb797a000)
libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0xb788e000)
libm.so.6 => /lib/libm.so.6 (0xb7866000)
libgcc_s.so.1 => /usr/lib/libgcc_s.so.1 (0xb7858000)
libc.so.6 => /lib/libc.so.6 (0xb76f0000)
libglib-2.0.so.0 => /usr/lib/libglib-2.0.so.0 (0xb763a000)
libgdk_pixbuf-2.0.so.0 => /usr/lib/libgdk_pixbuf-2.0.so.0 (0xb7620000)
libpango-1.0.so.0 => /usr/lib/libpango-1.0.so.0 (0xb75dd000)
libX11.so.6 => /usr/lib/libX11.so.6 (0xb74bc000)
libgobject-2.0.so.0 => /usr/lib/libgobject-2.0.so.0 (0xb7480000)
libdl.so.2 => /lib/libdl.so.2 (0xb747c000)
libXinerama.so.1 => /usr/lib/libXinerama.so.1 (0xb7478000)
libSM.so.6 => /usr/lib/libSM.so.6 (0xb746f000)
libz.so.1 => /lib/libz.so.1 (0xb745b000)
libexpat.so.1 => /usr/lib/libexpat.so.1 (0xb7432000)
/lib/ld-linux.so.2 (0xb7f20000)
librt.so.1 => /lib/librt.so.1 (0xb7429000)
libpangocairo-1.0.so.0 => /usr/lib/libpangocairo-1.0.so.0 (0xb741e000)
libXfixes.so.3 => /usr/lib/libXfixes.so.3 (0xb7418000)
libatk-1.0.so.0 => /usr/lib/libatk-1.0.so.0 (0xb73fe000)
libcairo.so.2 => /usr/lib/libcairo.so.2 (0xb737f000)
libgio-2.0.so.0 => /usr/lib/libgio-2.0.so.0 (0xb7313000)
libpangoft2-1.0.so.0 => /usr/lib/libpangoft2-1.0.so.0 (0xb72e9000)
libfontconfig.so.1 => /usr/lib/libfontconfig.so.1 (0xb72bc000)
libgmodule-2.0.so.0 => /usr/lib/libgmodule-2.0.so.0 (0xb72b8000)
libXrender.so.1 => /usr/lib/libXrender.so.1 (0xb72ad000)
libXrandr.so.2 => /usr/lib/libXrandr.so.2 (0xb72a5000)
libXcursor.so.1 => /usr/lib/libXcursor.so.1 (0xb729b000)
libXcomposite.so.1 => /usr/lib/libXcomposite.so.1 (0xb7297000)
libXdamage.so.1 => /usr/lib/libXdamage.so.1 (0xb7293000)
libGLcore.so.1 => /usr/lib/libGLcore.so.1 (0xb637a000)
libnvidia-tls.so.1 => /usr/lib/tls/libnvidia-tls.so.1 (0xb6378000)
libICE.so.6 => /usr/lib/libICE.so.6 (0xb635f000)
libpcre.so.0 => /usr/lib/libpcre.so.0 (0xb6334000)
libxcb.so.1 => /usr/lib/libxcb.so.1 (0xb631a000)
libuuid.so.1 => /lib/libuuid.so.1 (0xb6314000)
libfreetype.so.6 => /usr/lib/libfreetype.so.6 (0xb628a000)
libpixman-1.so.0 => /usr/lib/libpixman-1.so.0 (0xb6245000)
libglitz.so.1 => /usr/lib/libglitz.so.1 (0xb6219000)
libpng12.so.0 => /usr/lib/libpng12.so.0 (0xb61f0000)
libxcb-render-util.so.0 => /usr/lib/libxcb-render-util.so.0 (0xb61ea000)
libxcb-render.so.0 => /usr/lib/libxcb-render.so.0 (0xb61e2000)
libXau.so.6 => /usr/lib/libXau.so.6 (0xb61de000)
libXdmcp.so.6 => /usr/lib/libXdmcp.so.6 (0xb61d8000)

Znurre@Znurre live $ ldd ./game
linux-gate.so.1 => (0xffffe000)
libregnum_client.so => libs/libregnum_client.so (0xb7f11000)
libregnum_common.so => libs/libregnum_common.so (0xb7edc000)
libcommon_tools.so => libs/libcommon_tools.so (0xb7e9e000)
libobjects.so => libs/libobjects.so (0xb7dd9000)
libcore_common.so => libs/libcore_common.so (0xb7dc5000)
libcore_client.so => libs/libcore_client.so (0xb7d99000)
libcommon_objects.so => libs/libcommon_objects.so (0xb7d64000)
libenvironment_client.so => libs/libenvironment_client.so (0xb7c95000)
libenvironment_common.so => libs/libenvironment_common.so (0xb7c5c000)
libapplets.so => libs/libapplets.so (0xb7c2e000)
libapp_system.so => libs/libapp_system.so (0xb7c1a000)
libcommon_entities.so => libs/libcommon_entities.so (0xb7bf9000)
libgfx.so => libs/libgfx.so (0xb7b93000)
libgui.so => libs/libgui.so (0xb7a1e000)
libgui_extension.so => libs/libgui_extension.so (0xb79a9000)
libscene_logic.so => libs/libscene_logic.so (0xb7974000)
libscene_visual.so => libs/libscene_visual.so (0xb794a000)
libaudio.so => libs/libaudio.so (0xb791a000)
libresource_system.so => libs/libresource_system.so (0xb77d2000)
libresource_system_misc.so => libs/libresource_system_misc.so (0xb77cb000)
libresource_system_extension.so => libs/libresource_system_extension.so (0xb776a000)
libresource_system_extension_client.so => libs/libresource_system_extension_client.so (0xb774d000)
libopengl_api.so => libs/libopengl_api.so (0xb76b1000)
libengine3d.so => libs/libengine3d.so (0xb762e000)
libgraphics.so => libs/libgraphics.so (0xb7614000)
libmath.so => libs/libmath.so (0xb75d6000)
liblua_launcher.so => libs/liblua_launcher.so (0xb75cf000)
libconsole.so => libs/libconsole.so (0xb75b6000)
libentity_system.so => libs/libentity_system.so (0xb7527000)
libmisc.so => libs/libmisc.so (0xb7459000)
libos.so => libs/libos.so (0xb741e000)
libtheora.so => libs/libtheora.so (0xb73d9000)
libpng.so => libs/libpng.so (0xb73af000)
libjpeg.so => libs/libjpeg.so (0xb738a000)
libogg.so => libs/libogg.so (0xb7385000)
libvorbis.so => libs/libvorbis.so (0xb735b000)
libvorbisfile.so => libs/libvorbisfile.so (0xb7352000)
libfreetype2.so => libs/libfreetype2.so (0xb72c8000)
libtolua++.so => libs/libtolua++.so (0xb72c0000)
libsigc20.so => libs/libsigc20.so (0xb72ba000)
libz.so => libs/libz.so (0xb72a5000)
liblua51.so => libs/liblua51.so (0xb7270000)
libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0xb715a000)
libm.so.6 => /lib/libm.so.6 (0xb7133000)
libgcc_s.so.1 => /usr/lib/libgcc_s.so.1 (0xb7125000)
libc.so.6 => /lib/libc.so.6 (0xb6fbd000)
libX11.so.6 => /usr/lib/libX11.so.6 (0xb6e9d000)
libXext.so.6 => /usr/lib/libXext.so.6 (0xb6e8c000)
libGL.so.1 => /usr/lib/libGL.so.1 (0xb6dd2000)
libGLU.so.1 => /usr/lib/libGLU.so.1 (0xb6d5e000)
libXcursor.so.1 => /usr/lib/libXcursor.so.1 (0xb6d54000)
libXxf86vm.so.1 => /usr/lib/libXxf86vm.so.1 (0xb6d4e000)
libncurses.so.5 => /usr/lib/libncurses.so.5 (0xb6cfe000)
librt.so.1 => /lib/librt.so.1 (0xb6cf5000)
libpthread.so.0 => /lib/libpthread.so.0 (0xb6cdc000)
/lib/ld-linux.so.2 (0xb7fa0000)
libxcb.so.1 => /usr/lib/libxcb.so.1 (0xb6cc2000)
libdl.so.2 => /lib/libdl.so.2 (0xb6cbe000)
libGLcore.so.1 => /usr/lib/libGLcore.so.1 (0xb5da5000)
libnvidia-tls.so.1 => /usr/lib/tls/libnvidia-tls.so.1 (0xb5da3000)
libXrender.so.1 => /usr/lib/libXrender.so.1 (0xb5d99000)
libXfixes.so.3 => /usr/lib/libXfixes.so.3 (0xb5d93000)
libXau.so.6 => /usr/lib/libXau.so.6 (0xb5d8f000)
libXdmcp.so.6 => /usr/lib/libXdmcp.so.6 (0xb5d88000)

Good luck.

Nightchill
06-17-2009, 05:40 PM
i see the installer has been modified, from GUI to cli. nice change, a LOT faster install too. now only thing missing is a tarball :D

Franz1789
06-18-2009, 11:23 PM
FOR LINUX USER (NOT DEB OR RPM):
if you want to install the game, you need to install:
-lib32-gtk2
-lib32-openal
-lib32 of your driver

PLEASE, PUT IT ON FIRST TOPIC, OR SOMEWHERE IN THE WEBSITE, CAUSE IT'S NEEDED TO KNOW IF SOMEONE WANTS TO INSTALL IT...

jon0
08-24-2009, 04:34 AM
I couldn't find any other posts with this issue:


$ ./RegnumOnlineInstall_64
application-specific initialization failed: bad end of central directory record


I'm running ubuntu 9.04 64bit, and I do have ia32-libs installed.

Arafails
09-01-2009, 02:25 PM
I couldn't find any other posts with this issue:


$ ./RegnumOnlineInstall_64
application-specific initialization failed: bad end of central directory record


I'm running ubuntu 9.04 64bit, and I do have ia32-libs installed.

Sounds like you don't have a complete archive (thats a ZIP error IIRC). If you downloaded using bittorrent, use it to do a check of the downloaded file. That should re-download any corrupted parts.

antoniomiguel
10-26-2009, 05:03 AM
has anybody able to run regnum on ubuntu karmic?

i can't seem to play it successfully. After logging in and 'verifying', client splashes off then gone :(

Ertial
10-26-2009, 05:57 PM
has anybody able to run regnum on ubuntu karmic?

i can't seem to play it successfully. After logging in and 'verifying', client splashes off then gone :(
What happens if you turn Terrain Details off?
I've been playing RO for a while on Karmic without much problems so far.

Franz1789
11-20-2009, 02:05 PM
When I try experimental client it says I can't use the binary... has anyone the same problem?

Kristianna
05-08-2011, 08:02 PM
I know that this might not be the right place for this but I am new to linux. Ever since the last update pushed out from NGD, I crash literally every 5-15 minutes making the game unplayable. I know it is NGD as I reinstalled my OS and all my drivers, played on every setting and even did a clean reinstall numerous times. To top that off, DDO and lotro play just fine....

I have the 64 bit linux installer downloaded but I cannot get it into the synaptic program to install it as it is greyed out. Please help so I can play my game!


K, I read every single post and still have no idea...... Again, completely new to linux, please assist!

DombNexen
04-04-2013, 03:47 PM
anythink about the ubuntu 12.10??

DombNexen
04-04-2013, 04:02 PM
on ubuntu 12.10 oisnt work please give the right option for instalation of that

Linuxmage
04-04-2013, 07:53 PM
I have installed this 3 times on Ubuntu 12.10 with no problems.

When you download it, you need to set the installer to be executable.

Open a terminal then type


cd Downloads


This is making the presumption that your browser downloaded it to that location.

Then use this command to set it as an executable;


chmod +x ROInstall_64


then simply use;


./ROInstall_64


This should start the graphical installer.

Zarakaye
04-04-2013, 08:25 PM
works fin with fedora 18

DombNexen
04-22-2013, 11:43 AM
Thnxz it works perfecty even sometimes it crash out with out reason after login and playing

tropicalpenguin
07-27-2013, 03:43 PM
Trying to install 64-bit version downloaded from the media->downloads section. This happens on two different computers, one running Ubuntu 13.04 and another running Ubuntustudio 13.04. Near the end of the installation the installer crashes. Top of the error log looks like this:


Error in action ExecuteAction

Error in action InstallSelectedFiles

error reading "crapvfs181f36": bad file number
while executing
"read $in $size"
(procedure "::InstallJammer::UnpackSolidProgress" line 28)
invoked from within
"::InstallJammer::UnpackSolidProgress $ifp $ofp $showGui $total"

Linuxmage
07-27-2013, 05:07 PM
Ah damn, it looks like installjammer is so out of date that it no longer functions properly on 13.04.

This is a very serious problem. Installjammer development has been discontinued, and 13.04 upwards rely heavily on gtk3, which it does not support, and only supports gtk2 in part.

tropicalpenguin
07-27-2013, 05:57 PM
Does it use some gtk utility libraries too because the same crash occurs when running:
./ROInstall_64 --mode console

tropicalpenguin
07-27-2013, 05:59 PM
How much does the installer do other than extract the files in the given location? Would it be possible to provide a tarball or similar?

tropicalpenguin
07-27-2013, 06:57 PM
Meanwhile, people looking for a workaround: installing via Steam seems to work.

Lebeau
07-28-2013, 03:57 PM
So, to recap, 12.04 & down won't often work due to game's reliance on only year old GCC/recent gtk libraries ... & 13.04 & up won't often work due to lack of gtk3 compatibility. That essentially leaves only 12.10 as the sole linux os this game still actually supports, right? Like I lamented b4 elsewhere, CoR is now some kind of oddly narrowed linux-hybrid, NOT a truly linux-native program anymore ... alas. :confused:

Cuchulainn
07-28-2013, 04:40 PM
[...]That essentially leaves only 12.10 as the sole linux os this game still actually supports, right? Like I lamented b4 elsewhere, CoR is now some kind of oddly narrowed linux-hybrid, NOT a truly linux-native program anymore ... alas. :confused:

Linux consits of more than just *buntu derivates. Under Debian 7, Fedora 18 and Fedora 19 this game is supported.

Is there any other popular linux distro which dropped GTK2 from their repositories already?

Awrath
08-03-2013, 03:55 AM
Failed for me too! Rage deleted installer! Gonna remove the torrent from my 100mbit seedbox too :| no point wasting my bandwidth on something that wont work for most people.

If anyone can upload the 64bit linux version of ROLauncher, would be much appreciated.

Edit:
Please re-download your launchers manually:

32 bit (http://download01.championsofregnum.com/autopatch/launcher_linux/rolauncher)
64 bit (http://download01.championsofregnum.com/autopatch/launcher_linux64/rolauncher)

Found some links to older versions of the launcher, this should suffice to download all the game data, slow and long winded, but I don't see any other option for now.

jimishol60
09-23-2013, 02:25 PM
It has several months now that rolauncher doesnt work on my laptop with amd 64 testing gentoo and gnome3. I raised my wizard to level55 on my laptop so it worked a lot before it becomes broken. With 64 version i get segmentation fault. On my desktop with stable 64 gentoo and gnome2 works perfectly but copying files from there didn't helped. Copying 32version of rolauncher gives me start up window and fails after verifying 100% of sdb files, i think. Installing the 32version does the same and gives error that doesnt find libtinfo.so.5 I installed the ncurses with tinfo flag so i got this libtinfo file. It still doesnt find it. I linked it to both folders regnum and regnum/live and i get ./game: error while loading shared libraries: libtinfo.so.5: wrong ELF class: ELFCLASS64
among lot of (rolauncher:8872): GdkPixbuf-CRITICAL **: gdk_pixbuf_get_height: assertion `GDK_IS_PIXBUF (pixbuf)' failed
Dont know what else to do

Awrath
09-23-2013, 04:28 PM
It has several months now that rolauncher doesnt work on my laptop with amd 64 testing gentoo and gnome3. I raised my wizard to level55 on my laptop so it worked a lot before it becomes broken. With 64 version i get segmentation fault. On my desktop with stable 64 gentoo and gnome2 works perfectly but copying files from there didn't helped. Copying 32version of rolauncher gives me start up window and fails after verifying 100% of sdb files, i think. Installing the 32version does the same and gives error that doesnt find libtinfo.so.5 I installed the ncurses with tinfo flag so i got this libtinfo file. It still doesnt find it. I linked it to both folders regnum and regnum/live and i get ./game: error while loading shared libraries: libtinfo.so.5: wrong ELF class: ELFCLASS64
among lot of (rolauncher:8872): GdkPixbuf-CRITICAL **: gdk_pixbuf_get_height: assertion `GDK_IS_PIXBUF (pixbuf)' failed
Dont know what else to do

I'm glad you brought this up, I've been meaning to also.

I have the same issue as you on 64-bit Arch Linux.

The launcher opens up fine, but it segfaults if I try to login with an account that has not yet been verified for use with this laptop. So, in effect, I cannot access those accounts any longer. While I receive the email verification, the launcher segfaults instead of allowing me to input the verification code.

It also segfaults when I mouse over any checkbox in the options.

I attempted to run the launcher with gdb, but this yielded little information.

Program received signal SIGSEGV, Segmentation fault.
0x00007ffff43030a0 in ?? ()

Here's hoping someone still cares for us linux users.

Lebeau
09-23-2013, 10:08 PM
Not sure if this can or will help at all, but have u tried installing & running linux version of CoR thru STEAM gaming service? It's the only way at present I can run this game, as the GSS & gtk library incompatibilities have forced me to do so (hmmm, did ?ubuntu community & steam corp. actually plan for & intend this very thing all along so we'd all have to join steam? idk, opinions?).

jimishol60
09-25-2013, 06:49 AM
No, i didnt installed Steam. I m running on gentoo so i dont use deb that is needed as i saw for installing Steam. If installing steam is a must then it should be advertised properly. Generally i dont like to be inforced to install anything, otherwise i would stay in windows , where i was decades ago , or in ubuntu where i was years ago. I will just wait for next updates in the hope that rolauncher will work again. Till then i miss the fun of playing with my kids with defferent machines since only one can play CoR. If debuging was more meaningfull than Segmentation fault things could be solvable.
Seeing http://wiki.gentoo.org/wiki/Steam seems too complicated and since i am with gnome3 and systemd there will be much trouble with dubious results if i try to install Steam. I'll wait

Berel
09-30-2013, 12:24 AM
the segfault on Arch is caused by gdk-pixbuff2. 2.28.1-1 is the last version that works with the launcher.

you can extract usr/lib/libgdk_pixbuf-2.0.so.0.2800.1 from gdk-pixbuf2-2.28.1-1-x86_64.pkg.tar.xz in regnum´s directory, rename it to libgdk_pixbuf-2.0.so then run

LD_PRELOAD=./libgdk_pixbuff-2.0.so ./rolaucherthats works for me.

gdk-pixbuff2: x86_64 (https://dl.dropboxusercontent.com/u/14325890/regnum/gdk-pixbuf2-2.28.1-1-x86_64.pkg.tar.xz) i686 (https://dl.dropboxusercontent.com/u/14325890/regnum/gdk-pixbuf2-2.28.1-1-i686.pkg.tar.xz)


PS:English is not my language, sorry...

(https://www.facebook.com/#)

Awrath
10-06-2013, 03:27 PM
the segfault on Arch is caused by gdk-pixbuff2. 2.28.1-1 is the last version that works with the launcher.

you can extract usr/lib/libgdk_pixbuf-2.0.so.0.2800.1 from gdk-pixbuf2-2.28.1-1-x86_64.pkg.tar.xz in regnum´s directory, rename it to libgdk_pixbuf-2.0.so then run

LD_PRELOAD=./libgdk_pixbuff-2.0.so ./rolaucherthats works for me.

gdk-pixbuff2: x86_64 (https://dl.dropboxusercontent.com/u/14325890/regnum/gdk-pixbuf2-2.28.1-1-x86_64.pkg.tar.xz) i686 (https://dl.dropboxusercontent.com/u/14325890/regnum/gdk-pixbuf2-2.28.1-1-i686.pkg.tar.xz)


PS:English is not my language, sorry...

(https://www.facebook.com/#)

Thanks a lot! That does solve the launcher issue for me on Arch.

jimishol60
10-12-2013, 05:06 AM
Since i use gentoo i downgraded x11-libs/gdk-pixbuf from 2.28.2 to 2.28.1 (didnt make more downgrade cause of dependencies) with excact same behavior. I say exact because this time i checked dmesg that gave, in both cases,
rolauncher[29654]: segfault at 40 ip 00007fa31c177d98 sp 00007fff9a9350c0 error 4 in libc-2.17.so[7fa31c074000+1a2000]
So maybe it's a C version promblem. May it works on my stable gentoo cause there should be sys-libs/glibc-2.15-r3 and i use here with gentoo testing the sys-libs/glibc-2.17

nevertheless i tried to debug harder and got these fatals on my debug.log
./rolauncher: error: symbol lookup error: undefined symbol: gtk_widget_device_is_shadowed (fatal)
/usr/lib64/gtk-2.0/2.10.0/engines/libpixmap.so: error: symbol lookup error: undefined symbol: g_module_unload (fatal)
4058: /usr/lib64/gtk-2.0/2.10.0/engines/libadwaita.so: error: symbol lookup error: undefined symbol: g_module_check_init (fatal)
4058: /usr/lib64/gtk-2.0/2.10.0/engines/libadwaita.so: error: symbol lookup error: undefined symbol: g_module_unload (fatal)
4058: /usr/lib64/gtk-2.0/modules/libcanberra-gtk-module.so: error: symbol lookup error: undefined symbol: g_module_unload (fatal)
4058: /usr/lib64/gtk-2.0/modules/libcanberra-gtk-module.so: error: symbol lookup error: undefined symbol: gtk_widget_device_is_shadowed (fatal)
4058: /usr/lib64/gtk-2.0/modules/libcanberra-gtk-module.so: error: symbol lookup error: undefined symbol: gtk_module_display_init (fatal)
/usr/lib64/gtk-2.0/2.10.0/immodules/im-ibus.so: error: symbol lookup error: undefined symbol: g_module_unload (fatal)
/usr/lib64/gio/modules/libgiognomeproxy.so: error: symbol lookup error: undefined symbol: g_module_check_init (fatal)
4058: /usr/lib64/gio/modules/libgiognomeproxy.so: error: symbol lookup error: undefined symbol: g_module_unload (fatal)
/usr/lib64/gio/modules/libdconfsettings.so: error: symbol lookup error: undefined symbol: g_module_check_init (fatal)
4058: /usr/lib64/gio/modules/libdconfsettings.so: error: symbol lookup error: undefined symbol: g_module_unload (fatal)
/usr/lib64/gio/modules/libgiognutls.so: error: symbol lookup error: undefined symbol: g_module_check_init (fatal)
4058: /usr/lib64/gio/modules/libgiognutls.so: error: symbol lookup error: undefined symbol: g_module_unload (fatal)
/usr/lib64/gio/modules/libgioremote-volume-monitor.so: error: symbol lookup error: undefined symbol: g_module_check_init (fatal)
4058: /usr/lib64/gio/modules/libgioremote-volume-monitor.so: error: symbol lookup error: undefined symbol: g_module_unload (fatal)
/usr/lib64/gio/modules/libgsettingsgconfbackend.so: error: symbol lookup error: undefined symbol: g_module_check_init (fatal)
4058: /usr/lib64/gio/modules/libgsettingsgconfbackend.so: error: symbol lookup error: undefined symbol: g_module_unload (fatal)
/usr/lib64/gio/modules/libgiolibproxy.so: error: symbol lookup error: undefined symbol: g_module_check_init (fatal)
4058: /usr/lib64/gio/modules/libgiolibproxy.so: error: symbol lookup error: undefined symbol: g_module_unload (fatal)
/usr/lib64/gio/modules/libgvfsdbus.so: error: symbol lookup error: undefined symbol: g_module_check_init (fatal)
4058: /usr/lib64/gio/modules/libgvfsdbus.so: error: symbol lookup error: undefined symbol: g_module_unload (fatal)
/usr/lib64/gconv/ISO8859-7.so: error: symbol lookup error: undefined symbol: gconv_end (fatal)
/usr/lib64/pango/1.8.0/modules/pango-basic-fc.so: error: symbol lookup error: undefined symbol: g_module_check_init (fatal)
4058: /usr/lib64/pango/1.8.0/modules/pango-basic-fc.so: error: symbol lookup error: undefined symbol: g_module_unload (fatal)
/usr/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-xpm.so: error: symbol lookup error: undefined symbol: g_module_check_init (fatal)
4058: /usr/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-xpm.so: error: symbol lookup error: undefined symbol: g_module_unload (fatal)
/usr/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-png.so: error: symbol lookup error: undefined symbol: g_module_check_init (fatal)
4058: /usr/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-png.so: error: symbol lookup error: undefined symbol: g_module_unload (fatal)

I tried copy some of them from gentoo-stable desktop where rolauncher works but did not seem any progress. And i cant believe all these are indeed fatals :)

Berel
10-15-2013, 06:42 AM
In Arch the problem started with the libpng update, from 1.5.15 to 1.6.2.

The package gdk-pixbuf2-2.28.1-1 was compiled against libpng 1.5.x. with the libpng update, gdk-pixbuf2 was updated to 2.28.1-2, the same version but compiled against libpng 1.6.x

Perhaps this is related to libpng and not gdk-pixbuf2

PS: You need to decompress rolauncher with upx to do a backtrace...

jimishol60
11-17-2013, 11:06 AM
An old player, Jackie Chan, of RO, gave me the idea of chroot
So, i had on an external usb disk, that was named as "ext3_label", the linux-mint 13 (not a bleeding edge distribution as getnoo) So i installen RO there (through an old ROInstall_64 i had. I dont see it anymore in official site - when i click download 64bit it downloads ROInstall_32!!!) where RO was working. So, rebooted in gentoo, i made an executable script that named ro-start

sudo mount -t proc none /run/media/username_of_gentoo/ext3_label/proc
sudo mount --bind /dev /run/media/username_of_gentoo/ext3_label/dev
sudo chroot /run/media/username_of_gentoo/ext3_label su - username_of_mint -c "./ro-launch"

(***--rbind option of mount /dev works better in new chroot terminal enviroment but gentoo and gnome terminal have problems upon umount***)
chroot format was taken from http://www.catonmat.net/blog/chroot-su-sh-trick/
I made another one named ro-umount

sudo umount /run/media/username_of_gentoo/ext3_label/dev
sudo umount -l /run/media/username_of_gentoo/ext3_label/proc

And made another executable script this time in usb's home account folder named "ro-launch"

cd /home/username_of_mint/regnum
./rolauncher

I plug in usb disk that appears in /run/media/username_of_gentoo/ext3_label and run ./ro-start
Ignore some "Permission denied" messages.
Unfortunately windowed mode doesn't work most of the times. But the more important full screen plays well always.
When i finish playing, (performance, of course with full graphics, and sound seems perfect despite the fact that Alt-i in game gave only 9fps that definetely must be wrong), i give ./ro-umount and all is as before ...I hope :) I can umount and pull off usb if i want


Berel must be right about libpng but this library affects many packages and some of them large enough.So, i didnt downgrade to check.Hope in future this problem will be fixed. For now i can play if i plug an external usb :)

Cuchulainn
09-10-2014, 09:17 AM
...

I installed Calculate 14 (CLDX variant with XFCE as DE) on my computer yesterday and tried Regnum on it. This linux is based on Gentoo.

At first I got segfaults when executing rolauncher, but the issue was solved after I changed the appearence from the default look to Crux. Somehow the game launcher doesn't work if I use Calculate as appearence theme. But with the change it works now.

Zarakaye
02-26-2015, 11:29 PM
Cuchulain it seem you have this problem: http://www.championsofregnum.com/forum/showthread.php?t=100997

take a look to my solution (at ends of the thread) is an old bug NGD do not care about Linux client

andres81
03-05-2015, 12:18 AM
I installed Calculate 14 (CLDX variant with XFCE as DE) on my computer yesterday and tried Regnum on it. This linux is based on Gentoo.

At first I got segfaults when executing rolauncher, but the issue was solved after I changed the appearence from the default look to Crux. Somehow the game launcher doesn't work if I use Calculate as appearence theme. But with the change it works now.

I suppose the crashes appeared before you submitted this authentication code you received by email?
In this case you can switch back to your preferred desktop theme after having started the game once - what fails and provokes the segfault is actually only the window where you have to enter the authentication code.
This bug is already several years old and exists since NGD implemented this authentication stuff, appearently they have no intention to fix it.

Iheartpancakes
03-17-2015, 01:40 AM
While I applaud NGD for having the best MMO available to Linux (and it's how I found out about RO), I've finally realised dual booting was just a better option. In Windows I get a better FPS and weapon trails, there's no dependencies I need to install, and it's generally just a more pleasing experience. Yes, even though it's Windows, it's still pleasing. I said it.

Adrian
12-28-2017, 04:42 PM
Hello,

We uploaded an updated version of the Linux installers. These versions contain only the needed resources for the initiation zones of all realms, and also they have the current and working launcher as well.

Can any of you test them? Remember to install it in another folder as you may lose your resource files of your current installation.

http://download01.regnumonlinegame.com/downloads/installer/ROInstall_32
http://download01.regnumonlinegame.com/downloads/installer/ROInstall_64

Thank you!

schachteana
12-29-2017, 08:34 PM
Hello,

We uploaded an updated version of the Linux installers. ...

just tried it and everything worked fine. Initiation zone loaded really quickly.
Found it rather strange that Regnum decided to start with 1024x resolution, when there are 1920 and 5760 as other choices. I'd expect 1920 to be default.
Also, game initially started in windowed mode. Fullscreen + wrong resolution can be rather confusing for new/younger players... I remember distinctively that 8 years ago, I used to play with 1024x768 fullscreen without knowing there was a bigger resolution available :D
Also, any reason why "middle" graphics is chosen as a default? Water details middle, no bloom, no FXAA. Middle is about 60 and high about 50 fps for me.
Shouldn't V sync be enabled by default?
Gamma settings work fine in Linux, but I think that in Windows, they affect the entire OS which is strange.
After changing graphic settings, the game claims to restart but fails to do so.
It seems that some, if not all settings are character-bound. "Save map zoom" and "show 2nd spellbar" should really be enabled by default but they are not.
The Antialiasing controller (upper left one, there are two??) is greyed out, even with high graphic settings.
But when I enable the FXAA tick, the games looks weird, changes color all the time. See screenshot (https://abload.de/img/screenshot_2017-12-29zssd0.png). Also, as can be seen from the picture, there is no antialiasing going on, looks pretty bad. Does not fit into the remaining graphics which are pretty decent.
Still wondering why "Extracting setup files" takes more than three minutes :confused:. Unzipping an archive of similar size takes no more than 15 sec.
Same thing under Windows, if I remember correctly.

Adrian
12-29-2017, 08:52 PM
...

Thank you for testing!

It works as intended, then. :)

Yes, the default settings when the newest hardware is not detected properly (that code needs some... recoding) are really embarrassing. We need to change that.

But, what I was worried about is that the installer works fine and the launcher as well. Up until now, the installer also had a bug in some distros that we managed to tackle (see before in this thread, someone talking about "bad file number").

So, thanks a lot!

Ikaledam
12-30-2017, 11:21 PM
Thank you for testing!

It works as intended, then. :)

Yes, the default settings when the newest hardware is not detected properly (that code needs some... recoding) are really embarrassing. We need to change that.

But, what I was worried about is that the installer works fine and the launcher as well. Up until now, the installer also had a bug in some distros that we managed to tackle (see before in this thread, someone talking about "bad file number").

So, thanks a lot!

Hey Adrian, just a heads up, the version of ncurses that the game is using is old. I had to install packages from the AUR such as ncurses5-compat-libs and lib32-ncurses5-compat-libs in order to get the game to run; with the default and up to date version of the library that comes with my distro (ncurses6) the game won't launch. I imagine if users don't have an easy way to install compatibility packages or are just new to linux and don't understand the problem, this could be a deal breaker.

Adrian
01-02-2018, 03:10 PM
Hey Adrian, just a heads up, the version of ncurses that the game is using is old. I had to install packages from the AUR such as ncurses5-compat-libs and lib32-ncurses5-compat-libs in order to get the game to run; with the default and up to date version of the library that comes with my distro (ncurses6) the game won't launch. I imagine if users don't have an easy way to install compatibility packages or are just new to linux and don't understand the problem, this could be a deal breaker.

Thank you! Noted and we will see what we can do :thumb: