Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

Files menu crashes during search for documents

Graphical Environments, Managers, Multimedia & Desktop questions.
Post Reply
Message
Author
4joeyirosh1
Posts: 157
Joined: 2016-09-11 18:04
Been thanked: 3 times

Files menu crashes during search for documents

#1 Post by 4joeyirosh1 »

Hi!I have installed Debian 10 Buster 64 bit on my laptop and periodically update any new packages.I have Gnome 3.30.2 which I believe is the latest version.

I use the files menu (if you click on activities search for files the application with the blue file cabinet icon which I have added to favourites.I am not sure what its called and if it has a specific name please tell me) to navigate through my various files on the Debian OS.Also I use it to search for specific files I need.Unfortunately,sometimes when I click the search icon and start typing name of the file I am searching for,the file menu crashes.Problem is also that sometimes it works and I can search for files and other times it crashes during the search.

I have tried to undertake my own investigation by checking the files

Code: Select all

/var/log/messages

Code: Select all

 /var/log/debug

Code: Select all

/var/log/syslog
but I cannot see any error messages.Also if I try to check journalctl by using command

Code: Select all

journalctl --since "2019-10-20 08:09:00"
and look at .xsession-errors via command

Code: Select all

cat .xsession-errors > xsession-errors 
there is no error log generated during the files menu crash.

Kindly assist in rectifying the files menu crash and also advise on which log files to check for such crashes.Maybe from my investigation explained above,I am checking the wrong logs or using wrong commands to check for system and user logs.

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 133 times

Re: Files menu crashes during search for documents

#2 Post by Head_on_a_Stick »

Might be better to "follow" the journal then reproduce the crash to see for sure if any new entries are added:

Code: Select all

journalctl --follow
deadbang

4joeyirosh1
Posts: 157
Joined: 2016-09-11 18:04
Been thanked: 3 times

Re: Files menu crashes during search for documents

#3 Post by 4joeyirosh1 »

Head_on_a_Stick wrote:Might be better to "follow" the journal then reproduce the crash to see for sure if any new entries are added:

Code: Select all

journalctl --follow
Thanks.I ran the

Code: Select all

journalctl --follow
[/quote] and simulated four search crashes and the results are as below

Code: Select all

---First crash log
Oct 20 18:21:10 <<hostname>> kernel: nautilus[4532]: segfault at 5600657a6984 ip 00007f07be8b055f sp 00007ffdb28824c8 error 4 in libgobject-2.0.so.0.5800.3[7f07be886000+32000]
Oct 20 18:21:10 <<hostname>> kernel: Code: 1f 84 00 00 00 00 00 0f 1f 40 00 48 85 ff 74 4b 48 8b 07 48 85 c0 74 43 48 8b 00 48 3d fc 03 00 00 76 18 48 83 e0 fc 48 89 c2 <0f> b6 42 14 48 39 74 c2 48 0f 94 c0 0f b6 c0 c3 90 48 c1 e8 02 48

Code: Select all

--Second crash log
Oct 20 18:22:02 <<hostname>> kernel: traps: nautilus[20541] general protection ip:7ff5b279e55f sp:7ffd2afb9d48 error:0 in libgobject-2.0.so.0.5800.3[7ff5b2774000+32000]

Code: Select all

---Third crash log
hyrsOct 20 18:22:32 <<hostname>> kernel: nautilus[20608]: segfault at 5600657a6984 ip 00007f7dba72655f sp 00007ffd9b34faa8 error 4 in libgobject-2.0.so.0.5800.3[7f7dba6fc000+32000]
Oct 20 18:22:32 <<hostname>> kernel: Code: 1f 84 00 00 00 00 00 0f 1f 40 00 48 85 ff 74 4b 48 8b 07 48 85 c0 74 43 48 8b 00 48 3d fc 03 00 00 76 18 48 83 e0 fc 48 89 c2 <0f> b6 42 14 48 39 74 c2 48 0f 94 c0 0f b6 c0 c3 90 48 c1 e8 02 48

Code: Select all

---Fourth crash log

Oct 20 18:26:02 <<hostname>> kernel: nautilus[20671]: segfault at 550065707988 ip 00007f59abcc655f sp 00007fffe7f05428 error 4 in libgobject-2.0.so.0.5800.3[7f59abc9c000+32000]
Oct 20 18:26:02 <<hostname>> kernel: Code: 1f 84 00 00 00 00 00 0f 1f 40 00 48 85 ff 74 4b 48 8b 07 48 85 c0 74 43 48 8b 00 48 3d fc 03 00 00 76 18 48 83 e0 fc 48 89 c2 <0f> b6 42 14 48 39 74 c2 48 0f 94 c0 0f b6 c0 c3 90 48 c1 e8 02 48
What does the crash logs signify and how can we rectify this problem?

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 133 times

Re: Files menu crashes during search for documents

#4 Post by Head_on_a_Stick »

4joeyirosh1 wrote:

Code: Select all

Oct 20 18:21:10 <<hostname>> kernel: nautilus[4532]: segfault at 5600657a6984 ip 00007f07be8b055f sp 00007ffdb28824c8 error 4 in libgobject-2.0.so.0.5800.3[7f07be886000+32000]
That library is found in the libglib2.0-0 package, where is that from?

Code: Select all

apt policy libglib2.0-0
Does re-installing it fix the problem?

If not, we can diagnose this further by analyzing the core dumps:

Code: Select all

# apt install systemd-coredump
The only caveat is that the libglib2.0-0 package is compiled without the debug symbols enabled so the -dbgsym version will have to be installed instead: https://wiki.debian.org/HowToGetABacktr ... ng_symbols

Once that version is in place, reproduce the crash and extract the core dump with coredumpctl(1).

Probably best to check the drive & memory health as well, just in case.
deadbang

4joeyirosh1
Posts: 157
Joined: 2016-09-11 18:04
Been thanked: 3 times

Re: Files menu crashes during search for documents

#5 Post by 4joeyirosh1 »

Head_on_a_Stick wrote:
4joeyirosh1 wrote:

Code: Select all

Oct 20 18:21:10 <<hostname>> kernel: nautilus[4532]: segfault at 5600657a6984 ip 00007f07be8b055f sp 00007ffdb28824c8 error 4 in libgobject-2.0.so.0.5800.3[7f07be886000+32000]
That library is found in the libglib2.0-0 package, where is that from?

Code: Select all

apt policy libglib2.0-0
Does re-installing it fix the problem?

If not, we can diagnose this further by analyzing the core dumps:

Code: Select all

# apt install systemd-coredump
The only caveat is that the libglib2.0-0 package is compiled without the debug symbols enabled so the -dbgsym version will have to be installed instead: https://wiki.debian.org/HowToGetABacktr ... ng_symbols

Once that version is in place, reproduce the crash and extract the core dump with coredumpctl(1).

Probably best to check the drive & memory health as well, just in case.
I tried reinstalling the by first removing libglib2.0-0 then installing it but it had so many dependencies that were to be removed also I got scared it my ruin the whole debian thus I aborted the remove operation,Dependent packages are as below

Code: Select all

