|
|
Linux Technical issues under Linux platform |
|
Thread Tools | Display Modes |
11-13-2007, 05:31 AM | #11 | |
Pledge
Join Date: Aug 2007
Posts: 2
|
Quote:
Thanks so much! This did the trick!! Now if I could just get it to download the resources faster than 30kb/sec..... Inkpot |
|
11-14-2007, 12:31 AM | #12 |
Pledge
Join Date: May 2007
Posts: 13
|
*** glibc detected *** corrupted double-linked list
*** glibc detected *** free(): invalid pointer this error messages are ignored with the export of malloc check = 0 i found the fix on a forum of neverwinter night " The newer glibc ebuilds added sanity checks that cause the above 'error'... For example, any application that calls free() two times on the same pointer will automatically crash with these versions of glibc. True that a "double free" is bad practice, but up to now, no implementation of glibc would crash when this happens, the 2nd free would simply do nothing, so a lot of programs are 'crashing' with these new versions of glibc. This check and its behavior can be modified through an environment variable "MALLOC_CHECK_"... edit the nwn script and add the following before calling nwmain: export MALLOC_CHECK_=0" Its value should be one of * 0 to ignore corruptions * 1 to print to stderr(3) * 2 to abort immediately |
11-24-2007, 02:05 PM | #13 |
Pledge
Join Date: Nov 2007
Posts: 2
|
I followed you guide here and got the game working by issuing the command : -
MALLOC_CHECK_=0 ./rolauncher How do I create an entry to it so I can lauch the game from my gnome menu. I am using 32bit Gutsy? Cheers EmyrB |
11-24-2007, 02:56 PM | #14 | |
Count
Join Date: Jul 2007
Location: France
Posts: 1,416
|
Quote:
Code:
#!/bin/bash export PATH_TO_REGNUM="/somewhere/regnum/is/" cd $PATH_TO_REGNUM export MALLOC_CHECK_=0 ./rolauncher 2) Put the script in a location you will remember (and that you won't delete, Regnum folder is an idea, or your local bin directory) and cast the execute spell: chmod u+x play_regnum.sh 3) Follow this tutorial http://www.ubuntugeek.com/howto-add-...nome-menu.html and use the script as your command. Find a pretty icon and you're all set. As usual, understanding what you are doing helps. A lot Good luck
__________________
|
|
11-25-2007, 08:46 AM | #15 | |
Guest
Posts: n/a
|
Quote:
By default, its value is 1, memory structure is dumped in stderr then abort. |
|
11-25-2007, 02:46 PM | #16 |
Pledge
Join Date: Nov 2007
Posts: 2
|
Hey Magnet
Many thanks for the helpful pointer |
12-14-2007, 06:32 PM | #17 |
Count
Join Date: Dec 2006
Location: Germany
Posts: 1,655
|
Hello Surak or which admin read this
please make this thread sticky until the glibc problem is fixed! Code:
MALLOC_CHECK_=0 ./rolauncher STICKY plzzzzzz |
Thread Tools | |
Display Modes | |
|
|