Clean install of SL 5 x86 Gnome on a 32 bit computer fully updated with default sabayon repository (1259)
Test system = i686 AMD Athlon(tm) XP 2400+, 1 gig ram, Radeon X1650 Pro 512 Mb AGP graphics
Installed and run supertux from terminal and received the error as altairz but this time I also received a message telling me that it could not read the file /home/claudia/.supertux/config
So using a file-manager I looked in /home/claudia/.supertux/ and sure enough the config file wasn't there, so I created a blank config file and tried to run supertux this time I received
usr/share/games/supertux
Warning: No joysticks are available.
Memory segment error"
So I pasted the text of the config file from my 64 bit syatem to the blank config file I created and still no go
- Code: Select all
(supertux-config
;; the following options can be set to #t or #f:
(fullscreen #t)
(sound #t)
(music #t)
(show_fps #f)
;; either "opengl" or "sdl"
(video "sdl")
;; joystick number (-1 means no joystick):
(joystick -1)
(joystick-x 0)
(joystick-y 1)
(joystick-a 0)
(joystick-b 1)
(joystick-start 2)
(joystick-deadzone 4096)
(keyboard-jump 32)
(keyboard-duck 274)
(keyboard-left 276)
(keyboard-right 275)
(keyboard-fire 306)
)
So while reading the config file I noticed
- Code: Select all
;; either "opengl" or "sdl"
(video "sdl")
and decided to change "sdl" to "opengl" (it worked) so the config file now looks like this
- Code: Select all
(supertux-config
;; the following options can be set to #t or #f:
(fullscreen #t)
(sound #t)
(music #t)
(show_fps #f)
;; either "opengl" or "sdl"
(video "opengl")
;; joystick number (-1 means no joystick):
(joystick -1)
(joystick-x 0)
(joystick-y 1)
(joystick-a 0)
(joystick-b 1)
(joystick-start 2)
(joystick-deadzone 4096)
(keyboard-jump 32)
(keyboard-duck 274)
(keyboard-left 276)
(keyboard-right 275)
(keyboard-fire 306)
)
You should have a file named config in your /home/"username"/.supertux/ directory
If you do not then create a file in your /home/"username"/.supertux/ called config, with your favorite text editor and paste the above code in to it, save and then run supertux
If you do have the config file then change "sdl" to "opengl" with your favorite text editor, save and run supertux
The above worked for me even after installing kde-meta, hope it works for you (if it does then please do not forget to mark topic as solved)