Based on the information provided, it seems that you're experiencing a
segmentation fault (segfault) issue with gnome-nettool on Ubuntu 16.04
LTS. This could be caused by various factors, such as software bugs or
system-specific configurations. Here are some steps you can try to
troubleshoot and resolve the issue:

Update the System:
Ensure that your system is fully up-to-date by running the following commands 
in a terminal:

sql
Copy code
sudo apt update
sudo apt upgrade
sudo apt dist-upgrade
Check for Bug Reports:
Visit the Ubuntu bug tracker or GNOME's bugzilla to check if there are existing 
bug reports related to the gnome-nettool segmentation fault. If you find a 
relevant bug report, check for possible workarounds or solutions suggested by 
other users.

Check for Core Dump File:
If the program is crashing with a segmentation fault and generating a core 
dump, you can check the /var/crash/ directory for core dump files. Use the 
following command to list the core dumps:

bash
Copy code
ls -lh /var/crash/
If you find a core dump file related to gnome-nettool, you can analyze it using 
tools like gdb to get more information about the crash.

Use gdb for Debugging (Optional):
If you are comfortable with using the terminal and debugging tools, you can try 
running gnome-nettool under gdb to see if you can get more information about 
the crash. Open a terminal and run the following command:

Copy code
gdb gnome-nettool
Then, inside the gdb prompt, type run and hit Enter. This will start the 
gnome-nettool program. Try to reproduce the issue, and when it crashes, gdb 
should provide additional information about the crash. You can type bt 
(backtrace) to see the stack trace and possibly identify the cause of the 
segmentation fault https://migrationunity.com/

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-nettool in Ubuntu.
https://bugs.launchpad.net/bugs/1627204

Title:
  Segmentation fault using lookup

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-nettool/+bug/1627204/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

Reply via email to