# apt-get remove libglib2.0-0
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  acl ant ant-contrib ant-optional apache2-bin apg argyll argyll-ref
  audacious-plugins-data autopoint bogofilter bogofilter-bdb bogofilter-common
  breeze-icon-theme bubblewrap ca-certificates-mono catdoc cdparanoia cdrdao
  chromium-common chromium-sandbox cli-common coinor-libcbc3 coinor-libcgl1
  coinor-libclp1 coinor-libcoinmp1v5 coinor-libcoinutils3v5 coinor-libosi1v5
  colord-data compiz-core cracklib-runtime deluge-common diffstat dnsmasq-base
  docbook-xml docbook-xsl dvd+rw-tools dvdauthor dwz espeak-ng-data
  evince-common exfat-fuse exfat-utils fig2dev firebird3.0-common
  firebird3.0-common-doc firebird3.0-server-core firebird3.0-utils
  fonts-freefont-ttf fonts-lato fonts-noto-color-emoji fonts-noto-hinted
  fonts-opensymbol fonts-quicksand fonts-roboto-hinted fonts-roboto-unhinted
  freepats gconf2-common gdal-data gdebi-core gdisk gedit-plugins-common
  genisoimage gimp-data gir1.2-gdesktopenums-3.0 glib-networking-common
  gnome-accessibility-themes gnome-desktop3-data gnome-keyring-pkcs11
  gnome-mime-data gnome-session-common gnome-software-common
  gnome-terminal-data gnome-themes-extra-data growisofs haveged
  hicolor-icon-theme hoichess hplip-data hunspell-en-us hyphen-en-us
  i965-va-driver ibverbs-providers icoutils imagemagick-6-common
  intel-media-va-driver javascript-common jq k3b-data kate-data
  kde-runtime-data kdelibs5-data kdenlive-data kio-extras-data kodi-data
  kodi-repository-kodi kodi-visualization-spectrum kwayland-data liba52-0.7.4
  libaa1 libaacs0 libabw-0.1-1 libactivation-java libaec0 libamd2 libao-common
  libao4 libaom0 libaopalliance-java libapache-poi-java libapache-pom-java
  libapache2-mod-dnssd libapparmor-perl libapr1 libaprutil1
  libaprutil1-dbd-sqlite3 libaprutil1-ldap libarchive-cpio-perl libarchive13
  libargs4j-java libaribb24-0 libarmadillo9 libarpack2 libasm-java
  libasync-mergepoint-perl libatasmart4 libatinject-jsr330-api-java
  libatk-wrapper-java libatk1.0-data libaudio2 libavc1394-0 libavcodec57
  libavresample4 libavutil55 libavutil56 libbabl-0.1-0 libbase-java
  libbasicusageenvironment1 libbcmail-java libbcpkix-java libbcprov-java
  libbdplus0 libblas3 libbluetooth3 libbluray2 libboost-atomic1.67.0
  libboost-chrono1.67.0 libboost-date-time1.67.0 libboost-filesystem1.67.0
  libboost-iostreams1.67.0 libboost-locale1.67.0 libboost-system1.67.0
  libboost-thread1.67.0 libbrlapi0.6 libbrotli1 libbs2b0 libburn4 libcaca0
  libcaf-openmpi-3 libcairo-perl libcairomm-1.0-1v5 libcamd2 libcanberra0
  libcapi20-3 libcapture-tiny-perl libcaribou-common libccolamd2 libcddb2
  libcdi-api-java libcdio-cdda2 libcdio-paranoia2 libcdio18 libcdparanoia0
  libcdr-0.1-1 libcec4 libcglib-java libcharls2 libcholmod3
  libclass-accessor-perl libclone-perl libclucene-contribs1v5
  libclucene-core1v5 libclutter-1.0-common libcmis-0.5-5v5
  libcoarrays-openmpi-dev libcodec2-0.8.1 libcodemodel-java libcogl-common
  libcolamd2 libcommons-cli-java libcommons-codec-java
  libcommons-collections3-java libcommons-collections4-java
  libcommons-compress-java libcommons-io-java libcommons-lang3-java
  libcommons-logging-java libcommons-math3-java libcommons-parent-java
  libcompizconfig0 libcrack2 libcrossguid0 libcrystalhd3 libcue2
  libcurvesapi-java libdap25 libdapclient6v5 libdapserver7v5 libdatrie1
  libdbus2.0-cil libdc1394-22 libdca0 libde265-0 libdecoration0
  libdirectfb-1.7-7 libdjvulibre-text libdjvulibre21 libdlrestrictions1
  libdom4j-java libdotconf0 libdouble-conversion1 libdtd-parser-java libdv4
  libdvbpsi10 libdvbv5-0 libdvdnav4 libdvdread4 libdw1 libe-book-0.1-1
  libebml4v5 libebur128-1 libehcache-java libel-api-java libemail-valid-perl
  libenca0 libeot0 libepsilon1 libept1.5.0 libepub0 libepubgen-0.1-1
  libespeak-ng1 libetonyek-0.1-1 libevdev2 libevent-core-2.1-6
  libevent-pthreads-2.1-6 libexempi8 libexif12 libexiv2-14 libexttextcat-2.0-0
  libfaad2 libfabric1 libfam0 libfastinfoset-java libfbclient2
  libfftw3-double3 libfile-basedir-perl libfile-desktopentry-perl
  libfile-stripnondeterminism-perl libflac++6v5 libflite1 libflute-java
  libfm-data libfm-gtk-data libfonts-java libformula-java libfreehand-0.1-1
  libfreexl1 libfuture-perl libfyba0 libgavl1 libgd3 libgdal20 libgdata-common
  libgdata2.1-cil libgdcm2.8 libgdk-pixbuf2.0-common libgegl-common
  libgeos-3.7.1 libgeos-c1v5 libgeotiff2 libgeronimo-annotation-1.3-spec-java
  libgeronimo-interceptor-3.0-spec-java libgettextpo0 libgit2-27 libgl2ps1.4
  libgles2 libglib2.0-data libgme0 libgnome-games-support-common
  libgnome-keyring-common libgnome-todo libgnomecanvas2-common libgpac4
  libgpgme++2v5 libgpgme11 libgpgmepp6 libgphoto2-6 libgphoto2-l10n
  libgphoto2-port12 libgraphicsmagick-q16-3 libgraphite2-3 libgroupsock8
  libgsf-1-common libgsl23 libgslcblas0 libgspell-1-common libgtk2.0-common
  libgtksourceview-3.0-common libgtop2-common libguava-java libguice-java
  libhavege1 libhawtjni-runtime-java libhdf4-0-alt libhdf5-103
  libhdf5-openmpi-103 libheif1 libhfstospell10 libhsqldb1.8.0-java
  libhttp-parser2.8 libhttpclient-java libhttpcore-java libhunspell-1.7-0
  libhwloc-dev libhwloc-plugins libhwloc5 libhyphen0 libib-util libibverbs-dev
  libibverbs1 libicu4j-java libicu57 libiec61883-0 libieee1284-3 libigdgmm5
  libilmbase23 libimagequant0 libimobiledevice6 libintellij-annotations-java
  libio-async-perl libio-pty-perl libio-string-perl libipc-run-perl
  libipc-system-simple-perl libiptcdata0 libiso9660-11 libisofs6
  libisorelax-java libistack-commons-java libitext-java libixml10
  libjansi-java libjansi-native-java libjaxb-api-java libjaxb-java
  libjaxen-java libjcommon-java libjdom1-java libjetbrains-annotations-java
  libjpeg-turbo-progs libjq1 libjs-iscroll libjs-jquery
  libjson-glib-1.0-common libjson-perl libjsoncpp1 libjsoup-java
  libjsp-api-java libjsr305-java libjte1 libjxr-tools libjxr0 libkarma0
  libkate1 libkf5auth-data libkf5bookmarks-data libkf5codecs-data
  libkf5completion-data libkf5config-data libkf5configwidgets-data
  libkf5coreaddons-data libkf5dbusaddons-data libkf5declarative-data
  libkf5dnssd-data libkf5filemetadata-data libkf5globalaccel-data
  libkf5i18n-data libkf5iconthemes-data libkf5itemviews-data
  libkf5jobwidgets-data libkf5js5 libkf5kcmutils-data
  libkf5kdelibs4support-data libkf5khtml-data libkf5mediaplayer-data
  libkf5newstuff-data libkf5notifications-data libkf5notifyconfig-data
  libkf5package-data libkf5parts-data libkf5pty-data libkf5service-data
  libkf5solid5-data libkf5sonnet5-data libkf5textwidgets-data
  libkf5wallet-data libkf5widgetsaddons-data libkf5windowsystem-data
  libkf5xmlgui-data libkf5xmlrpcclient-data libkmlbase1 libkmlconvenience1
  libkmldom1 libkmlengine1 libkmlregionator1 libkmlxsd1 libkpathsea6
  liblapack3 liblayout-java libldb1 liblept5 liblilv-0-0 liblirc-client0
  liblivemedia64 libloader-java liblog4j1.2-java liblua5.2-0 liblua5.3-0
  libmail-java libmail-sendmail-perl libmatroska6v5
  libmaven-file-management-java libmaven-parent-java libmaven-resolver-java
  libmaven-shared-io-java libmaven-shared-utils-java libmaven3-core-java
  libmbedcrypto3 libmbedtls12 libmbedx509-0 libmetis5 libmhash2 libmicrodns0
  libmicrohttpd12 libmikmod3 libminiupnpc17 libminizip1 libmjpegutils-2.1-0
  libmlt-data libmms0 libmng1 libmodplug1 libmono-addins0.2-cil
  libmono-btls-interface4.0-cil libmono-cairo4.0-cil libmono-corlib4.5-cil
  libmono-i18n-west4.0-cil libmono-i18n4.0-cil libmono-posix4.0-cil
  libmono-security4.0-cil libmono-sharpzip4.84-cil
  libmono-system-configuration4.0-cil libmono-system-core4.0-cil
  libmono-system-data4.0-cil libmono-system-enterpriseservices4.0-cil
  libmono-system-numerics4.0-cil libmono-system-runtime-serialization4.0-cil
  libmono-system-security4.0-cil libmono-system-servicemodel-internals0.0-cil
  libmono-system-transactions4.0-cil libmono-system-xml-linq4.0-cil
  libmono-system-xml4.0-cil libmono-system4.0-cil libmono-zeroconf1.0-cil
  libmovit8 libmozjs-60-0 libmozjs185-1.0 libmpcdec6 libmpeg2-4
  libmpeg2encpp-2.1-0 libmpg123-0 libmplex2-2.1-0 libmspub-0.1-1 libmsv-java
  libmtdev1 libmtp-common libmtp-runtime libmtp9 libmusicbrainz5-2
  libmusicbrainz5cc2v5 libmwaw-0.3-3 libmypaint-common libmysofa0
  libmythes-1.2-0 libnatpmp1 libndp0 libneon27-gnutls libnet-domain-tld-perl
  libnetcdf-c++4 libnetcdf13 libnetpbm10 libnewtonsoft-json5.0-cil libnfs12
  libnl-3-dev libnl-route-3-dev libnorm1 libnss-myhostname libntfs-3g883
  libntrack0 libnuma-dev libnumbertext-1.0-0 liboauth0 libodbc1
  libodfgen-0.1-1 libofa0 libogdi3.2 libonig5 libopenal-data libopenal1
  libopencv-core3.2 libopencv-flann3.2 libopencv-imgcodecs3.2
  libopencv-imgproc3.2 libopencv-ml3.2 libopencv-photo3.2 libopencv-shape3.2
  libopencv-video3.2 libopenexr23 libopenmpi-dev libopenmpi3
  libopenmpt-modplug1 libopenmpt0 liborc-0.4-0 liborcus-0.14-0 libosmesa6
  libp8-platform2 libpagemaker-0.0-0 libparse-debianchangelog-perl
  libparted-fs-resize0 libpath-tiny-perl libpcaudio0 libpcre2-16-0
  libpeas-common libpentaho-reporting-flow-engine-java libperl4-corelibs-perl
  libperlio-gzip-perl libpgm-5.2-0 libphodav-2.0-common libphonenumber7
  libpipewire-0.2-1 libpixie-java libplacebo7 libplexus-archiver-java
  libplexus-cipher-java libplexus-classworlds-java
  libplexus-component-annotations-java libplexus-interpolation-java
  libplexus-io-java libplexus-sec-dispatcher-java libplexus-utils2-java
  libplist3 libplymouth4 libpmix2 libportmidi0 libpostproc55 libpotrace0
  libpq5 libproj13 libprotobuf-lite17 libprotobuf17 libproxy-tools
  libpsm-infinipath1 libpsm2-2 libpst4 libpulsedsp libpwquality-common
  libpwquality1 libpython3.7 libqhull7 libqqwing2v5 libqt5webengine-data
  libquvi-scripts-0.9 libqxp-0.0-0 libraptor2-0 librasqal3 libraw1394-11
  libraw19 librdf0 librdmacm1 libre2-5 librelaxng-datatype-java
  libreoffice-help-common libreofficekit-data librepository-java
  libresid-builder0c2a librevenge-0.0-0 librngom-java librtaudio6
  librubberband2 libruby2.5 libsac-java libsane libsane-common libsane-hpaio
  libsaxonhe-java libsbc1 libsdl-image1.2 libsdl-ttf2.0-0 libsdl1.2debian
  libsdl2-2.0-0 libsecret-common libserd-0-0 libsereal-decoder-perl
  libsereal-encoder-perl libsereal-perl libserializer-java libservlet-api-java
  libservlet3.1-java libsgutils2-2 libshine3 libshout3 libsidplay1v5
  libsidplay2 libsidplayfp4 libsigc++-2.0-0v5 libsisu-guice-java
  libsisu-inject-java libsisu-ioc-java libsisu-plexus-java libslf4j-java
  libsmbclient libsmbios-c2 libsnappy-java libsnappy-jni libsnappy1v5
  libsndio6.1 libsndio7.0 libsocket++1 libsodium23 libsord-0-0 libsoundtouch1
  libsoxr0 libspandsp2 libspatialaudio0 libspatialite7 libspectre1 libspeex1
  libspeexdsp1 libsratom-0-0 libsrtp2-1 libssh-4 libssh-gcrypt-4
  libstaroffice-0.0-0 libstartup-notification0 libstax-ex-java libstemmer0d
  libstreambuffer-java libstruct-dumb-perl libsuitesparseconfig5 libsuperlu5
  libswresample2 libswresample3 libswscale5 libsynctex2
  libsys-hostname-long-perl libsz2 libtag1v5 libtag1v5-vanilla libtagc0
  libtaglib2.1-cil libtalloc2 libtbb2 libtdb1 libteamdctl0 libtesseract4
  libtest-fatal-perl libtest-refcount-perl libtevent0 libtext-csv-perl
  libtext-csv-xs-perl libtext-levenshtein-perl libthai-data libthai0
  libtheora0 libtinyxml2-6a libtinyxml2.6.2v5 libtommath1
  libtotem-plparser-common libtss2-esys0 libtss2-udev libturbojpeg0
  libtxw2-java libu2f-udev libumfpack5 libunicode-utf8-perl libupnp13
  liburiparser1 libusageenvironment3 libusbmuxd4 libusbredirhost1
  libusbredirparser1 libv4l-0 libv4lconvert0 libva-drm1 libva-drm2 libva-glx2
  libva-wayland2 libva-x11-1 libva-x11-2 libva1 libva2 libvcdinfo0
  libvdpau-va-gl1 libvdpau1 libvidstab1.1 libvisio-0.1-1 libvisual-0.4-0
  libvkd3d1 libvlc-bin libvlc5 libvlccore9 libvo-aacenc0 libvo-amrwbenc0
  libvoikko1 libvorbisidec1 libvpx4 libvpx5 libvte-2.91-common libvulkan1
  libwacom-common libwagon-http-java libwagon-provider-api-java
  libwayland-cursor0 libwayland-egl1 libwbclient0 libwebpdemux2 libwebpmux2
  libwebpmux3 libwebrtc-audio-processing1 libwebsocket-api-java
  libwildmidi-config libwildmidi2 libwinpr2-2 libwmf-bin libwmf0.2-7
  libwnck-3-common libwnck-common libwoff1 libwpd-0.10-10 libwpg-0.3-3
  libwps-0.4-4 libwutil5 libwxbase3.0-0v5 libx264-148 libx264-155 libx265-95
  libxcb-res0 libxcb-xinerama0 libxerces-c3.2 libxerces2-java libxine2
  libxine2-bin libxine2-doc libxine2-misc-plugins libxkbcommon-x11-0
  libxkbcommon0 libxml-commons-external-java libxml-commons-resolver1.1-java
  libxml-java libxml-namespacesupport-perl libxml-sax-base-perl
  libxml-sax-expat-perl libxml-sax-perl libxml-simple-perl libxml2-utils
  libxmlbeans-java libxmlsec1 libxmlsec1-nss libxom-java libxpp2-java
  libxpp3-java libxres1 libxslt1.1 libxsom-java libxvidcore4 libxz-java
  libyajl2 libyaml-libyaml-perl libytnef0 libzbar0 libzen0v5 libzip4
  libzmf-0.0-0 libzmq5 libzvbi-common libzvbi0 lp-solve lua-bitop lua-expat
  lua-json lua-lpeg lua-socket lxde-common lxlock lxmenu-data lxpanel-data
  lxsession-data media-player-info menu mesa-va-drivers mesa-vdpau-drivers
  minissdpd mobile-broadband-provider-info mono-4.0-gac mono-gac mono-runtime
  mono-runtime-common mono-runtime-sgen mythes-en-us netpbm node-normalize.css
  ntfs-3g ntrack-module-libnl-0 ocl-icd-libopencl1 odbcinst odbcinst1debian2
  openmpi-bin openmpi-common osinfo-db oxygen-icon-theme p11-kit
  p11-kit-modules patchutils phonon-backend-gstreamer-common plymouth proj-bin
  proj-data pulseaudio-utils python-asn1crypto python-attr python-automat
  python-backports.functools-lru-cache python-bs4 python-cairo
  python-cffi-backend python-chardet python-click python-colorama
  python-constantly python-cryptography python-enum34 python-html5lib
  python-hyperlink python-idna python-incremental python-ipaddress python-lxml
  python-numpy python-olefile python-openssl python-pil python-pkg-resources
  python-pyasn1 python-pyasn1-modules python-scour python-serial
  python-service-identity python-setuptools python-six python-soupsieve
  python-talloc python-twisted-bin python-twisted-core python-webencodings
  python-wxversion python-xdg python-zope.interface python3-brlapi
  python3-cairo python3-cups python3-distro python3-distro-info python3-louis
  python3-mako python3-markupsafe python3-olefile python3-pexpect python3-pil
  python3-ptyprocess python3-pyxattr python3-renderpm python3-reportlab
  python3-reportlab-accel python3-scour python3-smbc
  python3-software-properties python3-speechd python3-xdg qtchooser
  qtcore4-l10n qttranslations5-l10n rake recordmydesktop rtmpdump ruby
  ruby-did-you-mean ruby-minitest ruby-net-telnet ruby-power-assert
  ruby-test-unit ruby-xmlrpc ruby2.5 rubygems-integration samba-libs
  sane-utils scour sgml-base sgml-data sound-icons swh-plugins t1utils
  tpm2-tools transfig transmission-common usbmuxd va-driver-all vcdimager
  vdpau-driver-all vlc-bin vlc-data vlc-l10n vlc-plugin-samba
  vlc-plugin-video-splitter vlc-plugin-visualization wmaker-common wodim
  xbrlapi xdg-user-dirs xml-core xwayland yelp-xsl youtube-dl zenity-common
Use 'apt autoremove' to remove them.
The following packages will be REMOVED:
  accountsservice adwaita-icon-theme aisleriot albatross-gtk-theme
  apparmor-notify appstream apt-config-icons at-spi2-core audacious
  audacious-plugins baloo-kf5 banshee baobab blackbird-gtk-theme
  bluebird-gtk-theme bluetooth bluez bluez-obexd bolt brasero brasero-cdrkit
  brasero-common caribou cheese cheese-common chrome-gnome-shell chromium
  clamtk clamtk-gnome clamtk-nautilus colord compiz-plugins
  compiz-plugins-main compizconfig-settings-manager cups-browsed
  cups-pk-helper dconf-cli dconf-gsettings-backend dconf-service debhelper
  deluge-gtk desktop-base desktop-file-utils dh-autoreconf
  dh-strip-nondeterminism dleyna-server dolphin drkonqi dvgrab enchant eog
  evince evolution evolution-common evolution-data-server
  evolution-data-server-common evolution-plugin-bogofilter
  evolution-plugin-pstimport evolution-plugins ffmpeg file-roller firefox-esr
  five-or-more flashplugin-nonfree folks-common four-in-a-row frei0r-plugins
  fuseiso fwupd fwupd-amd64-signed gconf-service gconf2 gcr gdebi gdm3 gedit
  gedit-common gedit-plugin-bookmarks gedit-plugin-bracket-completion
  gedit-plugin-character-map gedit-plugin-code-comment
  gedit-plugin-color-picker gedit-plugin-color-schemer gedit-plugin-commander
  gedit-plugin-draw-spaces gedit-plugin-find-in-files gedit-plugin-git
  gedit-plugin-join-lines gedit-plugin-multi-edit gedit-plugin-smart-spaces
  gedit-plugin-synctex gedit-plugin-terminal gedit-plugin-translate
  gedit-plugin-word-completion gedit-plugin-zeitgeist gedit-plugins
  geoclue-2.0 gettext gimp gir1.2-accountsservice-1.0 gir1.2-atk-1.0
  gir1.2-atspi-2.0 gir1.2-caribou-1.0 gir1.2-champlain-0.12 gir1.2-clutter-1.0
  gir1.2-clutter-gst-3.0 gir1.2-cogl-1.0 gir1.2-coglpango-1.0
  gir1.2-dazzle-1.0 gir1.2-evince-3.0 gir1.2-freedesktop gir1.2-gck-1
  gir1.2-gcr-3 gir1.2-gdata-0.0 gir1.2-gdkpixbuf-2.0 gir1.2-gdm-1.0
  gir1.2-geoclue-2.0 gir1.2-geocodeglib-1.0 gir1.2-gfbgraph-0.2
  gir1.2-ggit-1.0 gir1.2-glib-2.0 gir1.2-gmenu-3.0 gir1.2-gnomebluetooth-1.0
  gir1.2-gnomedesktop-3.0 gir1.2-goa-1.0 gir1.2-grilo-0.3 gir1.2-gspell-1
  gir1.2-gst-plugins-base-1.0 gir1.2-gstreamer-1.0 gir1.2-gtk-3.0
  gir1.2-gtkchamplain-0.12 gir1.2-gtkclutter-1.0 gir1.2-gtksource-3.0
  gir1.2-gucharmap-2.90 gir1.2-gweather-3.0 gir1.2-ibus-1.0
  gir1.2-javascriptcoregtk-4.0 gir1.2-json-1.0 gir1.2-lokdocview-0.1
  gir1.2-mediaart-2.0 gir1.2-mutter-3 gir1.2-nautilus-3.0 gir1.2-nm-1.0
  gir1.2-nma-1.0 gir1.2-notify-0.7 gir1.2-packagekitglib-1.0 gir1.2-pango-1.0
  gir1.2-peas-1.0 gir1.2-polkit-1.0 gir1.2-rb-3.0 gir1.2-rest-0.7
  gir1.2-rsvg-2.0 gir1.2-secret-1 gir1.2-soup-2.4 gir1.2-telepathyglib-0.12
  gir1.2-telepathylogger-0.2 gir1.2-totem-1.0 gir1.2-totemplparser-1.0
  gir1.2-tracker-2.0 gir1.2-upowerglib-1.0 gir1.2-vte-2.91 gir1.2-webkit2-4.0
  gir1.2-wnck-3.0 gir1.2-zpj-0.0 gjs gkbd-capplet gksu glib-networking
  glib-networking-services gmail-notify gnome gnome-bluetooth gnome-calculator
  gnome-calendar gnome-characters gnome-chess gnome-clocks gnome-color-manager
  gnome-colors-common gnome-contacts gnome-control-center
  gnome-control-center-data gnome-core gnome-disk-utility gnome-documents
  gnome-font-viewer gnome-games gnome-getting-started-docs gnome-icon-theme
  gnome-keyring gnome-klotski gnome-logs gnome-mahjongg gnome-maps gnome-mines
  gnome-music gnome-nibbles gnome-online-accounts gnome-online-miners
  gnome-orca gnome-robots gnome-screenshot gnome-session gnome-session-bin
  gnome-settings-daemon gnome-settings-daemon-common gnome-shell
  gnome-shell-common gnome-shell-extensions gnome-software
  gnome-sound-recorder gnome-sudoku gnome-sushi gnome-system-monitor
  gnome-taquin gnome-terminal gnome-tetravex gnome-themes-extra gnome-todo
  gnome-todo-common gnome-tweaks gnome-user-docs gnome-user-share
  gnome-video-effects gnome-weather gnome-wine-icon-theme google-chrome-stable
  google-earth-pro-stable gparted greybird-gtk-theme grilo-plugins-0.3
  gsettings-desktop-schemas gstreamer1.0-clutter-3.0 gstreamer1.0-gl
  gstreamer1.0-gtk3 gstreamer1.0-libav gstreamer1.0-packagekit
  gstreamer1.0-plugins-bad gstreamer1.0-plugins-base gstreamer1.0-plugins-good
  gstreamer1.0-plugins-ugly gstreamer1.0-pulseaudio gstreamer1.0-x
  gtk-update-icon-cache gtk2-engines-murrine gtk2-engines-pixbuf gvfs
  gvfs-backends gvfs-common gvfs-daemons gvfs-fuse gvfs-libs gxine gxineplugin
  hitori hplip iagno iio-sensor-proxy imagemagick imagemagick-6.q16 inkscape
  intltool-debian k3b kactivities-bin kactivitymanagerd kaffeine katepart
  kde-runtime kded5 kdelibs-bin kdelibs5-plugins kdenlive kdoctools
  keditbookmarks kfind kimageformat-plugins kinit kio kio-extras kmplayer kodi
  kodi-bin konqueror konqueror-nsplugins kpackagelauncherqml kpackagetool5
  kwayland-integration libaccountsservice0 libappindicator3-1
  libappstream-glib8 libappstream4 libasound2-plugins libass9 libatk-adaptor
  libatk-bridge2.0-0 libatk-wrapper-java-jni libatk1.0-0 libatkmm-1.6-1v5
  libatspi2.0-0 libattica0.4 libaudcore5 libaudgui5 libaudtag3 libavahi-glib1
  libavahi-gobject0 libavahi-ui-gtk3-0 libavcodec58 libavdevice58 libavfilter7
  libavformat58 libayatana-appindicator3-1 libayatana-ido3-0.4-0
  libayatana-indicator3-7 libblockdev-crypto2 libblockdev-fs2
  libblockdev-loop2 libblockdev-part-err2 libblockdev-part2 libblockdev-swap2
  libblockdev-utils2 libblockdev2 libbonobo2-0 libbonoboui2-0
  libbrasero-media3-1 libcacard0 libcairo-gobject-perl libcairo-gobject2
  libcamel-1.2-62 libcanberra-gtk3-0 libcanberra-gtk3-module libcanberra-pulse
  libcaribou0 libchamplain-0.12-0 libchamplain-gtk-0.12-0 libcheese-gtk25
  libcheese8 libchromaprint1 libclutter-1.0-0 libclutter-gst-3.0-0
  libclutter-gtk-1.0-0 libcogl-pango20 libcogl-path20 libcogl20 libcolord-gtk1
  libcolord2 libcolorhug2 libcroco3 libdazzle-1.0-0 libdbus-glib-1-2
  libdbus-glib2.0-cil libdbusmenu-glib4 libdbusmenu-gtk3-4 libdbusmenu-qt2
  libdbusmenu-qt5-2 libdconf1 libdee-1.0-4 libdleyna-connector-dbus-1.0-1
  libdleyna-core-1.0-3 libdmapsharing-3.0-2 libdolphinvcs5 libdvd-pkg
  libdvdcss-dev libdvdcss2 libdvdcss2-dbgsym libebackend-1.2-10
  libebook-1.2-19 libebook-contacts-1.2-2 libecal-1.2-19 libedata-book-1.2-25
  libedata-cal-1.2-29 libedataserver-1.2-23 libedataserverui-1.2-2
  libenchant1c2a libevdocument3-4 libevolution libevview3-3 libffms2-4
  libfile-mimeinfo-perl libfluidsynth1 libfm-extra4 libfm-gtk4 libfm-modules
  libfm4 libfolks-eds25 libfolks25 libfreerdp2-2 libfwupd2 libgail-3-0
  libgail-common libgail18 libgcab-1.0-0 libgck-1-0 libgconf-2-4
  libgconf2.0-cil libgcr-base-3-1 libgcr-ui-3-1 libgdata22 libgdiplus
  libgdk-pixbuf2.0-0 libgdk-pixbuf2.0-bin libgdm1 libgee-0.8-2 libgegl-0.4-0
  libgeoclue-2-0 libgeocode-glib0 libgexiv2-2 libgfbgraph-0.2-0 libgimp2.0
  libgirepository-1.0-1 libgit2-glib-1.0-0 libgjs0g libgkeyfile1.0-cil
  libgksu2-0 libglade2-0 libglib-object-introspection-perl libglib-perl
  libglib2.0-0 libglib2.0-bin libglib2.0-cil libglibmm-2.4-1v5 libgnome-2-0
  libgnome-autoar-0-0 libgnome-autoar-gtk-0-0 libgnome-bluetooth13
  libgnome-desktop-3-17 libgnome-games-support-1-3 libgnome-keyring0
  libgnome-menu-3-0 libgnome2-common libgnomecanvas2-0 libgnomekbd-common
  libgnomekbd8 libgnomevfs2-0 libgnomevfs2-common libgnomevfs2-extra
  libgoa-1.0-0b libgoa-1.0-common libgoa-backend-1.0-1 libgom-1.0-0
  libgpod-common libgpod4 libgraphene-1.0-0 libgrilo-0.3-0 libgsf-1-114
  libgsf-bin libgsound0 libgspell-1-1 libgssdp-1.0-3 libgstreamer-gl1.0-0
  libgstreamer-plugins-bad1.0-0 libgstreamer-plugins-base1.0-0
  libgstreamer1.0-0 libgtk-3-0 libgtk-3-bin libgtk-3-common
  libgtk-sharp-beans-cil libgtk-vnc-2.0-0 libgtk2-perl libgtk2.0-0
  libgtk2.0-bin libgtk2.0-cil libgtk3-perl libgtkmm-2.4-1v5 libgtkmm-3.0-1v5
  libgtksourceview-3.0-1 libgtkspell0 libgtkspell3-3-0 libgtop-2.0-10
  libgtop-2.0-11 libgucharmap-2-90-7 libgudev-1.0-0 libgudev1.0-cil
  libgupnp-1.0-4 libgupnp-av-1.0-2 libgupnp-dlna-2.0-3 libgupnp-igd-1.0-4
  libgusb2 libgvnc-1.0-0 libgweather-3-15 libgweather-common libgxps2
  libharfbuzz-icu0 libharfbuzz0b libibus-1.0-5 libical3 libimage-magick-perl
  libimage-magick-q16-perl libindicator3-7 libinput-bin libinput10
  libjavascriptcoregtk-1.0-0 libjavascriptcoregtk-4.0-18 libjson-glib-1.0-0
  libk3b7 libk3b7-extracodecs libkactivities6 libkatepartinterfaces4
  libkcmutils4 libkde3support4 libkdeclarative5 libkdecore5 libkdesu5
  libkdeui5 libkdewebkit5 libkdnssd4 libkemoticons4 libkeybinder0
  libkf5activities5 libkf5archive5 libkf5attica5 libkf5auth5 libkf5baloo5
  libkf5balooengine5 libkf5baloowidgets-bin libkf5baloowidgets5
  libkf5bookmarks5 libkf5cddb5 libkf5codecs5 libkf5completion5
  libkf5config-bin libkf5configcore5 libkf5configgui5 libkf5configwidgets5
  libkf5coreaddons5 libkf5crash5 libkf5dbusaddons-bin libkf5dbusaddons5
  libkf5declarative5 libkf5dnssd5 libkf5doctools5 libkf5filemetadata-bin
  libkf5filemetadata3 libkf5globalaccel-bin libkf5globalaccel5
  libkf5globalaccelprivate5 libkf5guiaddons5 libkf5i18n5 libkf5iconthemes-bin
  libkf5iconthemes5 libkf5idletime5 libkf5itemviews5 libkf5jobwidgets5
  libkf5kcmutils5 libkf5kdelibs4support5 libkf5kdelibs4support5-bin
  libkf5khtml-bin libkf5khtml5 libkf5kiocore5 libkf5kiofilewidgets5
  libkf5kiogui5 libkf5kiontlm5 libkf5kiowidgets5 libkf5kirigami2-5 libkf5konq6
  libkf5mediaplayer5 libkf5newstuff5 libkf5newstuffcore5 libkf5notifications5
  libkf5notifyconfig5 libkf5package5 libkf5parts-plugins libkf5parts5
  libkf5pty5 libkf5quickaddons5 libkf5service-bin libkf5service5 libkf5solid5
  libkf5sonnetcore5 libkf5sonnetui5 libkf5textwidgets5 libkf5wallet-bin
  libkf5wallet5 libkf5waylandclient5 libkf5waylandserver5 libkf5widgetsaddons5
  libkf5windowsystem5 libkf5xmlgui-bin libkf5xmlgui5 libkf5xmlrpcclient5
  libkfile4 libkhtml5 libkio5 libkjsapi4 libkjsembed4 libkmediaplayer4
  libknewstuff3-4 libknotifyconfig4 libkntlm4 libkparts4 libkpmcore7 libkpty4
  libkrosscore4 libktexteditor4 libkwalletbackend5-5 libkwineffects9
  libkwinxrenderutils9 liblibreofficekitgtk liblightdm-gobject-1-0 liblqr-1-0
  libmagick++-6.q16-8 libmagickcore-6.q16-6 libmagickcore-6.q16-6-extra
  libmagickwand-6.q16-6 libmbim-glib4 libmbim-proxy libmediaart-2.0-0
  libmediainfo0v5 libmenu-cache-bin libmenu-cache3 libmetacity1
  libmission-control-plugins0 libmlt++3 libmlt6 libmm-glib0
  libmono-system-drawing4.0-cil libmutter-3-0 libmypaint-1.3-0
  libnautilus-extension1a libnice10 libnm0 libnma0 libnotify-bin
  libnotify0.4-cil libnotify4 libntrack-qt4-1 libobrender32v5 libobt2v5
  libopencv-calib3d3.2 libopencv-contrib3.2 libopencv-features2d3.2
  libopencv-highgui3.2 libopencv-objdetect3.2 libopencv-stitching3.2
  libopencv-superres3.2 libopencv-videoio3.2 libopencv-videostab3.2
  libopencv-viz3.2 liborbit-2-0 libosinfo-1.0-0 libpackagekit-glib2-18
  libpango-1.0-0 libpango-perl libpango1.0-0 libpangocairo-1.0-0
  libpangoft2-1.0-0 libpangomm-1.4-1v5 libpangox-1.0-0 libpangoxft-1.0-0
  libpeas-1.0-0 libphodav-2.0-0 libphonon4 libphonon4qt5-4 libplasma3
  libpolkit-agent-1-0 libpolkit-backend-1-0 libpolkit-gobject-1-0
  libpolkit-qt-1-1 libpolkit-qt5-1-1 libpoppler-glib8 libpoppler-qt5-1
  libproxy1-plugin-gsettings libproxy1-plugin-webkit libpulse-mainloop-glib0
  libqca2 libqca2-plugins libqmi-glib5 libqmi-proxy libqt4-dbus
  libqt4-declarative libqt4-designer libqt4-network libqt4-opengl
  libqt4-qt3support libqt4-script libqt4-sql libqt4-sql-mysql libqt4-svg
  libqt4-xml libqt4-xmlpatterns libqt5concurrent5 libqt5core5a libqt5dbus5
  libqt5gui5 libqt5network5 libqt5positioning5 libqt5printsupport5 libqt5qml5
  libqt5quick5 libqt5quickcontrols2-5 libqt5quicktemplates2-5
  libqt5quickwidgets5 libqt5script5 libqt5sensors5 libqt5sql5
  libqt5sql5-sqlite libqt5svg5 libqt5test5 libqt5texttospeech5
  libqt5waylandclient5 libqt5waylandcompositor5 libqt5webchannel5
  libqt5webenginecore5 libqt5webenginewidgets5 libqt5webkit5 libqt5widgets5
  libqt5x11extras5 libqt5xml5 libqtcore4 libqtdbus4 libqtgui4 libqtwebkit4
  libquicktime2 libquvi-0.9-0.9.3 libreoffice-avmedia-backend-gstreamer
  libreoffice-base libreoffice-base-core libreoffice-base-drivers
  libreoffice-calc libreoffice-core libreoffice-draw libreoffice-evolution
  libreoffice-gnome libreoffice-gtk3 libreoffice-help-en-us
  libreoffice-impress libreoffice-math libreoffice-report-builder
  libreoffice-report-builder-bin libreoffice-sdbc-firebird
  libreoffice-sdbc-hsqldb libreoffice-sdbc-postgresql libreoffice-writer
  librest-0.7-0 librhythmbox-core10 librsvg2-2 librsvg2-common
  librygel-core-2.6-2 librygel-db-2.6-2 librygel-renderer-2.6-2
  librygel-renderer-gst-2.6-2 librygel-server-2.6-2 libsdl-mixer1.2
  libsecret-1-0 libsolid4 libsoup-gnome2.4-1 libsoup2.4-1 libspeechd2
  libspice-client-glib-2.0-8 libspice-client-gtk-3.0-5 libtelepathy-glib0
  libtelepathy-logger3 libthreadweaver4 libtotem-plparser18 libtotem0
  libtracker-control-2.0-0 libtracker-miner-2.0-0 libtracker-sparql-2.0-0
  libudisks2-0 libunique-1.0-0 libupower-glib3 libvolume-key1 libvte-2.91-0
  libvtk6.3 libwacom-bin libwacom2 libwebkit2gtk-4.0-37 libwebkitgtk-1.0-0
  libwine libwine-dev libwine-development libwine-development-dev libwings3
  libwnck-3-0 libwnck22 libwraster6 libwxgtk3.0-gtk3-0v5 libxine2-ffmpeg
  libxine2-gnome libxine2-plugins libxine2-x libxklavier16 libxmlb1 libyelp0
  libzapojit-0.0-0 libzeitgeist-2.0-0 lightdm lightdm-gtk-greeter lightsoff
  lintian lxde-core lxdm lxpanel lxrandr lxsession lxsession-default-apps
  lxsession-logout lxtask mediainfo melt metacity metacity-common modemmanager
  mousetweaks mplayer mpv murrine-themes mutter mutter-common nautilus
  nautilus-data nautilus-extension-brasero nautilus-extension-gnome-terminal
  nautilus-sendto network-manager network-manager-gnome notification-daemon
  ntfs-config obconf obsession openbox openbox-lxde-session openjdk-8-jre
  opera-stable orca packagekit packagekit-tools partitionmanager pavucontrol
  pcmanfm phantomjs phonon phonon-backend-gstreamer phonon4qt5
  phonon4qt5-backend-vlc pinentry-gnome3 plasma-scriptengine-javascript
  playonlinux plymouth-label po-debconf polari policykit-1 pulseaudio
  pulseaudio-module-bluetooth python-compizconfig python-gi python-gi-cairo
  python-glade2 python-gobject-2 python-gtk2 python-nautilus python-notify
  python-pygame python-wxgtk3.0 python3-cupshelpers python3-dbus python3-gi
  python3-gi-cairo python3-gst-1.0 python3-pyatspi python3-uno q4wine qdbus
  qml-module-org-kde-kirigami2 qml-module-org-kde-newstuff
  qml-module-qtgraphicaleffects qml-module-qtqml-models2
  qml-module-qtquick-controls qml-module-qtquick-controls2
  qml-module-qtquick-layouts qml-module-qtquick-templates2
  qml-module-qtquick-window2 qml-module-qtquick2 qt-at-spi
  qt5-gtk-platformtheme qtwayland5 quadrapassel realmd rhythmbox
  rhythmbox-data rhythmbox-plugin-cdrecorder rhythmbox-plugins rtkit rygel
  rygel-playbin rygel-tracker sddm sddm-theme-debian-maui seahorse
  shared-mime-info shiki-colors-metacity-theme shiki-wine-theme shotwell
  shotwell-common simple-scan skypeforlinux smplayer smplayer-l10n
  smplayer-themes software-properties-common software-properties-gtk
  sonnet-plugins speech-dispatcher speech-dispatcher-audio-plugins
  speech-dispatcher-espeak-ng spice-client-glib-usb-acl-helper swell-foop
  switcheroo-control synaptic system-config-printer-common
  system-config-printer-udev tali task-desktop task-gnome-desktop
  telepathy-idle telepathy-logger telepathy-mission-control-5 totem
  totem-common totem-plugins tpm2-abrmd tracker tracker-extract
  tracker-miner-fs transmission-gtk udisks2 unattended-upgrades unoconv upower
  vinagre vino vlc vlc-plugin-base vlc-plugin-notify vlc-plugin-qt
  vlc-plugin-skins2 vlc-plugin-video-output wdm wine wine-binfmt
  wine-development wine64 wine64-development wine64-development-tools
  wine64-tools winetricks x264 xdg-user-dirs-gtk xine-ui xscreensaver
  xscreensaver-data xserver-xorg-input-all xserver-xorg-input-libinput yelp
  zeitgeist-core zenity
