Peaceseeker

how to find the problem fonts in google earth 7

Dec 19th, 2012
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. I found it easier to do:
  2. cd /opt/google/earth/free/
  3. LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH strace ./googleearth-bin 2>&1 | grep -B10 SEGV_MAPERR | grep fonts
  4.  
  5. example, below we can see '60-group-non-tt-fonts.conf' is causing problems:
  6.  
  7. [/opt/google/earth/free]>> LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH strace ./googleearth-bin 2>&1 | grep -B10 SEGV_MAPERR
  8. read(12, "", 8192) = 0
  9. close(12) = 0
  10. access("/etc/fonts/infinality/conf.d/60-group-non-tt-fonts.conf", R_OK) = 0
  11. stat64("/etc/fonts/infinality/conf.d/60-group-non-tt-fonts.conf", {st_mode=S_IFREG|0644, st_size=90663, ...}) = 0
  12. open("/etc/fonts/infinality/conf.d/60-group-non-tt-fonts.conf", O_RDONLY) = 12
  13. read(12, "<?xml version='1.0'?>\n<!DOCTYPE "..., 8192) = 8192
  14. time(NULL) = 1355936343
  15. read(12, "dit name=\"font_type\" mode=\"assig"..., 8192) = 8192
  16. read(12, "\n\t\t</test>\n\t\t<edit name=\"font_ty"..., 8192) = 8192
  17. read(12, "<string>DokChampa</string>\n\t\t</t"..., 8192) = 8192
  18. --- SIGSEGV {si_signo=SIGSEGV, si_code=SEGV_MAPERR, si_addr=0x3} ---
Add Comment
Please, Sign In to add comment