[Desktop-packages] [Bug 1752053] Re: nvidia-390 fails to boot graphical display
Andreas, nvidia on my notebook is enabled and working properly. It is not disabled. Currently I only one option enabled for GRUB_CMDLINE_LINUX_DEFAULT in /etc/default/grub : GRUB_CMDLINE_LINUX_DEFAULT="splash" I do not have /etc/X11/xorg.conf file. If you backup file /etc/X11/xorg.conf, remove it and reboot laptop, does it help ? I have disabled wayland in /etc/gdm3/custom.conf with option (uncomment option in file): WaylandEnable=false What is prime-select query output ? - on my notebook it returns nvidia $ prime-select query nvidia -- You received this bug notification because you are a member of Desktop Packages, which is subscribed to mesa in Ubuntu. https://bugs.launchpad.net/bugs/1752053 Title: nvidia-390 fails to boot graphical display Status in mesa package in Ubuntu: Fix Released Status in nvidia-graphics-drivers-390 package in Ubuntu: Fix Released Status in xserver-xorg-video-nouveau package in Ubuntu: Invalid Bug description: I'm using Bionic with the new 4.15 kernel. I've been using the nvidia-384 driver with no problem for a while. Today I issued "sudo apt-get upgrade" and I was prompted to upgrade the nvidia driver to the nvidia-390. After installing the driver and rebooting, I was only able to boot in to the tty terminal. The graphical display failed to boot. I have had similar problems with nvidia driver version 390 with Arch Linux and with Open Suse Tumbleweed. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/1752053/+subscriptions -- Mailing list: https://launchpad.net/~desktop-packages Post to : desktop-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~desktop-packages More help : https://help.launchpad.net/ListHelp
[Desktop-packages] [Bug 1752053] Re: nvidia-390 fails to boot graphical display
I have finally getting to work my ubuntu 18.04 with drivers installed from additional drivers. After update from ubuntu 17.10 to 18.04 nvidia-390 drivers were installed, nvidia-340 package was metapackage for nvidia-390. Today I was able to install nvidia-340.106 driver directly from additional drivers, but they unfortunately did not work. I have described method how to compile nvidia-340.104 for kernel 4.15 in #114 and this worked without problems. I did comparison of nvidia-340.104 and nvidia-340.106 and found out that in nvidia-340.106 driver has fix for issue between the NVIDIA kernel driver's Page Attribute Table (PAT) support and the KPTI page table isolation. no After few tries with different kernel settings I have noticed that I have nopat option enabled in grub kernel boot. Simple fix for that was to remove nopat option in grub 1. Open grub configuration file /etc/default/grub # sudo vi /etc/default/grub or # sudo nano /etc/default/grub 2. Remove nopat from GRUB_CMDLINE_LINUX_DEFAULT My current options looks like this: GRUB_CMDLINE_LINUX_DEFAULT="splash nomdmonddf nomdmonisw nomdmonddf nomdmonisw" 3. Save file and exit editor 4. Update grub configuration # sudo update-grub2 5. Reboot # sudo reboot 6. Install recommended drivers # sudo ubuntu-drivers autoinstall 7. Reboot # sudo reboot -- You received this bug notification because you are a member of Desktop Packages, which is subscribed to mesa in Ubuntu. https://bugs.launchpad.net/bugs/1752053 Title: nvidia-390 fails to boot graphical display Status in mesa package in Ubuntu: Fix Released Status in nvidia-graphics-drivers-390 package in Ubuntu: Fix Released Status in xserver-xorg-video-nouveau package in Ubuntu: Invalid Bug description: I'm using Bionic with the new 4.15 kernel. I've been using the nvidia-384 driver with no problem for a while. Today I issued "sudo apt-get upgrade" and I was prompted to upgrade the nvidia driver to the nvidia-390. After installing the driver and rebooting, I was only able to boot in to the tty terminal. The graphical display failed to boot. I have had similar problems with nvidia driver version 390 with Arch Linux and with Open Suse Tumbleweed. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/1752053/+subscriptions -- Mailing list: https://launchpad.net/~desktop-packages Post to : desktop-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~desktop-packages More help : https://help.launchpad.net/ListHelp
[Desktop-packages] [Bug 1752053] Re: nvidia-390 fails to boot graphical display
I have managed to work nvidia binary drivers version 340.102 with kernel 4.15 with patch https://pastebin.com/raw/fVJVvQy7 , which is mentioned on https://devtalk.nvidia.com/default/topic/1026911/linux/4-15-rc1 -patches-for-384-98-and-340-104. My nvidia m720 graphics is working again on Ubuntu 18.04. 1. Install prerequisites # apt-get install build-essential libc6:i386 2. Download nvidia binary drivers from http://www.nvidia.com/content /DriverDownload-March2009/confirmation.php?url=/XFree86/Linux- x86_64/340.104/NVIDIA-Linux-x86_64-340.104.run&lang=us&type=TITAN 3. Download patch for nvidia binary drivers in same directory # wget -O nv_patch_340.104_linux_kernel_4.15 https://pastebin.com/raw/fVJVvQy7 4. Boot ubuntu in single mode https://linuxconfig.org/how-to-boot- ubuntu-18-04-into-emergency-and-rescue-mode (How to access emergency.target at boot) 5. Enter root password 6. Unload nouveau driver # rmmod nouveau 7. Blacklist nouveau driver # echo "blacklist nouveau" > /etc/modprobe.d/blacklist-nouveau.conf # echo "options nouveau modeset=0" >> /etc/modprobe.d/blacklist-nouveau.conf File /etc/modprobe.d/blacklist-nouveau.conf should have following entries: blacklist nouveau options nouveau modeset=0 8. Update initial ramdisk # update-initramfs -u 9. Go to directory which contains downloaded nvidia-340 binary driver and set executable attribute # chmod +x NVIDIA-Linux-x86_64-340.104.run 10. Apply the patch to driver (maybe this could be done after downloading kernel 4.15 patch - have not tried it ...) # ./NVIDIA-Linux-x86_64-340.104.run --apply-patch nv_patch_340.104_linux_kernel_4.15 This will build custom NVIDIA binary driver package with name NVIDIA- Linux-x86_64-340.104-custom.run 11. Set executable attribute for custom driver package # chmod +x NVIDIA-Linux-x86_64-340.104-custom.run 12. Install the driver with command # ./NVIDIA-Linux-x86_64-340.104-custom.run Ignore errors and enable DKMS 13. Reboot computer # reboot Nvidia driver 340.120 should be loaded now and graphics fully working. This method is to complicated so I will also try methods mention in #112 and #113. -- You received this bug notification because you are a member of Desktop Packages, which is subscribed to mesa in Ubuntu. https://bugs.launchpad.net/bugs/1752053 Title: nvidia-390 fails to boot graphical display Status in mesa package in Ubuntu: Fix Released Status in nvidia-graphics-drivers-390 package in Ubuntu: Fix Released Status in xserver-xorg-video-nouveau package in Ubuntu: Invalid Bug description: I'm using Bionic with the new 4.15 kernel. I've been using the nvidia-384 driver with no problem for a while. Today I issued "sudo apt-get upgrade" and I was prompted to upgrade the nvidia driver to the nvidia-390. After installing the driver and rebooting, I was only able to boot in to the tty terminal. The graphical display failed to boot. I have had similar problems with nvidia driver version 390 with Arch Linux and with Open Suse Tumbleweed. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/1752053/+subscriptions -- Mailing list: https://launchpad.net/~desktop-packages Post to : desktop-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~desktop-packages More help : https://help.launchpad.net/ListHelp
[Desktop-packages] [Bug 1220426] Re: [nvidia-prime]Freeze while using touchpad
To revert from #18 solution delete /etc/modprobe.d/psmouse.conf file with: sudo rm /etc/modprobe.d/psmouse.conf and reboot notebook or reload psmouse driver with sudo modprobe -r psmouse && sudo modprobe psmouse -- You received this bug notification because you are a member of Desktop Packages, which is subscribed to nvidia-prime in Ubuntu. https://bugs.launchpad.net/bugs/1220426 Title: [nvidia-prime]Freeze while using touchpad Status in “nvidia-graphics-drivers-319” package in Ubuntu: Confirmed Status in “nvidia-graphics-drivers-331” package in Ubuntu: Confirmed Status in “nvidia-prime” package in Ubuntu: Opinion Bug description: I'm using an Optimus laptop (Asus N43SL) nvidia-prime is installed, so my nvidia dedicated graphics card (GT 540m) is in use. Once in a while, my screen will freeze, only when I use my touchpad. This does not happen with my USB mouse. This does not happen either when I uninstall nvidia-prime and use my intel integrated graphics (HD3000). I can temporarily solve the issue by doing a VT switch. In the attached Xorg.0.log, you can see "synaptics: ETPS/2 Elantech Touchpad: touchpad found" each time I did a VT switch and regained control. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-319/+bug/1220426/+subscriptions -- Mailing list: https://launchpad.net/~desktop-packages Post to : desktop-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~desktop-packages More help : https://help.launchpad.net/ListHelp
[Desktop-packages] [Bug 1300669] Re: X Server fails to start with nvidia-331 in 14.04
1.) Do you happen to have bumblebee installed ? Try to remove bumblebee with purge option. sudo apt-get remove --purge bumblebee* If it is not install check in folder /etc/modprobe.d for file bumblebee.conf. If exists delete it (contains blacklist option for nvidia) rm -f /etc/modprobe.d/bumblebee.conf Bumblebee blacklists nvidia driver. After that install nvidia-331 driver and nvida-prime package: sudo apt-get install nvidia-331-updates nvidia-prime Reboot -- You received this bug notification because you are a member of Desktop Packages, which is subscribed to xorg in Ubuntu. https://bugs.launchpad.net/bugs/1300669 Title: X Server fails to start with nvidia-331 in 14.04 Status in “xorg” package in Ubuntu: Confirmed Bug description: I'm using a Lenovo Thinkpad W540 containing an internal intel and a nvidia graphics card. lspci | grep VGA 00:02.0 VGA compatible controller: Intel Corporation 4th Gen Core Processor Integrated Graphics Controller (rev 06) 01:00.0 VGA compatible controller: NVIDIA Corporation GK106GLM [Quadro K2100M] (rev a1) The Nouveau driver works (without 3d acceleration), but as soon as i switch to the proprietary nvidia-331 driver, the system gets stuck at the load screen and the login screen never shows up. Only option at this point is to switch to the console and remove the nvidia driver via sudo apt-get --purge remove nvidia-331 /var/log/Xorg.0.log shows two errors with the nvidia driver in place [10.075] (EE) [drm] KMS not enabled [10.087] (EE) Failed to initialize GLX extension (Compatible NVIDIA X driver not found) ProblemType: Bug DistroRelease: Ubuntu 14.04 Package: xorg 1:7.7+1ubuntu8 ProcVersionSignature: Ubuntu 3.13.0-20.42-generic 3.13.7 Uname: Linux 3.13.0-20-generic x86_64 NonfreeKernelModules: nvidia .proc.driver.nvidia.gpus.0: Error: [Errno 21] Is a directory: '/proc/driver/nvidia/gpus/0' .proc.driver.nvidia.registry: Binary: "" .proc.driver.nvidia.version: NVRM version: NVIDIA UNIX x86_64 Kernel Module 331.38 Wed Jan 8 19:32:30 PST 2014 GCC version: gcc version 4.8.2 (Ubuntu 4.8.2-17ubuntu2) ApportVersion: 2.14-0ubuntu1 Architecture: amd64 CompizPlugins: No value set for `/apps/compiz-1/general/screen0/options/active_plugins' Date: Tue Apr 1 10:34:09 2014 DistUpgraded: Fresh install DistroCodename: trusty DistroVariant: ubuntu DkmsStatus: bbswitch, 0.7, 3.13.0-20-generic, x86_64: installed nvidia-331, 331.38, 3.13.0-20-generic, x86_64: installed EcryptfsInUse: Yes ExtraDebuggingInterest: Yes, if not too technical GraphicsCard: Intel Corporation 4th Gen Core Processor Integrated Graphics Controller [8086:0416] (rev 06) (prog-if 00 [VGA controller]) Subsystem: Lenovo Device [17aa:2211] NVIDIA Corporation GK106GLM [Quadro K2100M] [10de:11fc] (rev a1) (prog-if 00 [VGA controller]) Subsystem: Lenovo Device [17aa:2211] InstallationDate: Installed on 2014-03-25 (6 days ago) InstallationMedia: Ubuntu-GNOME 14.04 "Trusty Tahr" - Alpha amd64 (20140226) MachineType: LENOVO 20BG001SGE ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-20-generic root=UUID=e943bd1a-4044-41be-9a84-34de2b2a6485 ro thinkpad-acpi.brightness_enable=1 acpi_backlight=vendor quiet splash SourcePackage: xorg UpgradeStatus: No upgrade log present (probably fresh install) dmi.bios.date: 02/18/2014 dmi.bios.vendor: LENOVO dmi.bios.version: GNET61WW (2.09 ) dmi.board.asset.tag: Not Available dmi.board.name: 20BG001SGE dmi.board.vendor: LENOVO dmi.board.version: 0B98401 Pro dmi.chassis.asset.tag: No Asset Information dmi.chassis.type: 10 dmi.chassis.vendor: LENOVO dmi.chassis.version: Not Available dmi.modalias: dmi:bvnLENOVO:bvrGNET61WW(2.09):bd02/18/2014:svnLENOVO:pn20BG001SGE:pvrThinkPadW540:rvnLENOVO:rn20BG001SGE:rvr0B98401Pro:cvnLENOVO:ct10:cvrNotAvailable: dmi.product.name: 20BG001SGE dmi.product.version: ThinkPad W540 dmi.sys.vendor: LENOVO version.compiz: compiz N/A version.ia32-libs: ia32-libs N/A version.libdrm2: libdrm2 2.4.52-1 version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.0-1ubuntu1 version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.0-1ubuntu1 version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A version.xserver-xorg-core: xserver-xorg-core 2:1.15.0-1ubuntu7 version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2 version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3 version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1 version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.10-1ubuntu2 xserver.bootTime: Tue Apr 1 10:33:42 2014 xserver.configfile: default xserver.errors: [drm] KMS not enabled Failed to initialize GLX extension (Compatible NVIDIA X driver not found) xserver.logfile: /var/log/Xorg.0.log xserver.outputs: xserver.vers
[Desktop-packages] [Bug 1220426] Re: [nvidia-prime]Freeze while using touchpad
I have created file /etc/modprobe.d/psmouse.conf with following entry: options psmouse proto=imps I have rebooted the notebook and had to increase pointer speed of trackpad under System settings > Mouse & Touchpad after reboot. So far I don't have any issues with trackpad freezing. Default parameter proto for psmouse module is set to auto. The current value of the proto paramater of psmouse kernel module can be read from /sys/module/psmouse/parameters/proto file: cat /sys/module/psmouse/parameters/proto After creating /etc/modprobe.d/psmouse.conf file parameter is set to ImPS/2. The idea for changing psmouse proto parameter came from https://answers.launchpad.net/ubuntu/+source/xserver-xorg-input- synaptics/+question/176273. So the quick fix would be: 1.) Run following command from terminal: echo "options psmouse proto=imps" | sudo tee /etc/modprobe.d/psmouse.conf >/dev/null 2.) Reboot the system or reload psmouse module from terminal with following commands: sudo modprobe -r psmouse && sudo modprobe psmouse 3.) Increase the speed of pointer under System settings > Mouse & Touchpad Can anyone else confirm this fix ? -- You received this bug notification because you are a member of Desktop Packages, which is subscribed to nvidia-prime in Ubuntu. https://bugs.launchpad.net/bugs/1220426 Title: [nvidia-prime]Freeze while using touchpad Status in “nvidia-graphics-drivers-319” package in Ubuntu: Confirmed Status in “nvidia-prime” package in Ubuntu: Opinion Bug description: I'm using an Optimus laptop (Asus N43SL) nvidia-prime is installed, so my nvidia dedicated graphics card (GT 540m) is in use. Once in a while, my screen will freeze, only when I use my touchpad. This does not happen with my USB mouse. This does not happen either when I uninstall nvidia-prime and use my intel integrated graphics (HD3000). I can temporarily solve the issue by doing a VT switch. In the attached Xorg.0.log, you can see "synaptics: ETPS/2 Elantech Touchpad: touchpad found" each time I did a VT switch and regained control. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-319/+bug/1220426/+subscriptions -- Mailing list: https://launchpad.net/~desktop-packages Post to : desktop-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~desktop-packages More help : https://help.launchpad.net/ListHelp
[Desktop-packages] [Bug 1220426] Re: [nvidia-prime]Freeze while using touchpad
Same here on Lenovo G710 on saucy 64bit with Nvidia 319, GeForce 720M and /proc/bus/input/devices reports "ETPS/2 Elantech Touchpad". Freeze behaviour is the same as reported by Corollax. -- You received this bug notification because you are a member of Desktop Packages, which is subscribed to nvidia-prime in Ubuntu. https://bugs.launchpad.net/bugs/1220426 Title: [nvidia-prime]Freeze while using touchpad Status in “nvidia-graphics-drivers-319” package in Ubuntu: Confirmed Status in “nvidia-prime” package in Ubuntu: Opinion Bug description: I'm using an Optimus laptop (Asus N43SL) nvidia-prime is installed, so my nvidia dedicated graphics card (GT 540m) is in use. Once in a while, my screen will freeze, only when I use my touchpad. This does not happen with my USB mouse. This does not happen either when I uninstall nvidia-prime and use my intel integrated graphics (HD3000). I can temporarily solve the issue by doing a VT switch. In the attached Xorg.0.log, you can see "synaptics: ETPS/2 Elantech Touchpad: touchpad found" each time I did a VT switch and regained control. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-319/+bug/1220426/+subscriptions -- Mailing list: https://launchpad.net/~desktop-packages Post to : desktop-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~desktop-packages More help : https://help.launchpad.net/ListHelp
[Desktop-packages] [Bug 802590] Re: can't access to presentation-minimizer
I have installed libreoffice-presentation-minimizer extension on ubuntu 12.04 and i didn't have menu options tools -> minimize presentation. So I ran synaptic package manager and searched for "libreoffice". I have reinstalled all installed packages which were returned by the search, including libreoffice-presentation-minimizer package. After that tools -> minimize presentation started to work. Based on dpkg.log the command for reinstallation should be (run from terminal, English version of Ubuntu 12.04) : sudo apt-get install --reinstall fonts-opensymbol libreoffice-l10n-en-gb libreoffice-l10n-en-za myspell-en-gb myspell-en-za mythes-en-us openoffice.org-l10n-en-gb openoffice.org-l10n-en-za openoffice.org- thesaurus-en-us libreoffice-style-human libreoffice-help-en-us libreoffice-style-tango openoffice.org-help-en-us ure uno-libs3 libreoffice-style-galaxy libreoffice-common libreoffice-java-common libreoffice-filter-mobiledev openoffice.org-common openoffice.org-java- common libreoffice-core libreoffice-base-core libreoffice-writer libreoffice-calc libreoffice-draw libreoffice-impress libreoffice-math libreoffice-base libreoffice python-uno python-uno libreoffice-gtk libreoffice-gnome libreoffice-help-en-gb libreoffice-presentation- minimizer openoffice.org openoffice.org-base openoffice.org-calc openoffice.org-draw openoffice.org-gnome openoffice.org-gtk openoffice .org-help-en-gb openoffice.org-impress openoffice.org-math openoffice .org-writer libreoffice-emailmerge -- You received this bug notification because you are a member of Desktop Packages, which is subscribed to libreoffice in Ubuntu. https://bugs.launchpad.net/bugs/802590 Title: can't access to presentation-minimizer Status in “libreoffice” package in Ubuntu: Confirmed Bug description: I installed libreoffice-presentation-minimizer extension It should add a toolbar in Impress but I can't see it (searched for view -> toolbars -> minimizer) and so, can't use it ... --- ApportVersion: 1.23-0ubuntu3 Architecture: amd64 DistroRelease: Ubuntu 11.10 InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Release amd64 (20111012) NonfreeKernelModules: nvidia Package: libreoffice 1:3.4.3-3ubuntu2 PackageArchitecture: amd64 ProcEnviron: PATH=(custom, no user) LANG=fr_FR.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 3.0.0-12.20-generic 3.0.4 Tags: oneiric running-unity Uname: Linux 3.0.0-12-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/802590/+subscriptions -- Mailing list: https://launchpad.net/~desktop-packages Post to : desktop-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~desktop-packages More help : https://help.launchpad.net/ListHelp
[Desktop-packages] [Bug 874629] Re: evolution crashes after upgrade to 11.10
I have similar error : (evolution:3011): Tracker-DEBUG: Tracker Evolution plugin enabled (evolution:3011): Tracker-DEBUG: Tracker plugin creating new object... (evolution:3011): evolution-mail-CRITICAL **: mail_store_add: assertion `store_table != NULL' failed (evolution:3011): camel-CRITICAL **: camel_session_add_service: assertion `uri_string != NULL' failed Segmentation fault If I start evolution with --disable-eplugin option evolution starts. I have tried to reset database with tracker-control --hard-reset and restart the computer but it doesn't help. Before I start evolution tracker-control command returns following result : Found 159 PIDs… Store: 15 Oct 2011, 19:53:03: ✗ Store - Unavailable Miners: 15 Oct 2011, 19:53:03: ✗ File System - Not running or is a disabled plugin 15 Oct 2011, 19:53:03: ✗ Applications - Not running or is a disabled plugin 15 Oct 2011, 19:53:03: ✗ Emails- Not running or is a disabled plugin When I start evolution tracker-control command returns following result : tracker-control Found 163 PIDs… Found process ID 2489 for 'tracker-store' Store: 15 Oct 2011, 19:53:24: ✓ Store - Idle Miners: 15 Oct 2011, 19:53:24: ✗ File System - Not running or is a disabled plugin 15 Oct 2011, 19:53:24: ✗ Applications - Not running or is a disabled plugin 15 Oct 2011, 19:53:24: 1 % Emails- Processing folder Inbox And shortly after that evolution dies. If I uninstall tracker-miner-evolution evolution works normally. So the problem is tracker-miner-evolution : Remove tracker-miner-evolution from command line : sudo dpkg -r tracker-miner-evolution So current workaround is uninstalling of tracker-miner-evolution. -- You received this bug notification because you are a member of Desktop Packages, which is subscribed to evolution in Ubuntu. https://bugs.launchpad.net/bugs/874629 Title: evolution crashes after upgrade to 11.10 Status in “evolution” package in Ubuntu: Confirmed Bug description: (evolution:3286): Tracker-DEBUG: Tracker Evolution plugin enabled (evolution:3286): Tracker-DEBUG: Tracker plugin creating new object... (evolution:3286): evolution-mail-CRITICAL **: mail_store_add: assertion `store_table != NULL' failed (evolution:3286): GLib-GObject-WARNING **: invalid unclassed pointer in cast to `CamelService' (evolution:3286): camel-CRITICAL **: camel_service_get_provider: assertion `CAMEL_IS_SERVICE (service)' failed (evolution:3286): camel-CRITICAL **: camel_service_get_camel_url: assertion `CAMEL_IS_SERVICE (service)' failed Speicherzugriffsfehler To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/874629/+subscriptions -- Mailing list: https://launchpad.net/~desktop-packages Post to : desktop-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~desktop-packages More help : https://help.launchpad.net/ListHelp