0 upgraded, 0 newly installed, 955 to remove and 0 not upgraded.
After this operation, 4,396 MB di  
Kindly advise if I should proceed with removing libglib2.0-0 risking removal and inconsistencies in the OS with so many removed packages that the Debian refuses to run normally.

I installed the systemd-coredump as you suggested,simulated the search crash and coredump output was as below when I ran

Code: Select all

 journalctl --follow

Code: Select all

Oct 21 23:26:31 joey-debian kernel: traps: nautilus[5879] general protection ip:7f3bf39f955f sp:7fff420fa578 error:0 in libgobject-2.0.so.0.5800.3[7f3bf39cf000+32000]
Oct 21 23:26:31 joey-debian systemd[1]: Created slice system-systemd\x2dcoredump.slice.
Oct 21 23:26:31 joey-debian systemd[1]: Started Process Core Dump (PID 6090/UID 0).
Oct 21 23:26:32 joey-debian systemd-coredump[6091]: Process 5879 (nautilus) of user 1000 dumped core.
                                                    
                                                    Stack trace of thread 5879:
                                                    #0  0x00007f3bf39f955f g_type_check_instance_is_fundamentally_a (libgobject-2.0.so.0)
                                                    #1  0x00007f3bf39d9c95 g_object_unref (libgobject-2.0.so.0)
                                                    #2  0x0000556d3de97c6a n/a (nautilus)
                                                    #3  0x00007f3bf39dcecb g_object_set_valist (libgobject-2.0.so.0)
                                                    #4  0x00007f3bf39dd79c g_object_set (libgobject-2.0.so.0)
                                                    #5  0x0000556d3de9bfa3 n/a (nautilus)
                                                    #6  0x0000556d3dee56e8 n/a (nautilus)
                                                    #7  0x00007f3bf39d4c8d g_closure_invoke (libgobject-2.0.so.0)
                                                    #8  0x00007f3bf39e7bbd n/a (libgobject-2.0.so.0)
                                                    #9  0x00007f3bf39f12be g_signal_emit_valist (libgobject-2.0.so.0)
                                                    #10 0x00007f3bf39f197f g_signal_emit (libgobject-2.0.so.0)
                                                    #11 0x0000556d3de93202 n/a (nautilus)
                                                    #12 0x0000556d3de72844 n/a (nautilus)
                                                    #13 0x0000556d3de9a3d7 n/a (nautilus)
                                                    #14 0x0000556d3de42970 n/a (nautilus)
                                                    #15 0x00007f3bf1db38ee ffi_call_unix64 (libffi.so.6)
                                                    #16 0x00007f3bf1db32bf ffi_call (libffi.so.6)
                                                    #17 0x00007f3bf39d5482 g_cclosure_marshal_generic (libgobject-2.0.so.0)
                                                    #18 0x00007f3bf39d4c8d g_closure_invoke (libgobject-2.0.so.0)
                                                    #19 0x00007f3bf39e8365 n/a (libgobject-2.0.so.0)
                                                    #20 0x00007f3bf39f12be g_signal_emit_valist (libgobject-2.0.so.0)
                                                    #21 0x00007f3bf39f197f g_signal_emit (libgobject-2.0.so.0)
                                                    #22 0x00007f3bf39d4ec6 n/a (libgobject-2.0.so.0)
                                                    #23 0x00007f3bf39f138d g_signal_emit_valist (libgobject-2.0.so.0)
                                                    #24 0x00007f3bf39f197f g_signal_emit (libgobject-2.0.so.0)
                                                    #25 0x00007f3bf3fa8e3a n/a (libgtk-3.so.0)
                                                    #26 0x00007f3bf45ea863 n/a (libglib-2.0.so.0)
                                                    #27 0x00007f3bf45e9dd8 g_main_context_dispatch (libglib-2.0.so.0)
                                                    #28 0x00007f3bf45ea1c8 n/a (libglib-2.0.so.0)
                                                    #29 0x00007f3bf45ea25c g_main_context_iteration (libglib-2.0.so.0)
                                                    #30 0x00007f3bf3ae598d g_application_run (libgio-2.0.so.0)
                                                    #31 0x0000556d3de2e7b7 main (nautilus)
                                                    #32 0x00007f3bf33bd09b __libc_start_main (libc.so.6)
                                                    #33 0x0000556d3de2e80a _start (nautilus)
                                                    
                                                    Stack trace of thread 5880:
                                                    #0  0x00007f3bf3487819 __poll (libc.so.6)
                                                    #1  0x00007f3bf45ea136 n/a (libglib-2.0.so.0)
                                                    #2  0x00007f3bf45ea25c g_main_context_iteration (libglib-2.0.so.0)
                                                    #3  0x00007f3bf45ea2a1 n/a (libglib-2.0.so.0)
                                                    #4  0x00007f3bf4612415 n/a (libglib-2.0.so.0)
                                                    #5  0x00007f3bf3561fa3 start_thread (libpthread.so.0)
                                                    #6  0x00007f3bf34924cf __clone (libc.so.6)
                                                    
                                                    Stack trace of thread 5881:
                                                    #0  0x00007f3bf3487819 __poll (libc.so.6)
                                                    #1  0x00007f3bf45ea136 n/a (libglib-2.0.so.0)
                                                    #2  0x00007f3bf45ea4c2 g_main_loop_run (libglib-2.0.so.0)
                                                    #3  0x00007f3bf3b1f0d6 n/a (libgio-2.0.so.0)
                                                    #4  0x00007f3bf4612415 n/a (libglib-2.0.so.0)
                                                    #5  0x00007f3bf3561fa3 start_thread (libpthread.so.0)
                                                    #6  0x00007f3bf34924cf __clone (libc.so.6)
                                                    
                                                    Stack trace of thread 5889:
                                                    #0  0x00007f3bf3487819 __poll (libc.so.6)
                                                    #1  0x00007f3bf45ea136 n/a (libglib-2.0.so.0)
                                                    #2  0x00007f3bf45ea25c g_main_context_iteration (libglib-2.0.so.0)
                                                    #3  0x00007f3bf46e6ffd n/a (libdconfsettings.so)
                                                    #4  0x00007f3bf4612415 n/a (libglib-2.0.so.0)
                                                    #5  0x00007f3bf3561fa3 start_thread (libpthread.so.0)
                                                    #6  0x00007f3bf34924cf __clone (libc.so.6)
                                                    
                                                    Stack trace of thread 5888:
                                                    #0  0x00007f3bf348cf59 syscall (libc.so.6)
                                                    #1  0x00007f3bf4633f9f g_cond_wait (libglib-2.0.so.0)
                                                    #2  0x00007f3bf45bc0ab n/a (libglib-2.0.so.0)
                                                    #3  0x00007f3bf4612d87 n/a (libglib-2.0.so.0)
                                                    #4  0x00007f3bf4612415 n/a (libglib-2.0.so.0)
                                                    #5  0x00007f3bf3561fa3 start_thread (libpthread.so.0)
                                                    #6  0x00007f3bf34924cf __clone (libc.so.6)
                                                    
                                                    Stack trace of thread 6084:
                                                    #0  0x00007f3bf348cf59 syscall (libc.so.6)
                                                    #1  0x00007f3bf46340ba g_cond_wait_until (libglib-2.0.so.0)
                                                    #2  0x00007f3bf45bc091 n/a (libglib-2.0.so.0)
                                                    #3  0x00007f3bf4612ef2 n/a (libglib-2.0.so.0)
                                                    #4  0x00007f3bf4612415 n/a (libglib-2.0.so.0)
                                                    #5  0x00007f3bf3561fa3 start_thread (libpthread.so.0)
                                                    #6  0x00007f3bf34924cf __clone (libc.so.6)
                                                    
                                                    Stack trace of thread 6089:
                                                    #0  0x00007f3bf348cf59 syscall (libc.so.6)
                                                    #1  0x00007f3bf46340ba g_cond_wait_until (libglib-2.0.so.0)
                                                    #2  0x00007f3bf45bc091 n/a (libglib-2.0.so.0)
                                                    #3  0x00007f3bf4612ef2 n/a (libglib-2.0.so.0)
                                                    #4  0x00007f3bf4612415 n/a (libglib-2.0.so.0)
                                                    #5  0x00007f3bf3561fa3 start_thread (libpthread.so.0)
                                                    #6  0x00007f3bf34924cf __clone (libc.so.6)
