Jump to content

Search the Community

Showing results for tags 'linux 64'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements
    • Welcome Aboard
  • Kerbal Space Program 2
    • KSP2 Dev Updates
    • KSP2 Discussion
    • KSP2 Suggestions and Development Discussion
    • Challenges & Mission Ideas
    • The KSP2 Spacecraft Exchange
    • Mission Reports
    • KSP2 Prelaunch Archive
  • Kerbal Space Program 2 Gameplay & Technical Support
    • KSP2 Gameplay Questions and Tutorials
    • KSP2 Technical Support (PC, unmodded installs)
    • KSP2 Technical Support (PC, modded installs)
  • Kerbal Space Program 2 Mods
    • KSP2 Mod Discussions
    • KSP2 Mod Releases
    • KSP2 Mod Development
  • Kerbal Space Program 1
    • KSP1 The Daily Kerbal
    • KSP1 Discussion
    • KSP1 Suggestions & Development Discussion
    • KSP1 Challenges & Mission ideas
    • KSP1 The Spacecraft Exchange
    • KSP1 Mission Reports
    • KSP1 Gameplay and Technical Support
    • KSP1 Mods
    • KSP1 Expansions
  • Community
    • Science & Spaceflight
    • Kerbal Network
    • The Lounge
    • KSP Fan Works
  • International
    • International
  • KerbalEDU
    • KerbalEDU
    • KerbalEDU Website

Categories

There are no results to display.


Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Skype


Twitter


About me


Location


Interests

Found 1 result

  1. I'll just put this here as a record of troubleshooting a problem with KSP 1.3 on Linux Mint 17.3 Cinnamon 64-bit. I hope it helps someone else, someday... Hardware: Sandy Bridge i7-2600, 12GB, 1TB, GXT1050 (2GB VRAM). Shell: Bash. Process to produce the problem: $ cd ~/games/ksp_1_3/ # folder to which KSP 1.3 was unzipped. $ ./KSP.x86_64 Result: A completely blank/dark grey screen flashes up a couple of times, and then I am returned to the command line. A core dump is produced. $ echo $? 127 $ find . -type f -name "*.log" $ #no results. "127" is the universal "user-defined error" return code. Not much help. Nor is the core dump of much help, without the source code or a binary compiled for debugging. As shown, no log files are produced by KSP. Solution Steps: Required packages: strace and mlocate. $ sudo updatedb $ strace -s 256 -o strace.log ./KSP.x86_64 As before KSP runs and crashes, but this time a file strace.log is produced. The "-s 256" means record up to 256 bytes of strings in the program, so you can get full file names. $ less strace.log Press 'End' to go to the end of the file. Working backwards from the end of the trace log, the last significant thing was an error within the file "libkeyboard.so". $ ls -lh `locate libkeyboard.so` -rwxr-xr-x 1 manaiaK users 13K May 26 04:54 /srv/home/manaiaK/games/ksp_1_3/KSP_Data/Plugins/x86_64/libkeyboard.so* -rwxr-xr-x 1 manaiaK users 7.7K May 26 04:54 /srv/home/manaiaK/games/ksp_1_3/KSP_Data/Plugins/x86/libkeyboard.so* -rw-r--r-- 1 root root 56K Jun 25 2014 /usr/lib/gnome-settings-daemon-3.0/libkeyboard.so -rw-r--r-- 1 root root 31K Mar 8 2016 /usr/lib/x86_64-linux-gnu/cinnamon-settings-daemon-3.0/libkeyboard.so So, there are different versions of this file. $ cd KSP_Data/Plugins/x86_64 $ cp libkeyboard.so libkeyboard.so.bak $ cp /usr/lib/x86_64-linux-gnu/cinnamon-settings-daemon-3.0/libkeyboard.so . $ cd - # returns to ~games/ksp_1_3 $ strace -s 256 -o strace.log ./KSP.x86_64 KSP runs and crashes as before, but inspecting the strace.log file as before reveals a different problem! Progress!. This time the problem is with a file liblingoona.grammar.kerbal.so, which is unique to KSP I downloaded the KSP 1.3.1 pre-release, and sure enough the liblingoona.grammar.kerbal.so file was different. Copying the 1.3.1 liblingoona in place of the one in my 1.3 install using the process described above fixed that problem. After that, KSP ran normally but produced a SIGSEGV and core dump when I quit the game. To not get core dumps when I run KSP, but still get them when required for debugging my own stuff:- $ ulimit -c 0 ; ./KSP_x86_64 ; ulimit -c unlimited
×
×
  • Create New...