Had the same problem as you. Solved the following way: $ export LC_COLLATE=en_US.ISO-8859-1 LC_CTYPE=en_US.ISO-8859-1 LC_MESSAGES=en_US.ISO-8859-1 $ gkrellm &
So it seems like an internationalization or character set issue. You can make a wrapper script to start gkrellm this way, e.g.: [patola@bmw patola]% cat /usr/local/bin/gk #!/bin/zsh export LC_COLLATE=en_US.ISO-8859-1 LC_CTYPE=en_US.ISO-8859-1 LC_MESSAGES=en_US.ISO-8859-1 /usr/local/bin/launch /usr/bin/gkrellm -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/886532 Title: gkrellm crashes - segmentation fault - calendar (create_monitor) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gkrellm/+bug/886532/+subscriptions -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