Oct 21 23:26:32 joey-debian systemd[1]: systemd-coredump@0-6090-0.service: Succeeded.
Oct 21 23:26:57 joey-debian systemd[1]: systemd-hostnamed.service: Succeeded.

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 133 times

Re: Files menu crashes during search for documents

#6 Post by Head_on_a_Stick »

Please stop full-quoting unnecessarily, it degrades the readability of the thread.
4joeyirosh1 wrote:I tried reinstalling the by first removing libglib2.0-0 then installing it but it had so many dependencies that were to be removed also I got scared it my ruin the whole debian thus I aborted the remove operation
I was thinking more along the lines of

Code: Select all

# apt reinstall libglib2.0-0
And I'm still waiting to see the output of

Code: Select all

apt policy libglib2.0-0
^ That will show from where the package has been downloaded, foreign repositories are the most common cause of problems like this.
4joeyirosh1 wrote:I installed the systemd-coredump as you suggested,simulated the search crash and coredump output was as below when I ran

Code: Select all

 journalctl --follow[/quote]
All those [b]n/a[/b] lines indicate that you have not installed the -dbgsym version of the package, that trace doesn't show as much as it should.

I won't be able to analyze the coredump in any meaningful way but it will be useful if this isn't caused by user error and a bug report is needed.
deadbang

