[Bug 1658016] Re: Intel AC7260 wireless (iwlwifi) stops working after computer sleep/wakeup
FYI - these updates arrived today - 2017-02-23 09:56:29 status installed libnm-util2:amd64 1.2.6-0ubuntu0.16.04.1 2017-02-23 09:56:29 status installed libnm-glib-vpn1:amd64 1.2.6-0ubuntu0.16.04.1 2017-02-23 09:56:29 status installed libnm-glib4:amd64 1.2.6-0ubuntu0.16.04.1 2017-02-23 09:56:29 status installed libnm0:amd64 1.2.6-0ubuntu0.16.04.1 2017-02-23 09:56:40 status installed linux-image-4.8.0-39-generic:amd64 4.8.0-39.42~16.04.1 2017-02-23 09:56:50 status installed linux-image-extra-4.8.0-39-generic:amd64 4.8.0-39.42~16.04.1 2017-02-23 09:56:50 status installed linux-image-generic-hwe-16.04:amd64 4.8.0.39.10 2017-02-23 09:56:50 status installed linux-headers-4.8.0-39:all 4.8.0-39.42~16.04.1 2017-02-23 09:56:50 status installed linux-headers-4.8.0-39-generic:amd64 4.8.0-39.42~16.04.1 2017-02-23 09:56:50 status installed linux-headers-generic-hwe-16.04:amd64 4.8.0.39.10 2017-02-23 09:56:50 status installed linux-generic-hwe-16.04:amd64 4.8.0.39.10 2017-02-23 09:56:51 status installed linux-libc-dev:amd64 4.4.0-64.85 2017-02-23 09:56:51 status installed network-manager:amd64 1.2.6-0ubuntu0.16.04.1 I disabled my workaround "service" and I've suspended the laptop couple of times today. It works properly now. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1658016 Title: Intel AC7260 wireless (iwlwifi) stops working after computer sleep/wakeup To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1658016/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1105132] Re: Backup operation not supported by backend
Hi all, I've just switched to 14.04 from 12.04. In the previous version I was doing backups to my FTP server. Now I've got the same problem as other users: DUPLICITY: INFO 11 DUPLICITY: . AsyncScheduler: running task synchronously (asynchronicity disabled) DUPLICITY: INFO 1 DUPLICITY: . Writing ftp://@192.168.x.x //duplicity-full.20140425T203823Z.vol1.difftar.gpg DUPLICITY: WARNING 1 DUPLICITY: . Attempt 1 failed: GError: Operation unsupported DUPLICITY: DEBUG 1 DUPLICITY: . Backtrace of previous error: Traceback (innermost last): DUPLICITY: . File "/usr/lib/python2.7/dist-packages/duplicity/backend.py", line 318, in iterate DUPLICITY: . return fn(*args, **kwargs) DUPLICITY: . File "/usr/lib/python2.7/dist-packages/duplicity/backends/giobackend.py", line 137, in copy_file DUPLICITY: . target.get_parse_name()) DUPLICITY: . File "/usr/lib/python2.7/dist-packages/duplicity/backends/giobackend.py", line 112, in handle_error DUPLICITY: . raise e DUPLICITY: . GError: Operation unsupported DUPLICITY: . -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1105132 Title: Backup operation not supported by backend To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/deja-dup/+bug/1105132/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1510344] Re: Keyboard Backlight Turns on at boot
Dell E7470, the latest BIOS, kernel 4.8. $uname -a Linux E7470 4.8.0-20-generic #22~16.04.1-Ubuntu SMP Mon Oct 3 03:19:50 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux $ dpkg -s upower | grep -i 'status\|version' Status: install ok installed Version: 0.99.4-2ubuntu0.3 $ dpkg -s unity-settings-daemon | grep -i 'status\|version' Status: install ok installed Version: 15.04.1+16.04.20160701-0ubuntu1 The same behaviour as #92 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1510344 Title: Keyboard Backlight Turns on at boot To manage notifications about this bug go to: https://bugs.launchpad.net/dell-sputnik/+bug/1510344/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1510344] Re: Keyboard Backlight Turns on at boot
I've tried Billiot's approach (#98) - no luck either. All is good during the boot. But just a sec before displaying the login screen, the keyboard lits to maximum and stay like this. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1510344 Title: Keyboard Backlight Turns on at boot To manage notifications about this bug go to: https://bugs.launchpad.net/dell-sputnik/+bug/1510344/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1658016] Re: Intel AC7260 wireless (iwlwifi) stops working after computer sleep/wakeup
I can confirm the same behaviour $ uname -a Linux E7470 4.8.0-36-generic #36~16.04.1-Ubuntu SMP Sun Feb 5 09:39:57 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux My workaround: Create a file /etc/systemd/system/wifi-resume.service #/etc/systemd/system/wifi-resume.service #sudo systemctl enable wifi-resume.service [Unit] Description=Restart networkmanager at resume After=suspend.target After=hibernate.target After=hybrid-sleep.target [Service] Type=oneshot ExecStart=/bin/systemctl stop network-manager.service ExecStart=/bin/systemctl start network-manager.service ExecStart=/bin/sleep 3 ExecStart=/sbin/modprobe -r iwlwifi ExecStart=/sbin/modprobe iwlwifi [Install] WantedBy=suspend.target WantedBy=hibernate.target WantedBy=hybrid-sleep.target to enable the service $sudo systemctl enable wifi-resume.service to disable the service $sudo systemctl disable wifi-resume.service and remove the file -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1658016 Title: Intel AC7260 wireless (iwlwifi) stops working after computer sleep/wakeup To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1658016/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1583861] Re: Keyboard backlight isn't properly restored after idle on systems with hardwired configuration
Hi all, I've got Dell Latitude E7470: #uname -a Linux E7470 4.4.0-31-generic #50-Ubuntu SMP Wed Jul 13 00:07:12 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux #dpkg -s upower | grep -i 'status\|version' Status: install ok installed Version: 0.99.4-2ubuntu0.3 #dpkg -s unity-settings-daemon | grep -i 'status\|version' Status: install ok installed Version: 15.04.1+16.04.20160701-0ubuntu1 My Keyboard lights all time (doesn't time-out). I can disable it by FN+F10, but it will light again after boot/resume/unlock-weak-up. When I boot to BIOS all is OK. It time-outs after 10 seconds. Should I perform any additional steps (i.e. packages reconfiguration) ? Regards Grzesiek -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1583861 Title: Keyboard backlight isn't properly restored after idle on systems with hardwired configuration To manage notifications about this bug go to: https://bugs.launchpad.net/dell-sputnik/+bug/1583861/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1510344] Re: Keyboard Backlight Turns on at boot
E7470 - yes still affected - look here bug #1583861 and check my comments #22 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1510344 Title: Keyboard Backlight Turns on at boot To manage notifications about this bug go to: https://bugs.launchpad.net/dell-sputnik/+bug/1510344/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1510344] Re: Keyboard Backlight Turns on at boot
Thanks Cristi, This finally "fixed" auto backlit on my E7470 (after half a year). Next - disappearing sound card and built-in LTE modem, not working mute button in 4.8, dying WiFI card. You gotta love Ubuntu on Skylake ;-) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1510344 Title: Keyboard Backlight Turns on at boot To manage notifications about this bug go to: https://bugs.launchpad.net/dell-sputnik/+bug/1510344/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1449005] Re: trim does not work with Samsung 840 EVO after firmware update (EXT0DB6Q)
Do the procedure form #14. As far as I know the "fix" does the same but on a different level. TRIM in my EVO 840 works now. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1449005 Title: trim does not work with Samsung 840 EVO after firmware update (EXT0DB6Q) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/fstrim/+bug/1449005/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1175947] Re: gvfs-copy --preserve doesn't work with MTP devices
Hi all, It doesn’t work in some cases. Thanks to courtesy of the Google programmers and their lack of support. Please look at setLastModified() issue: https://code.google.com/p/android/issues/detail?id=18624 Regards Gregory ** Bug watch added: code.google.com/p/android/issues #18624 http://code.google.com/p/android/issues/detail?id=18624 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1175947 Title: gvfs-copy --preserve doesn't work with MTP devices To manage notifications about this bug go to: https://bugs.launchpad.net/gvfs/+bug/1175947/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1175947] Re: gvfs-copy --preserve doesn't work with MTP devices
Andrew could you test copying files inside phone and check timestamps i.e.: - Internal <> Internal, - Internal <> SD Card - Internal <> USB (OTG). Does any of your devices has an encrypted internal partition ? As far as I can recall there can be these issues regarding timestamps: - gvfs (Internal, SD, USB) - FUSE implementation (SD and USB) - Encryption (Internal, SD, USB) My S4 had these issues since 4.2. Happy to hear that it works for you :-). -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1175947 Title: gvfs-copy --preserve doesn't work with MTP devices To manage notifications about this bug go to: https://bugs.launchpad.net/gvfs/+bug/1175947/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1175947] Re: gvfs-copy --preserve doesn't work with MTP devices
Hi all, Will this fix land in 14.04 ? Regards Gregory -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1175947 Title: gvfs-copy --preserve doesn't work with MTP devices To manage notifications about this bug go to: https://bugs.launchpad.net/gvfs/+bug/1175947/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1400626] Re: Please backport xtrans, libdrm, x11proto-{fonts, core} packages for 14.04.2
@16 Hi Timo, Try: sudo apt-get install libgl1-mesa-glx-lts-utopic xserver-xorg-lts-utopic xserver-xorg-core-lts-utopic Reagards -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1400626 Title: Please backport xtrans, libdrm, x11proto-{fonts,core} packages for 14.04.2 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/libdrm/+bug/1400626/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 997758] Re: gnome battery indicator missing in 12.04
Hi, Odd thing, Your scripts are using /proc/acpi/ In my case there is no such a folder. Mine Ubuntu 12.04 has information about battery in different files at /sys/class/power_supply/BAT0/. I've found this topic. They are using the ACPI output. https://bbs.archlinux.org/viewtopic.php?id=127387 I'm not a programer but here is mine script. Beware sometimes it has a problem after resuming from the standby. I do not know why :-(. ** Attachment added: "A little script for battery status" https://bugs.launchpad.net/ubuntu/+source/indicator-power/+bug/997758/+attachment/3637078/+files/battery.sh -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/997758 Title: gnome battery indicator missing in 12.04 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/indicator-power/+bug/997758/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 606238] Re: synaptic touchpad not recognized on dell latitude e6510
*** This bug is a duplicate of bug 550625 *** https://bugs.launchpad.net/bugs/550625 Hi, I have E6410 and Ubuntu 10.10 kernel 2.6.35-24-generic #42-Ubuntu SMP Thu Dec 2 02:41:37 UTC 2010 x86_64 GNU/Linux So far I have found this: https://patchwork.kernel.org/patch/350841/ I assume it is the best option so far. I am totally new with patching. Could anyone tell me if this patch will work in Ubuntu ? If yes, how to apply this patch (step by step guide is preferred ;-) ? Cheers Grzesiek -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/606238 Title: synaptic touchpad not recognized on dell latitude e6510 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 550625] Re: Alps touchpad is recognized but synaptics clients and scrolling do not work
Hi You should try this kernel: http://www.ubuntuupdates.org/package_metas?exact_match=1&name=linux-image-2.6.38-1-generic With this version touchpad is working on my E6410 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/550625 Title: Alps touchpad is recognized but synaptics clients and scrolling do not work -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs