What are the nautilus debugging libs?

Asked by Bernhard

I reported a nautilus gdb backtrace on bugzilla:

Thread 3 (Thread 0x42165950 (LWP 19954)):
#0 0x00007f7e83e078db in open64 () from /lib/libpthread.so.0
#1 0x00007f7e856004dd in ?? () from /usr/lib/libgio-2.0.so.0
#2 0x00007f7e855dcdd7 in g_file_copy () from /usr/lib/libgio-2.0.so.0
#3 0x00000000004c2fb1 in copy_move_file (copy_job=0x100b5b0,
    src=0x7f7e7435a8a0, dest_dir=0x7f7e7436da00, same_fs=0, unique_names=0,
    dest_fs_type=0x42164e80, source_info=0x42164f90, transfer_info=0x42164f60,
    debuting_files=0x0, position=0x0, overwrite=0, skipped_file=0x42164e9c)
    at nautilus-file-operations.c:3744
#4 0x00000000004c34eb in copy_move_file (copy_job=0x100b5b0,
    src=0x7f7e74116c40, dest_dir=0x7f7e7418e320, same_fs=0, unique_names=0,
    dest_fs_type=0x42164fa8, source_info=0x42164f90, transfer_info=0x42164f60,
    debuting_files=0x1201680, position=0x0, overwrite=0,
    skipped_file=0x42164fbc) at nautilus-file-operations.c:3294

But it's missing some symbols, e.g. the filename of the file just copied. How can I get these symbols. glib-dbg and glibc-debug are not in the Ubuntu repos.

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu nautilus Edit question
Assignee:
No assignee Edit question
Solved by:
Shyam
Solved:
Last query:
Last reply:
Revision history for this message
Best Shyam (shyam.s) said :
#1

Hi

For Debug Packages you need to add seperate Repo in the source.list.

Add the following lines in Source.lists or through Software Soucrces

for Intrepid
deb http://ddebs.ubuntu.com intrepid-updates main restricted universe multiverse
deb http://ddebs.ubuntu.com intrepid-security main restricted universe multiverse
deb http://ddebs.ubuntu.com intrepid-proposed main restricted universe multiverse

If you are using Jaunty Use

deb http://ddebs.ubuntu.com jaunty main restricted universe multiverse

Regards
Shyam

Revision history for this message
Bernhard (b.a.koenig) said :
#2

Thanks Shyam, that solved my question.

Revision history for this message
Bernhard (b.a.koenig) said :
#3

Btw, just a remark: glib-dgb and glibc-debug seem to be Debian packages, but they cannot be found when searching on packages.ubuntu.com/.

Revision history for this message
Shyam (shyam.s) said :
#4

Yes glib and glibc are debian packages and for ubuntu they are virtual packages provided by libc6 and libc6-udeb. So if you install libc6 and libc6-udeb its enough both are of same functionality only.

Regards
Shyam

Revision history for this message
Bernhard (b.a.koenig) said :
#5

Ah, I guess libc6-udeb is what I was missing.