4joeyirosh1
Posts: 157
Joined: 2016-09-11 18:04
Been thanked: 3 times

Re: Files menu crashes during search for documents

#7 Post by 4joeyirosh1 »

Thanks
Head_on_a_Stick
for following up on the thread

I have successfully reinstalled libglib2.0-0 as below

Code: Select all

apt reinstall libglib2.0-0
Also kindly find output of

Code: Select all

# apt policy libglib2.0-0
libglib2.0-0:
  Installed: 2.58.3-2+deb10u1
  Candidate: 2.58.3-2+deb10u1
  Version table:
 *** 2.58.3-2+deb10u1 500
        500 http://deb.debian.org/debian buster/main amd64 Packages
        500 http://httpredir.debian.org/debian buster/main amd64 Packages
        100 /var/lib/dpkg/status
As you requested,I have tried to install libglib2.0-0 package with the -dbgsym version following instructions on the link you sent me https://wiki.debian.org/HowToGetABacktr ... ng_symbols.

Based on this link I successfully added the following repos on the sources.list file

deb http://deb.debian.org/debian-debug/ buster-proposed-updates-debug main

deb http://deb.debian.org/debian-debug/ testing-debug main
deb http://deb.debian.org/debian-debug/ unstable-debug main
deb http://deb.debian.org/debian-debug/ experimental-debug main

I already had the deb http://deb.debian.org/debian-debug/ buster-debug main repo setup

Next,as per link I successfully installed debian-goodies but now have a challenge with the link's next step ie find-dbgsym-packages script to find which dbgsym packages to install:

$ find-dbgsym-packages /usr/bin/hello
hello-dbgsym

I am not sure which package needs the dbgsym packages for debug.I actually tried the command below and output is also shown

Code: Select all

$ find-dbgsym-packages /usr/bin/libglib2.0-0
W: /usr/bin/libglib2.0-0 not found, skipping
Kindly advise on how to run this command with the right package under investigation.

I even tried to run the same for vlc package with output as below

Code: Select all

$ find-dbgsym-packages /usr/bin/vlc
libdbus-1-3-dbgsym libgcrypt20-dbgsym libgpg-error0-dbgsym libidn11-dbgsym liblz4-1-dbgsym liblzma5-dbgsym libsystemd0-dbgsym libvlc5-dbgsym libvlccore9-dbgsym vlc-bin-dbgsym
And when I tried installing these packages I got dependency errors as below

Code: Select all

#apt install libdbus-1-3-dbgsym libgcrypt20-dbgsym libgpg-error0-dbgsym libidn11-dbgsym liblz4-1-dbgsym liblzma5-dbgsym libsystemd0-dbgsym libvlc5-dbgsym libvlccore9-dbgsym vlc-bin-dbgsym
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 libdbus-1-3-dbgsym : Depends: libdbus-1-3 (= 1.12.16-2) but 1.12.16-1 is to be installed
 libgcrypt20-dbgsym : Depends: libgcrypt20 (= 1.8.5-3) but 1.8.4-5 is to be installed
 libgpg-error0-dbgsym : Depends: libgpg-error0 (= 1.36-7) but 1.35-1 is to be installed
 liblz4-1-dbgsym : Depends: liblz4-1 (= 1.9.1-2) but 1.8.3-1 is to be installed
 liblzma5-dbgsym : Depends: liblzma5 (= 5.2.4-1+b1) but 5.2.4-1 is to be installed
 libsystemd0-dbgsym : Depends: libsystemd0 (= 242-7) but 241-7~deb10u1 is to be installed
 libvlc5-dbgsym : Depends: libvlc5 (= 3.0.8-2+b2) but 3.0.8-0+deb10u1 is to be installed
 libvlccore9-dbgsym : Depends: libvlccore9 (= 3.0.8-2+b2) but 3.0.8-0+deb10u1 is to be installed
 vlc-bin-dbgsym : Depends: vlc-bin (= 3.0.8-2+b2) but 3.0.8-0+deb10u1 is to be installed
E: Unable to correct problems, you have held broken packages.
Anyway,I simulated another file search crash while running the journalctl --follow command and the coredump is as below

Code: Select all

Oct 24 07:47:16 <<hostname>> systemd[1]: Starting Hostname Service...
Oct 24 07:47:16 <<hostname>> dbus-daemon[582]: [system] Successfully activated service 'org.freedesktop.hostname1'
Oct 24 07:47:16 <<hostname>> systemd[1]: Started Hostname Service.
Oct 24 07:47:19 <<hostname>> org.gnome.Nautilus[1462]: sys:1: Warning: instance of invalid non-instantiatable type '<invalid>'
Oct 24 07:47:19 <<hostname>> org.gnome.Nautilus[1462]: sys:1: Warning: g_signal_handler_disconnect: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed
Oct 24 07:47:26 <<hostname>> kernel: nautilus[9629]: segfault at 5500657a6984 ip 00007f0dbd7dc55f sp 00007ffdb6eec5d8 error 4 in libgobject-2.0.so.0.5800.3[7f0dbd7b2000+32000]
Oct 24 07:47:26 <<hostname>> kernel: Code: 1f 84 00 00 00 00 00 0f 1f 40 00 48 85 ff 74 4b 48 8b 07 48 85 c0 74 43 48 8b 00 48 3d fc 03 00 00 76 18 48 83 e0 fc 48 89 c2 <0f> b6 42 14 48 39 74 c2 48 0f 94 c0 0f b6 c0 c3 90 48 c1 e8 02 48
Oct 24 07:47:26 <<hostname>> systemd[1]: Started Process Core Dump (PID 10126/UID 0).
Oct 24 07:47:27 <<hostname>> systemd-coredump[10127]: Process 9629 (nautilus) of user 1000 dumped core.
                                                     
                                                     Stack trace of thread 9629:
                                                     #0  0x00007f0dbd7dc55f g_type_check_instance_is_fundamentally_a (libgobject-2.0.so.0)
                                                     #1  0x00007f0dbd7c1dbe g_value_set_object (libgobject-2.0.so.0)
                                                     #2  0x00007f0dbd7c0a68 g_object_get_property (libgobject-2.0.so.0)
                                                     #3  0x00007f0dbd7b2f13 n/a (libgobject-2.0.so.0)
                                                     #4  0x00007f0dbd7b41b9 g_object_bind_property_full (libgobject-2.0.so.0)
                                                     #5  0x00007f0dbd7b4472 g_object_bind_property (libgobject-2.0.so.0)
                                                     #6  0x000055acfabb93e0 n/a (nautilus)
                                                     #7  0x000055acfabb99a5 n/a (nautilus)
                                                     #8  0x000055acfabb80d8 nautilus_window_slot_open_location_full (nautilus)
                                                     #9  0x00007f0dbbb968ee ffi_call_unix64 (libffi.so.6)
                                                     #10 0x00007f0dbbb962bf ffi_call (libffi.so.6)
                                                     #11 0x00007f0dbd7b8482 g_cclosure_marshal_generic (libgobject-2.0.so.0)
                                                     #12 0x00007f0dbd7b7c8d g_closure_invoke (libgobject-2.0.so.0)
                                                     #13 0x00007f0dbd7cb365 n/a (libgobject-2.0.so.0)
                                                     #14 0x00007f0dbd7d42be g_signal_emit_valist (libgobject-2.0.so.0)
                                                     #15 0x00007f0dbd7d497f g_signal_emit (libgobject-2.0.so.0)
                                                     #16 0x00007f0dbd7b7ec6 n/a (libgobject-2.0.so.0)
                                                     #17 0x00007f0dbd7d438d g_signal_emit_valist (libgobject-2.0.so.0)
                                                     #18 0x00007f0dbd7d497f g_signal_emit (libgobject-2.0.so.0)
                                                     #19 0x00007f0dbdd8be3a n/a (libgtk-3.so.0)
                                                     #20 0x00007f0dbe3cd863 n/a (libglib-2.0.so.0)
                                                     #21 0x00007f0dbe3ccdd8 g_main_context_dispatch (libglib-2.0.so.0)
                                                     #22 0x00007f0dbe3cd1c8 n/a (libglib-2.0.so.0)
                                                     #23 0x00007f0dbe3cd25c g_main_context_iteration (libglib-2.0.so.0)
                                                     #24 0x00007f0dbd8c898d g_application_run (libgio-2.0.so.0)
                                                     #25 0x000055acfaba47b7 main (nautilus)
                                                     #26 0x00007f0dbd1a009b __libc_start_main (libc.so.6)
                                                     #27 0x000055acfaba480a _start (nautilus)
                                                     
                                                     Stack trace of thread 9630:
                                                     #0  0x00007f0dbd26a819 __GI___poll (libc.so.6)
                                                     #1  0x00007f0dbe3cd136 n/a (libglib-2.0.so.0)
                                                     #2  0x00007f0dbe3cd25c g_main_context_iteration (libglib-2.0.so.0)
                                                     #3  0x00007f0dbe3cd2a1 n/a (libglib-2.0.so.0)
                                                     #4  0x00007f0dbe3f5415 n/a (libglib-2.0.so.0)
                                                     #5  0x00007f0dbd344fa3 start_thread (libpthread.so.0)
                                                     #6  0x00007f0dbd2754cf __clone (libc.so.6)
                                                     
                                                     Stack trace of thread 10125:
                                                     #0  0x00007f0dbe3bb1aa g_hash_table_lookup (libglib-2.0.so.0)
                                                     #1  0x00007f0dbe3ecab5 g_strerror (libglib-2.0.so.0)
                                                     #2  0x00007f0dbe3b8394 n/a (libglib-2.0.so.0)
                                                     #3  0x00007f0dbe3b8a53 g_file_get_contents (libglib-2.0.so.0)
                                                     #4  0x00007f0dbd91e85d n/a (libgio-2.0.so.0)
                                                     #5  0x00007f0dbd91b182 n/a (libgio-2.0.so.0)
                                                     #6  0x00007f0dbd8617c7 g_file_enumerator_next_file (libgio-2.0.so.0)
                                                     #7  0x000055acfabecad6 n/a (nautilus)
                                                     #8  0x00007f0dbe3f5415 n/a (libglib-2.0.so.0)
                                                     #9  0x00007f0dbd344fa3 start_thread (libpthread.so.0)
                                                     #10 0x00007f0dbd2754cf __clone (libc.so.6)
                                                     
                                                     Stack trace of thread 9631:
                                                     #0  0x00007f0dbd26a819 __GI___poll (libc.so.6)
                                                     #1  0x00007f0dbe3cd136 n/a (libglib-2.0.so.0)
                                                     #2  0x00007f0dbe3cd4c2 g_main_loop_run (libglib-2.0.so.0)
                                                     #3  0x00007f0dbd9020d6 n/a (libgio-2.0.so.0)
                                                     #4  0x00007f0dbe3f5415 n/a (libglib-2.0.so.0)
                                                     #5  0x00007f0dbd344fa3 start_thread (libpthread.so.0)
                                                     #6  0x00007f0dbd2754cf __clone (libc.so.6)
                                                     
                                                     Stack trace of thread 9633:
                                                     #0  0x00007f0dbd26ff59 syscall (libc.so.6)
                                                     #1  0x00007f0dbe416f9f g_cond_wait (libglib-2.0.so.0)
                                                     #2  0x00007f0dbe39f0ab n/a (libglib-2.0.so.0)
                                                     #3  0x00007f0dbe3f5d87 n/a (libglib-2.0.so.0)
                                                     #4  0x00007f0dbe3f5415 n/a (libglib-2.0.so.0)
                                                     #5  0x00007f0dbd344fa3 start_thread (libpthread.so.0)
                                                     #6  0x00007f0dbd2754cf __clone (libc.so.6)
                                                     
                                                     Stack trace of thread 10111:
                                                     #0  0x00007f0dbd26ff59 syscall (libc.so.6)
                                                     #1  0x00007f0dbe4170ba g_cond_wait_until (libglib-2.0.so.0)
                                                     #2  0x00007f0dbe39f091 n/a (libglib-2.0.so.0)
                                                     #3  0x00007f0dbe3f5ef2 n/a (libglib-2.0.so.0)
                                                     #4  0x00007f0dbe3f5415 n/a (libglib-2.0.so.0)
                                                     #5  0x00007f0dbd344fa3 start_thread (libpthread.so.0)
                                                     #6  0x00007f0dbd2754cf __clone (libc.so.6)
                                                     
                                                     Stack trace of thread 9634:
                                                     #0  0x00007f0dbd26a819 __GI___poll (libc.so.6)
                                                     #1  0x00007f0dbe3cd136 n/a (libglib-2.0.so.0)
                                                     #2  0x00007f0dbe3cd25c g_main_context_iteration (libglib-2.0.so.0)
                                                     #3  0x00007f0dbe4c9ffd n/a (libdconfsettings.so)
                                                     #4  0x00007f0dbe3f5415 n/a (libglib-2.0.so.0)
                                                     #5  0x00007f0dbd344fa3 start_thread (libpthread.so.0)
                                                     #6  0x00007f0dbd2754cf __clone (libc.so.6)
Oct 24 07:47:27 <<hostname>> systemd[1]: systemd-coredump@2-10126-0.service: Succeeded.
Oct 24 07:47:53 <<hostname>> systemd[1]: systemd-hostnamed.service: Succeeded.

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 133 times

Re: Files menu crashes during search for documents

#8 Post by Head_on_a_Stick »

4joeyirosh1 wrote:Based on this link I successfully added the following repos on the sources.list file

deb http://deb.debian.org/debian-debug/ buster-proposed-updates-debug main

deb http://deb.debian.org/debian-debug/ testing-debug main
deb http://deb.debian.org/debian-debug/ unstable-debug main
deb http://deb.debian.org/debian-debug/ experimental-debug main

I already had the deb http://deb.debian.org/debian-debug/ buster-debug main repo setup
Remove all of the added lines (and update the package database); you don't want buster-proposed, testing, unstable or experimental. Why would you think otherwise? :?

You only need the buster-debug line because you're using buster.

Then install the dbgsym package you need:

Code: Select all

# apt install libglib2.0-0-dbgsym
deadbang

4joeyirosh1
Posts: 157
Joined: 2016-09-11 18:04
Been thanked: 3 times

Re: Files menu crashes during search for documents

#9 Post by 4joeyirosh1 »

Head_on_a_Stick wrote:
4joeyirosh1 wrote:
Remove all of the added lines (and update the package database); you don't want buster-proposed, testing, unstable or experimental. Why would you think otherwise? :?
I added those lines because the link https://wiki.debian.org/HowToGetABacktr ... ng_symbols that you provided suggested one adds the lines and I thought some packages for dbgsym will be obtained from these repos.I have removed the lines

I installed the libglib2.0-0-dbgsym successfully.

I simulated another file search crash while running the journalctl --follow command and the coredump is as below

Code: Select all

Oct 24 23:53:27 joey-debian systemd[1]: Started Hostname Service.
Oct 24 23:53:33 joey-debian org.gnome.Nautilus[2845]: sys:1: Warning: g_value_set_object: assertion 'G_IS_OBJECT (v_object)' failed
Oct 24 23:53:34 joey-debian kernel: do_general_protection: 8 callbacks suppressed
Oct 24 23:53:34 joey-debian kernel: traps: nautilus[13256] general protection ip:7f2513a8155f sp:7ffd234a4e48 error:0 in libgobject-2.0.so.0.5800.3[7f2513a57000+32000]
Oct 24 23:53:34 joey-debian systemd[1]: Created slice system-systemd\x2dcoredump.slice.
Oct 24 23:53:34 joey-debian systemd[1]: Started Process Core Dump (PID 19742/UID 0).
Oct 24 23:53:36 joey-debian systemd-coredump[19743]: Process 13256 (nautilus) of user 1000 dumped core.
                                                     
                                                     Stack trace of thread 13256:
                                                     #0  0x00007f2513a8155f g_type_check_instance_is_fundamentally_a (libgobject-2.0.so.0)
                                                     #1  0x00007f2513a61c95 g_object_unref (libgobject-2.0.so.0)
                                                     #2  0x000055d66fddfc6a n/a (nautilus)
                                                     #3  0x00007f2513a64ecb object_set_property (libgobject-2.0.so.0)
                                                     #4  0x00007f2513a6579c g_object_set (libgobject-2.0.so.0)
                                                     #5  0x000055d66fde3fa3 n/a (nautilus)
                                                     #6  0x000055d66fe2d6e8 n/a (nautilus)
                                                     #7  0x00007f2513a5cc8d g_closure_invoke (libgobject-2.0.so.0)
                                                     #8  0x00007f2513a6fbbd signal_emit_unlocked_R (libgobject-2.0.so.0)
                                                     #9  0x00007f2513a792be g_signal_emit_valist (libgobject-2.0.so.0)
                                                     #10 0x00007f2513a7997f g_signal_emit (libgobject-2.0.so.0)
                                                     #11 0x000055d66fddb202 n/a (nautilus)
                                                     #12 0x000055d66fdba844 n/a (nautilus)
                                                     #13 0x000055d66fde23d7 n/a (nautilus)
                                                     #14 0x000055d66fd8a970 n/a (nautilus)
                                                     #15 0x00007f2511e3b8ee ffi_call_unix64 (libffi.so.6)
                                                     #16 0x00007f2511e3b2bf ffi_call (libffi.so.6)
                                                     #17 0x00007f2513a5d482 g_cclosure_marshal_generic (libgobject-2.0.so.0)
                                                     #18 0x00007f2513a5cc8d g_closure_invoke (libgobject-2.0.so.0)
                                                     #19 0x00007f2513a70365 signal_emit_unlocked_R (libgobject-2.0.so.0)
                                                     #20 0x00007f2513a792be g_signal_emit_valist (libgobject-2.0.so.0)
                                                     #21 0x00007f2513a7997f g_signal_emit (libgobject-2.0.so.0)
                                                     #22 0x00007f2513a5cec6 _g_closure_invoke_va (libgobject-2.0.so.0)
                                                     #23 0x00007f2513a7938d g_signal_emit_valist (libgobject-2.0.so.0)
                                                     #24 0x00007f2513a7997f g_signal_emit (libgobject-2.0.so.0)
                                                     #25 0x00007f2514030e3a n/a (libgtk-3.so.0)
                                                     #26 0x00007f2514672863 g_timeout_dispatch (libglib-2.0.so.0)
                                                     #27 0x00007f2514671dd8 g_main_dispatch (libglib-2.0.so.0)
                                                     #28 0x00007f25146721c8 g_main_context_iterate (libglib-2.0.so.0)
                                                     #29 0x00007f251467225c g_main_context_iteration (libglib-2.0.so.0)
                                                     #30 0x00007f2513b6d98d g_application_run (libgio-2.0.so.0)
                                                     #31 0x000055d66fd767b7 main (nautilus)
                                                     #32 0x00007f251344509b __libc_start_main (libc.so.6)
                                                     #33 0x000055d66fd7680a _start (nautilus)
                                                     
                                                     Stack trace of thread 13260:
                                                     #0  0x00007f2513514f59 syscall (libc.so.6)
                                                     #1  0x00007f25146bbf9f g_cond_wait (libglib-2.0.so.0)
                                                     #2  0x00007f25146440ab g_async_queue_pop_intern_unlocked (libglib-2.0.so.0)
                                                     #3  0x00007f251469ad87 g_thread_pool_wait_for_new_task (libglib-2.0.so.0)
                                                     #4  0x00007f251469a415 g_thread_proxy (libglib-2.0.so.0)
                                                     #5  0x00007f25135e9fa3 start_thread (libpthread.so.0)
                                                     #6  0x00007f251351a4cf __clone (libc.so.6)
                                                     
                                                     Stack trace of thread 13257:
                                                     #0  0x00007f251350f819 __GI___poll (libc.so.6)
                                                     #1  0x00007f2514672136 g_main_context_poll (libglib-2.0.so.0)
                                                     #2  0x00007f251467225c g_main_context_iteration (libglib-2.0.so.0)
                                                     #3  0x00007f25146722a1 glib_worker_main (libglib-2.0.so.0)
                                                     #4  0x00007f251469a415 g_thread_proxy (libglib-2.0.so.0)
                                                     #5  0x00007f25135e9fa3 start_thread (libpthread.so.0)
                                                     #6  0x00007f251351a4cf __clone (libc.so.6)
                                                     
                                                     Stack trace of thread 13261:
                                                     #0  0x00007f251350f819 __GI___poll (libc.so.6)
                                                     #1  0x00007f2514672136 g_main_context_poll (libglib-2.0.so.0)
                                                     #2  0x00007f251467225c g_main_context_iteration (libglib-2.0.so.0)
                                                     #3  0x00007f251476effd n/a (libdconfsettings.so)
                                                     #4  0x00007f251469a415 g_thread_proxy (libglib-2.0.so.0)
                                                     #5  0x00007f25135e9fa3 start_thread (libpthread.so.0)
                                                     #6  0x00007f251351a4cf __clone (libc.so.6)
                                                     
                                                     Stack trace of thread 13258:
                                                     #0  0x00007f251350f819 __GI___poll (libc.so.6)
                                                     #1  0x00007f2514672136 g_main_context_poll (libglib-2.0.so.0)
                                                     #2  0x00007f25146724c2 g_main_loop_run (libglib-2.0.so.0)
                                                     #3  0x00007f2513ba70d6 gdbus_shared_thread_func (libgio-2.0.so.0)
                                                     #4  0x00007f251469a415 g_thread_proxy (libglib-2.0.so.0)
                                                     #5  0x00007f25135e9fa3 start_thread (libpthread.so.0)
                                                     #6  0x00007f251351a4cf __clone (libc.so.6)
                                                     
                                                     Stack trace of thread 19734:
                                                     #0  0x00007f2513514f59 syscall (libc.so.6)
                                                     #1  0x00007f25146bc0ba g_cond_wait_until (libglib-2.0.so.0)
                                                     #2  0x00007f2514644091 g_async_queue_pop_intern_unlocked (libglib-2.0.so.0)
                                                     #3  0x00007f2514644651 g_async_queue_timeout_pop (libglib-2.0.so.0)
                                                     #4  0x00007f251469ae51 g_thread_pool_wait_for_new_pool (libglib-2.0.so.0)
                                                     #5  0x00007f251469a415 g_thread_proxy (libglib-2.0.so.0)
                                                     #6  0x00007f25135e9fa3 start_thread (libpthread.so.0)
                                                     #7  0x00007f251351a4cf __clone (libc.so.6)
                                                     
                                                     Stack trace of thread 19741:
                                                     #0  0x00007f2513514f59 syscall (libc.so.6)
                                                     #1  0x00007f25146bc0ba g_cond_wait_until (libglib-2.0.so.0)
                                                     #2  0x00007f2514644091 g_async_queue_pop_intern_unlocked (libglib-2.0.so.0)
                                                     #3  0x00007f251469aef2 g_thread_pool_wait_for_new_task (libglib-2.0.so.0)
                                                     #4  0x00007f251469a415 g_thread_proxy (libglib-2.0.so.0)
                                                     #5  0x00007f25135e9fa3 start_thread (libpthread.so.0)
                                                     #6  0x00007f251351a4cf __clone (libc.so.6)
Oct 24 23:53:36 joey-debian systemd[1]: systemd-coredump@0-19742-0.service: Succeeded.
Oct 24 23:53:57 joey-debian systemd[1]: systemd-hostnamed.service: Succeeded.

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 133 times

Re: Files menu crashes during search for documents

#10 Post by Head_on_a_Stick »

OK, good, just Nautilus is lacking the debug symbols now.

Have you checked your drive and memory health? We need to eliminate hardware problems.

If so then it's probably time to fire up reportbug — be sure to check the existing bug reports to see if this has already been noticed and attach the stack trace from your last post to any bug you submit. Thanks!
deadbang

4joeyirosh1
Posts: 157
Joined: 2016-09-11 18:04
Been thanked: 3 times

Re: Files menu crashes during search for documents

#11 Post by 4joeyirosh1 »

Head_on_a_Stick wrote:
OK, good, just Nautilus is lacking the debug symbols now.
There were other n/a errors on the prior coredump that I sent previously apart from nautilus.For Nautilus I installed nautilus-dbgsym,for n/a (libgtk-3.so.0) I installed libgtk-3-0-dbgsym and for n/a (libdconfsettings.so) I installed dconf-gsettings-backend-dbgsym and now the coredump that is produced when I simulate a file search crash has no n/a errors.Find the new coredump with no n/a errors

Code: Select all

Oct 27 11:54:48 joey-debian kernel: nautilus[4212]: segfault at 2298 ip 00007fbba7fdf55f sp 00007ffce65640b8 error 4 in libgobject-2.0.so.0.5800.3[7fbba7fb5000+32000]
Oct 27 11:54:48 joey-debian kernel: Code: 1f 84 00 00 00 00 00 0f 1f 40 00 48 85 ff 74 4b 48 8b 07 48 85 c0 74 43 48 8b 00 48 3d fc 03 00 00 76 18 48 83 e0 fc 48 89 c2 <0f> b6 42 14 48 39 74 c2 48 0f 94 c0 0f b6 c0 c3 90 48 c1 e8 02 48
Oct 27 11:54:48 joey-debian systemd[1]: Created slice system-systemd\x2dcoredump.slice.
Oct 27 11:54:48 joey-debian systemd[1]: Started Process Core Dump (PID 4265/UID 0).
Oct 27 11:54:50 joey-debian systemd-coredump[4266]: Process 4212 (nautilus) of user 1000 dumped core.
                                                    
                                                    Stack trace of thread 4212:
                                                    #0  0x00007fbba7fdf55f g_type_check_instance_is_fundamentally_a (libgobject-2.0.so.0)
                                                    #1  0x00007fbba7fc4dbe g_value_set_object (libgobject-2.0.so.0)
                                                    #2  0x00007fbba7fc3a68 object_get_property (libgobject-2.0.so.0)
                                                    #3  0x00007fbba7fb5f13 on_source_notify (libgobject-2.0.so.0)
                                                    #4  0x00007fbba7fb71b9 g_object_bind_property_full (libgobject-2.0.so.0)
                                                    #5  0x00007fbba7fb7472 g_object_bind_property (libgobject-2.0.so.0)
                                                    #6  0x000056042d7983e0 nautilus_window_slot_switch_new_content_view (nautilus)
                                                    #7  0x000056042d7989a5 got_file_info_for_view_selection_callback (nautilus)
                                                    #8  0x000056042d7970d8 nautilus_window_slot_open_location_full (nautilus)
                                                    #9  0x00007fbba63998ee ffi_call_unix64 (libffi.so.6)
                                                    #10 0x00007fbba63992bf ffi_call (libffi.so.6)
                                                    #11 0x00007fbba7fbb482 g_cclosure_marshal_generic (libgobject-2.0.so.0)
                                                    #12 0x00007fbba7fbac8d g_closure_invoke (libgobject-2.0.so.0)
                                                    #13 0x00007fbba7fce365 signal_emit_unlocked_R (libgobject-2.0.so.0)
                                                    #14 0x00007fbba7fd72be g_signal_emit_valist (libgobject-2.0.so.0)
                                                    #15 0x00007fbba7fd797f g_signal_emit (libgobject-2.0.so.0)
                                                    #16 0x00007fbba7fbaec6 _g_closure_invoke_va (libgobject-2.0.so.0)
                                                    #17 0x00007fbba7fd738d g_signal_emit_valist (libgobject-2.0.so.0)
                                                    #18 0x00007fbba7fd797f g_signal_emit (libgobject-2.0.so.0)
                                                    #19 0x00007fbba858ee3a gtk_search_entry_changed_timeout_cb (libgtk-3.so.0)
                                                    #20 0x00007fbba8bd0863 g_timeout_dispatch (libglib-2.0.so.0)
                                                    #21 0x00007fbba8bcfdd8 g_main_dispatch (libglib-2.0.so.0)
                                                    #22 0x00007fbba8bd01c8 g_main_context_iterate (libglib-2.0.so.0)
                                                    #23 0x00007fbba8bd025c g_main_context_iteration (libglib-2.0.so.0)
                                                    #24 0x00007fbba80cb98d g_application_run (libgio-2.0.so.0)
                                                    #25 0x000056042d7837b7 main (nautilus)
                                                    #26 0x00007fbba79a309b __libc_start_main (libc.so.6)
                                                    #27 0x000056042d78380a _start (nautilus)
                                                    
                                                    Stack trace of thread 4264:
                                                    #0  0x00007fbba7a73133 __GI___mmap64 (libc.so.6)
                                                    #1  0x00007fbba8bd155b mapped_file_new_from_fd (libglib-2.0.so.0)
                                                    #2  0x00007fbba8bd17cf g_mapped_file_new (libglib-2.0.so.0)
                                                    #3  0x00007fbba8bfb18b zone_info_unix (libglib-2.0.so.0)
                                                    #4  0x00007fbba8bb65ae g_date_time_new_from_unix_local (libglib-2.0.so.0)
                                                    #5  0x000056042d7cbccf visit_directory (nautilus)
                                                    #6  0x00007fbba8bf8415 g_thread_proxy (libglib-2.0.so.0)
                                                    #7  0x00007fbba7b47fa3 start_thread (libpthread.so.0)
                                                    #8  0x00007fbba7a784cf __clone (libc.so.6)
                                                    
                                                    Stack trace of thread 4215:
                                                    #0  0x00007fbba7a6d819 __GI___poll (libc.so.6)
                                                    #1  0x00007fbba8bd0136 g_main_context_poll (libglib-2.0.so.0)
                                                    #2  0x00007fbba8bd04c2 g_main_loop_run (libglib-2.0.so.0)
                                                    #3  0x00007fbba81050d6 gdbus_shared_thread_func (libgio-2.0.so.0)
                                                    #4  0x00007fbba8bf8415 g_thread_proxy (libglib-2.0.so.0)
                                                    #5  0x00007fbba7b47fa3 start_thread (libpthread.so.0)
                                                    #6  0x00007fbba7a784cf __clone (libc.so.6)
                                                    
                                                    Stack trace of thread 4223:
                                                    #0  0x00007fbba7a6d819 __GI___poll (libc.so.6)
                                                    #1  0x00007fbba8bd0136 g_main_context_poll (libglib-2.0.so.0)
                                                    #2  0x00007fbba8bd025c g_main_context_iteration (libglib-2.0.so.0)
                                                    #3  0x00007fbba8cccffd dconf_gdbus_worker_thread (libdconfsettings.so)
                                                    #4  0x00007fbba8bf8415 g_thread_proxy (libglib-2.0.so.0)
                                                    #5  0x00007fbba7b47fa3 start_thread (libpthread.so.0)
                                                    #6  0x00007fbba7a784cf __clone (libc.so.6)
                                                    
                                                    Stack trace of thread 4242:
                                                    #0  0x00007fbba7a72f59 syscall (libc.so.6)
                                                    #1  0x00007fbba8c1a0ba g_cond_wait_until (libglib-2.0.so.0)
                                                    #2  0x00007fbba8ba2091 g_async_queue_pop_intern_unlocked (libglib-2.0.so.0)
                                                    #3  0x00007fbba8bf8ef2 g_thread_pool_wait_for_new_task (libglib-2.0.so.0)
                                                    #4  0x00007fbba8bf8415 g_thread_proxy (libglib-2.0.so.0)
                                                    #5  0x00007fbba7b47fa3 start_thread (libpthread.so.0)
                                                    #6  0x00007fbba7a784cf __clone (libc.so.6)
                                                    
                                                    Stack trace of thread 4214:
                                                    #0  0x00007fbba7a6d819 __GI___poll (libc.so.6)
                                                    #1  0x00007fbba8bd0136 g_main_context_poll (libglib-2.0.so.0)
                                                    #2  0x00007fbba8bd025c g_main_context_iteration (libglib-2.0.so.0)
                                                    #3  0x00007fbba8bd02a1 glib_worker_main (libglib-2.0.so.0)
                                                    #4  0x00007fbba8bf8415 g_thread_proxy (libglib-2.0.so.0)
                                                    #5  0x00007fbba7b47fa3 start_thread (libpthread.so.0)
                                                    #6  0x00007fbba7a784cf __clone (libc.so.6)
                                                    
                                                    Stack trace of thread 4222:
                                                    #0  0x00007fbba7a72f59 syscall (libc.so.6)
                                                    #1  0x00007fbba8c19f9f g_cond_wait (libglib-2.0.so.0)
                                                    #2  0x00007fbba8ba20ab g_async_queue_pop_intern_unlocked (libglib-2.0.so.0)
                                                    #3  0x00007fbba8bf8d87 g_thread_pool_wait_for_new_task (libglib-2.0.so.0)
                                                    #4  0x00007fbba8bf8415 g_thread_proxy (libglib-2.0.so.0)
                                                    #5  0x00007fbba7b47fa3 start_thread (libpthread.so.0)
                                                    #6  0x00007fbba7a784cf __clone (libc.so.6)
Oct 27 11:54:50 joey-debian systemd[1]: systemd-coredump@0-4265-0.service: Succeeded.
Oct 27 11:55:01 joey-debian CRON[4276]: pam_unix(cron:session): session opened for user root by (uid=0)
Oct 27 11:55:01 joey-debian CRON[4277]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Oct 27 11:55:01 joey-debian CRON[4276]: pam_unix(cron:session): session closed for user root
Oct 27 11:55:16 joey-debian systemd[1]: systemd-hostnamed.service: Succeeded.
Have you checked your drive and memory health? We need to eliminate hardware problems.
Yes.I have checked drive health by installing smartmontools and running the smartctl -a /dev/sda command and there were no disk errors.For memory I installed memtest86+ and booted my laptop selecting memtest86+ boot option and the program ran for several hours and found no memory errors.
If so then it's probably time to fire up reportbug — be sure to check the existing bug reports to see if this has already been noticed and attach the stack trace from your last post to any bug you submit. Thanks!
I have never used reportbug before but I did research on how to use it.I learnt that you launch reportbug by running reportbug <<package_name>> but I am not sure which package is really producing the file search crash thus not certain how to proceed.Please advise whch package I should run the reportbug on ie is it reportbug libglib2.0-0 or reportbug libgobject-2.0 (as the inital first line on the coredump is segfault at 2298 ip 00007fbba7fdf55f sp 00007ffce65640b8 error 4 in libgobject-2.0.so.0.5800.3[7fbba7fb5000+32000]) or is it reportbug nautilus.Kindly assist in the best way to run reportbug

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 133 times

Re: Files menu crashes during search for documents

#12 Post by Head_on_a_Stick »

4joeyirosh1 wrote:now the coredump that is produced when I simulate a file search crash has no n/a errors
Ah, excellent. Good work :)
4joeyirosh1 wrote:I am not sure which package is really producing the file search crash thus not certain how to proceed
Open the bug against Nautilus itself, the package maintainers can re-assign it if necessary.
deadbang

Post Reply