[Kernel-packages] [Bug 1803942] Re: System randomly hangs during suspend when mei_wdt is loaded
I commented out this patch of 876dcb and cannot reproduce the issue afterward. diff --git a/drivers/base/dd.c b/drivers/base/dd.c index 2c964f5..37c0105 100644 --- a/drivers/base/dd.c +++ b/drivers/base/dd.c @@ -868,6 +868,13 @@ static void __device_release_driver(struct device *dev, struct device *parent) dev->bus->remove(dev); else if (drv->remove) drv->remove(dev); + /* +* A concurrent invocation of the same function might +* have released the driver successfully while this one +* was waiting, so check for that. +*/ + if (dev->driver != drv) + return; device_links_driver_cleanup(dev); dma_deconfigure(dev); -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803942 Title: System randomly hangs during suspend when mei_wdt is loaded Status in linux package in Ubuntu: Confirmed Bug description: Problem description: System randomly hangs during suspend when mei_wdt is loaded. Platform: Intel Dawson Canyon I5 (NUC7i5DNHE) and I7 (NUC7i7DNHE) Test procedure: 1. Install Ubuntu 18.04 and do apt full-upgrade 2. Enable mei_wdt: $ sudo modprobe mei_wdt 3. Do system S3 test: $ sudo systemctl suspend or $ sudo rtcwake -v -m mem -s 15 4. Afterward, I noticed that somehow system will hang during suspend/resume. Expect result: Suspend/resume won't impact system. Actual result: System will hang during S3 test. Additional info: - BIOS version: V57 - Another i3 platform (NUC7i3DNHNC) doesn't have this issue. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803942/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803942] Re: System randomly hangs during suspend when mei_wdt is loaded
** Changed in: linux (Ubuntu) Status: Incomplete => Confirmed -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803942 Title: System randomly hangs during suspend when mei_wdt is loaded Status in linux package in Ubuntu: Confirmed Bug description: Problem description: System randomly hangs during suspend when mei_wdt is loaded. Platform: Intel Dawson Canyon I5 (NUC7i5DNHE) and I7 (NUC7i7DNHE) Test procedure: 1. Install Ubuntu 18.04 and do apt full-upgrade 2. Enable mei_wdt: $ sudo modprobe mei_wdt 3. Do system S3 test: $ sudo systemctl suspend or $ sudo rtcwake -v -m mem -s 15 4. Afterward, I noticed that somehow system will hang during suspend/resume. Expect result: Suspend/resume won't impact system. Actual result: System will hang during S3 test. Additional info: - BIOS version: V57 - Another i3 platform (NUC7i3DNHNC) doesn't have this issue. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803942/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803942] Re: System randomly hangs during suspend when mei_wdt is loaded
I tried mainline kernel 4.20-rc2, 4.18, 4.17, 4.16 and 4.15. They all passed a 50 run test. To validate when the issue is introduced, I installed several Ubuntu kernel packages and address the issue/regression happens between 4.15.0-34 and 4.15.0-36. Finished the kernel bisect and probably found the first bad commit. $ git bisect log # bad: [fd01374000c83b59d3ce234fbb970cb91404bd42] UBUNTU: Ubuntu-4.15.0-36.39 # good: [ffaad0a9f46742f6d71af975a6a061ffe6963aca] UBUNTU: Ubuntu-4.15.0-34.37 git bisect start 'Ubuntu-4.15.0-36.39' 'Ubuntu-4.15.0-34.37' # good: [003ae88ae88d48643e71dc69c18d4eda598339d5] Revert "UBUNTU: SAUCE: net: hns3: Fix for VF mailbox receiving unknown message" git bisect good 003ae88ae88d48643e71dc69c18d4eda598339d5 # good: [d3d4b20788eee72dcb1ed5ace7dbee6aafbe65cf] net: hns3: Fix for mac pause not disable in pfc mode git bisect good d3d4b20788eee72dcb1ed5ace7dbee6aafbe65cf # good: [8e499f213175b65bcc08a3c685ea6717e7668cec] arm64: ssbd: Introduce thread flag to control userspace mitigation git bisect good 8e499f213175b65bcc08a3c685ea6717e7668cec # good: [11cdaf61c1986ea682398b48e238fd915393b2e6] KVM: PPC: Check if IOMMU page is contained in the pinned physical page git bisect good 11cdaf61c1986ea682398b48e238fd915393b2e6 # good: [db6800337d38a5b2adbaa78fcb2c29936e1d] s390: fix br_r1_trampoline for machines without exrl git bisect good db6800337d38a5b2adbaa78fcb2c29936e1d # good: [f1f016ed54582502d59de991ddbecfe2373722c0] x86/speculation/l1tf: Increase l1tf memory limit for Nehalem+ git bisect good f1f016ed54582502d59de991ddbecfe2373722c0 # good: [f1f016ed54582502d59de991ddbecfe2373722c0] x86/speculation/l1tf: Increase l1tf memory limit for Nehalem+ git bisect good f1f016ed54582502d59de991ddbecfe2373722c0 # bad: [cb3b0751997c8bd45c76a7401e2edb019cdaaab3] UBUNTU: Start new release git bisect bad cb3b0751997c8bd45c76a7401e2edb019cdaaab3 # bad: [cb3b0751997c8bd45c76a7401e2edb019cdaaab3] UBUNTU: Start new release git bisect bad cb3b0751997c8bd45c76a7401e2edb019cdaaab3 # bad: [d5bad4136d14cda66cb7c06b10b80c64ae695c78] UBUNTU: Ubuntu-4.15.0-35.38 git bisect bad d5bad4136d14cda66cb7c06b10b80c64ae695c78 # bad: [876dcb5f4576934a1a11b091b40ce548f048340e] UBUNTU: SAUCE: vfio -- release device lock before userspace requests git bisect bad 876dcb5f4576934a1a11b091b40ce548f048340e # first bad commit: [876dcb5f4576934a1a11b091b40ce548f048340e] UBUNTU: SAUCE: vfio -- release device lock before userspace requests -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803942 Title: System randomly hangs during suspend when mei_wdt is loaded Status in linux package in Ubuntu: Confirmed Bug description: Problem description: System randomly hangs during suspend when mei_wdt is loaded. Platform: Intel Dawson Canyon I5 (NUC7i5DNHE) and I7 (NUC7i7DNHE) Test procedure: 1. Install Ubuntu 18.04 and do apt full-upgrade 2. Enable mei_wdt: $ sudo modprobe mei_wdt 3. Do system S3 test: $ sudo systemctl suspend or $ sudo rtcwake -v -m mem -s 15 4. Afterward, I noticed that somehow system will hang during suspend/resume. Expect result: Suspend/resume won't impact system. Actual result: System will hang during S3 test. Additional info: - BIOS version: V57 - Another i3 platform (NUC7i3DNHNC) doesn't have this issue. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803942/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1777398] Missing required logs.
This bug is missing log files that will aid in diagnosing the problem. While running an Ubuntu kernel (not a mainline or third-party kernel) please enter the following command in a terminal window: apport-collect 1777398 and then change the status of the bug to 'Confirmed'. If, due to the nature of the issue you have encountered, you are unable to run this command, please add a comment stating that fact and change the bug status to 'Confirmed'. This change has been made by an automated script, maintained by the Ubuntu Kernel Team. ** Changed in: linux (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1777398 Title: dm thin block allocation failure Status in linux package in Ubuntu: Incomplete Bug description: When using the bionic kernel (hwe-edge) on xenial we randomly trigger a kernel bug when creating a thin provisioned lvm volume. kernel: [146487.421278] [ cut here ] kernel: [146487.421281] kernel BUG at /build/linux-hwe-edge-eBL7So/linux-hwe-edge-4.15.0/drivers/md/persistent-data/dm-space-map-disk.c:178! kernel: [146487.421435] invalid opcode: [#1] SMP PTI kernel: [146487.421528] Modules linked in: dm_snapshot cmac arc4 md4 nls_utf8 cifs ccm fscache dccp_diag dccp tcp_diag udp_diag inet_diag unix_diag af_packet_diag netlink_diag xt_CHECKSUM xt_nat iptable_nat nf_nat_ipv4 nf_conntrack_ipv6 nf_defrag_ipv6 ip6table_filter ip6_tables xt_tcpudp nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack iptable_filter veth dummy bridge iptable_mangle xt_CT iptable_raw ip_tables x_tables vhost_net vhost tap ipmi_ssif dm_thin_pool dm_persistent_data dm_bio_prison dm_bufio intel_rapl skx_edac x86_pkg_temp_thermal intel_powerclamp coretemp kvm_intel kvm irqbypass crct10dif_pclmul crc32_pclmul ghash_clmulni_intel pcbc aesni_intel aes_x86_64 crypto_simd glue_helper cryptd intel_cstate intel_rapl_perf lpc_ich ioatdma shpchp dca acpi_power_meter acpi_pad mac_hid ipmi_si ipmi_devintf ipmi_msghandler kernel: [146487.421859] nf_nat_ftp nf_conntrack_ftp nf_nat_sip nf_conntrack_sip nf_nat_pptp nf_conntrack_pptp nf_nat_proto_gre nf_nat nf_conntrack_proto_gre nf_conntrack tcp_htcp 8021q garp mrp stp llc bonding autofs4 btrfs zstd_compress raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq libcrc32c raid0 multipath linear raid10 raid1 i2c_algo_bit ttm i40e drm_kms_helper syscopyarea ptp sysfillrect pps_core sysimgblt fb_sys_fops nvme ahci drm nvme_core libahci wmi kernel: [146487.422080] CPU: 13 PID: 2274450 Comm: kworker/u576:1 Not tainted 4.15.0-22-generic #24~16.04.1-Ubuntu kernel: [146487.422211] Hardware name: Quanta Cloud Technology Inc. QuantaGrid D52B-1U/S5B-MB (LBG-4), BIOS 3A10.03 11/17/2017 kernel: [146487.422349] Workqueue: dm-thin do_worker [dm_thin_pool] kernel: [146487.422443] RIP: 0010:sm_disk_new_block+0xa1/0xb0 [dm_persistent_data] kernel: [146487.422536] RSP: 0018:9efc5e4d3c68 EFLAGS: 00010297 kernel: [146487.422626] RAX: RBX: 88b122d34000 RCX: kernel: [146487.422749] RDX: 8868d8631e00 RSI: 0282 RDI: 88b137691200 kernel: [146487.422872] RBP: 9efc5e4d3c90 R08: R09: 9efc5e4d39f0 kernel: [146487.422994] R10: 9efc5e4d38f8 R11: 9efc5e4d3b48 R12: kernel: [146487.423117] R13: 9efc5e4d3d40 R14: 9efc5e4d3d40 R15: 882de1769fa0 kernel: [146487.423240] FS: () GS:8868ee54() knlGS: kernel: [146487.423366] CS: 0010 DS: ES: CR0: 80050033 kernel: [146487.423457] CR2: 7f0f30b083c0 CR3: 002ab260a004 CR4: 007626e0 kernel: [146487.423580] DR0: DR1: DR2: kernel: [146487.423703] DR3: DR6: fffe0ff0 DR7: 0400 kernel: [146487.423826] PKRU: 5554 kernel: [146487.423906] Call Trace: kernel: [146487.423989] dm_pool_alloc_data_block+0x44/0x60 [dm_thin_pool] kernel: [146487.424082] alloc_data_block.isra.53+0x6f/0x180 [dm_thin_pool] kernel: [146487.424175] process_cell+0x2cf/0x4d0 [dm_thin_pool] kernel: [146487.424267] ? mempool_alloc_slab+0x15/0x20 kernel: [146487.424354] ? mempool_alloc+0x73/0x180 kernel: [146487.424440] ? process_prepared+0x8d/0xc0 [dm_thin_pool] kernel: [146487.424531] do_worker+0x25c/0x8b0 [dm_thin_pool] kernel: [146487.424621] process_one_work+0x14d/0x410 kernel: [146487.424708] ? process_discard_cell_passdown+0x1e0/0x1e0 [dm_thin_pool] kernel: [146487.424802] ? process_one_work+0x14d/0x410 kernel: [146487.424888] worker_thread+0x4b/0x460 kernel: [146487.424973] kthread+0x105/0x140 kernel: [146487.425055] ? process_one_work+0x410/0x410 kernel: [146487.425142] ? kthread_associate_blkcg+0xa0/0xa0
[Kernel-packages] [Bug 1803942] Missing required logs.
This bug is missing log files that will aid in diagnosing the problem. While running an Ubuntu kernel (not a mainline or third-party kernel) please enter the following command in a terminal window: apport-collect 1803942 and then change the status of the bug to 'Confirmed'. If, due to the nature of the issue you have encountered, you are unable to run this command, please add a comment stating that fact and change the bug status to 'Confirmed'. This change has been made by an automated script, maintained by the Ubuntu Kernel Team. ** Changed in: linux (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803942 Title: System randomly hangs during suspend when mei_wdt is loaded Status in linux package in Ubuntu: Incomplete Bug description: Problem description: System randomly hangs during suspend when mei_wdt is loaded. Platform: Intel Dawson Canyon I5 (NUC7i5DNHE) and I7 (NUC7i7DNHE) Test procedure: 1. Install Ubuntu 18.04 and do apt full-upgrade 2. Enable mei_wdt: $ sudo modprobe mei_wdt 3. Do system S3 test: $ sudo systemctl suspend or $ sudo rtcwake -v -m mem -s 15 4. Afterward, I noticed that somehow system will hang during suspend/resume. Expect result: Suspend/resume won't impact system. Actual result: System will hang during S3 test. Additional info: - BIOS version: V57 - Another i3 platform (NUC7i3DNHNC) doesn't have this issue. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803942/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803942] [NEW] System randomly hangs during suspend when mei_wdt is loaded
Public bug reported: Problem description: System randomly hangs during suspend when mei_wdt is loaded. Platform: Intel Dawson Canyon I5 (NUC7i5DNHE) and I7 (NUC7i7DNHE) Test procedure: 1. Install Ubuntu 18.04 and do apt full-upgrade 2. Enable mei_wdt: $ sudo modprobe mei_wdt 3. Do system S3 test: $ sudo systemctl suspend or $ sudo rtcwake -v -m mem -s 15 4. Afterward, I noticed that somehow system will hang during suspend/resume. Expect result: Suspend/resume won't impact system. Actual result: System will hang during S3 test. Additional info: - BIOS version: V57 - Another i3 platform (NUC7i3DNHNC) doesn't have this issue. ** Affects: linux (Ubuntu) Importance: Undecided Status: Incomplete -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803942 Title: System randomly hangs during suspend when mei_wdt is loaded Status in linux package in Ubuntu: Incomplete Bug description: Problem description: System randomly hangs during suspend when mei_wdt is loaded. Platform: Intel Dawson Canyon I5 (NUC7i5DNHE) and I7 (NUC7i7DNHE) Test procedure: 1. Install Ubuntu 18.04 and do apt full-upgrade 2. Enable mei_wdt: $ sudo modprobe mei_wdt 3. Do system S3 test: $ sudo systemctl suspend or $ sudo rtcwake -v -m mem -s 15 4. Afterward, I noticed that somehow system will hang during suspend/resume. Expect result: Suspend/resume won't impact system. Actual result: System will hang during S3 test. Additional info: - BIOS version: V57 - Another i3 platform (NUC7i3DNHNC) doesn't have this issue. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803942/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1777398] Re: dm thin block allocation failure
This issue is still present. Possibly fixed by upstream commit https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/drivers/md?id=a685557fbbc3122ed11e8ad3fa63a11ebc5de8c3 https://www.redhat.com/archives/dm-devel/2018-April/msg00022.html kernel: [8860597.921484] kernel BUG at /build/linux-hwe-okqLve/linux-hwe-4.15.0/drivers/md/persistent-data/dm-space-map-disk.c:178! kernel: [8860597.921579] invalid opcode: [#1] SMP PTI kernel: [8860597.921640] Modules linked in: cpuid cmac arc4 md4 nls_utf8 cifs ccm fscache dm_snapshot dccp_diag dccp tcp_diag udp_diag inet_diag unix_diag af_packet_diag netlink_diag xt_CHECKSUM xt_nat iptable_nat nf_nat_ipv4 iptable_mangle xt_CT iptable_raw veth dummy nf_conntrack_ipv4 nf_defrag_ipv4 bridge iptable_filter ip_tables xt_tcpudp nf_conntrack_ipv6 nf_defrag_ipv6 xt_conntrack ip6table_filter ip6_tables x_tables vhost_net vhost tap intel_rapl skx_edac x86_pkg_temp_thermal intel_powerclamp coretemp dm_thin_pool kvm_intel dm_persistent_data dm_bio_prison kvm dm_bufio irqbypass crct10dif_pclmul crc32_pclmul ghash_clmulni_intel pcbc aesni_intel aes_x86_64 crypto_simd ipmi_ssif glue_helper cryptd intel_cstate intel_rapl_perf lpc_ich shpchp ioatdma dca acpi_pad acpi_power_meter mac_hid ipmi_si ipmi_devintf kernel: [8860597.921973] ipmi_msghandler nf_nat_ftp nf_conntrack_ftp nf_nat_sip nf_conntrack_sip nf_nat_pptp nf_conntrack_pptp nf_nat_proto_gre nf_nat nf_conntrack_proto_gre nf_conntrack tcp_htcp 8021q garp mrp stp llc bonding autofs4 btrfs zstd_compress raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq libcrc32c raid0 multipath linear raid1 raid10 i40e i2c_algo_bit ttm ptp drm_kms_helper pps_core syscopyarea nvme sysfillrect sysimgblt fb_sys_fops nvme_core drm ahci libahci wmi kernel: [8860597.922282] CPU: 38 PID: 1917945 Comm: kworker/u128:2 Not tainted 4.15.0-31-generic #33~16.04.1-Ubuntu kernel: [8860597.922413] Hardware name: Quanta Cloud Technology Inc. QuantaGrid D52B-1U/S5B-MB (LBG-4), BIOS 3A10.10 02/12/2018 kernel: [8860597.922554] Workqueue: dm-thin do_worker [dm_thin_pool] kernel: [8860597.922650] RIP: 0010:sm_disk_new_block+0xa1/0xb0 [dm_persistent_data] kernel: [8860597.922747] RSP: 0018:bfa19dc7fc68 EFLAGS: 00010297 kernel: [8860597.922839] RAX: RBX: 9e6c63f0c000 RCX: kernel: [8860597.922962] RDX: 9e6c3768d940 RSI: 0282 RDI: 9eb4dc4f3400 kernel: [8860597.923086] RBP: bfa19dc7fc90 R08: R09: bfa19dc7f9f0 kernel: [8860597.923211] R10: bfa19dc7f8f8 R11: bfa19dc7fb48 R12: kernel: [8860597.923335] R13: bfa19dc7fd40 R14: bfa19dc7fd40 R15: 9e47cb3460e0 kernel: [8860597.923460] FS: () GS:9e6cb038() knlGS: kernel: [8860597.923587] CS: 0010 DS: ES: CR0: 80050033 kernel: [8860597.923678] CR2: 009cfd20 CR3: 008d2400a003 CR4: 007626e0 kernel: [8860597.923802] DR0: DR1: DR2: kernel: [8860597.923926] DR3: DR6: fffe0ff0 DR7: 0400 kernel: [8860597.924049] PKRU: 5554 kernel: [8860597.924130] Call Trace: kernel: [8860597.924217] dm_pool_alloc_data_block+0x44/0x60 [dm_thin_pool] kernel: [8860597.924310] alloc_data_block.isra.53+0x6f/0x180 [dm_thin_pool] kernel: [8860597.924404] process_cell+0x2cf/0x4d0 [dm_thin_pool] kernel: [8860597.924498] ? mempool_alloc_slab+0x15/0x20 kernel: [8860597.924585] ? mempool_alloc+0x73/0x180 kernel: [8860597.924671] ? process_prepared+0x8d/0xc0 [dm_thin_pool] kernel: [8860597.924762] do_worker+0x25c/0x8b0 [dm_thin_pool] kernel: [8860597.924855] process_one_work+0x14d/0x410 kernel: [8860597.924942] ? process_discard_cell_passdown+0x1e0/0x1e0 [dm_thin_pool] kernel: [8860597.925037] ? process_one_work+0x14d/0x410 kernel: [8860597.925124] worker_thread+0x4b/0x460 kernel: [8860597.925210] kthread+0x105/0x140 kernel: [8860597.925294] ? process_one_work+0x410/0x410 kernel: [8860597.925381] ? kthread_associate_blkcg+0xa0/0xa0 kernel: [8860597.925473] ret_from_fork+0x35/0x40 kernel: [8860597.925558] Code: c0 01 48 89 83 20 22 00 00 49 8b 75 00 e8 68 f7 ff ff 85 c0 75 10 83 7d dc 01 75 0f 48 83 83 28 22 00 00 01 eb af 41 89 c4 eb aa <0f> 0b e8 08 0c bf d0 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 55. kernel: [8860597.925779] RIP: sm_disk_new_block+0xa1/0xb0 [dm_persistent_data] RSP: bfa19dc7fc68 kernel: [8860597.925961] ---[ end trace dfde9f8a30119f50 ]--- ** Changed in: linux (Ubuntu) Status: Expired => New -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1777398 Title: dm thin block allocation failure Status in linux package in Ubuntu: Incomplete Bug description: When using the bionic kernel (hwe-edge) on xenial we randomly trigger a ker
[Kernel-packages] [Bug 1769480] Re: Ubuntu 18.04 - networkmanager dont show other wifi after few minutes
I still don't see any log attached here. Maybe try tweaking powersaving knob in NetworkManger config file. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1769480 Title: Ubuntu 18.04 - networkmanager dont show other wifi after few minutes Status in linux package in Ubuntu: Incomplete Status in network-manager package in Ubuntu: Confirmed Bug description: how to reproduce: dd the iso to an usb drive and boot from it. List all wifi devices in live-mode and connect to one of it. Use the web for some minutes. Open up the wifi on the top right again and list the available networks - it dont show any others any more. Just the one you are connected to. How to overcome the bug: put the computer into airplane mode and go away from airplane mode again. Or: disconnect the usb wifi device and connect it again. Does this bug exist also on installed 18.04 and updated to last (apt update, apt upgrade, apt dist-upgrade)? Yes What wifi device is been used: ieee80211 phy0: rt2x00_set_rt: Info - RT chipset 3572, rev 0223 detected ieee80211 phy0: rt2x00_set_rf: Info - RF chipset 0009 detected ieee80211 phy0: Selected rate control algorithm 'minstrel_ht' usbcore: registered new interface driver rt2800usb ... ieee80211 phy0: rt2x00lib_request_firmware: Info - Loading firmware file 'rt2870.bin' ieee80211 phy0: rt2x00lib_request_firmware: Info - Firmware detected - version: 0.36 uname -a Linux t 4.15.0-20-generic #21-Ubuntu SMP Tue Apr 24 06:16:15 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1769480/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1802283] Re: system freezes
Does the Firefox crashing only happens when the system is docked? -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1802283 Title: system freezes Status in linux package in Ubuntu: Incomplete Bug description: My system freezes once every second day or so. ProblemType: Bug DistroRelease: Ubuntu 18.10 Package: linux-image-4.18.0-10-generic 4.18.0-10.11 ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12 Uname: Linux 4.18.0-10-generic x86_64 ApportVersion: 2.20.10-0ubuntu13 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: jnns 2519 F pulseaudio /dev/snd/controlC0: jnns 2519 F pulseaudio CurrentDesktop: GNOME Date: Thu Nov 8 12:07:32 2018 HibernationDevice: RESUME=UUID=18edd09d-0a58-4464-accb-11ff57fc4327 InstallationDate: Installed on 2018-08-05 (95 days ago) InstallationMedia: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 (20180725) MachineType: LENOVO 20KGS5DU00 ProcEnviron: TERM=xterm-256color PATH=(custom, no user) XDG_RUNTIME_DIR= LANG=de_DE.UTF-8 SHELL=/usr/bin/fish ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.18.0-10-generic root=/dev/mapper/ubuntu--vg-root ro quiet splash mem_sleep_default=deep vt.handoff=1 RelatedPackageVersions: linux-restricted-modules-4.18.0-10-generic N/A linux-backports-modules-4.18.0-10-generic N/A linux-firmware 1.175 SourcePackage: linux UpgradeStatus: Upgraded to cosmic on 2018-10-10 (29 days ago) dmi.bios.date: 09/17/2018 dmi.bios.vendor: LENOVO dmi.bios.version: N23ET56W (1.31 ) dmi.board.asset.tag: Not Available dmi.board.name: 20KGS5DU00 dmi.board.vendor: LENOVO dmi.board.version: Not Defined dmi.chassis.asset.tag: No Asset Information dmi.chassis.type: 10 dmi.chassis.vendor: LENOVO dmi.chassis.version: None dmi.modalias: dmi:bvnLENOVO:bvrN23ET56W(1.31):bd09/17/2018:svnLENOVO:pn20KGS5DU00:pvrThinkPadX1Carbon6th:rvnLENOVO:rn20KGS5DU00:rvrNotDefined:cvnLENOVO:ct10:cvrNone: dmi.product.family: ThinkPad X1 Carbon 6th dmi.product.name: 20KGS5DU00 dmi.product.sku: LENOVO_MT_20KG_BU_Think_FM_ThinkPad X1 Carbon 6th dmi.product.version: ThinkPad X1 Carbon 6th dmi.sys.vendor: LENOVO To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1802283/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803939] Re: cloud-init.service dependency is missing on 10.3.5 open-vm-tools service
change to open-vm-tools package ** Package changed: linux (Ubuntu) => open-vm-tools (Ubuntu) -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803939 Title: cloud-init.service dependency is missing on 10.3.5 open-vm-tools service Status in open-vm-tools package in Ubuntu: New Bug description: Hi there, Found on version 10.3.5, the cloud-init.service dependency is NOT in open-vm-tools.service. Want to check with you if it’s removed on purpose? and what’s the reason of removing it. The cloud-init.service dependency was adding “Before=cloud-init-local.service” under [Unit] section of open-vm-tools.service file. Thanks, Pengpeng To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/open-vm-tools/+bug/1803939/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803939] [NEW] cloud-init.service dependency is missing on 10.3.5 open-vm-tools service
Public bug reported: Hi there, Found on version 10.3.5, the cloud-init.service dependency is NOT in open-vm-tools.service. Want to check with you if it’s removed on purpose? and what’s the reason of removing it. The cloud-init.service dependency was adding “Before=cloud-init-local.service” under [Unit] section of open-vm-tools.service file. Thanks, Pengpeng ** Affects: open-vm-tools (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803939 Title: cloud-init.service dependency is missing on 10.3.5 open-vm-tools service Status in open-vm-tools package in Ubuntu: New Bug description: Hi there, Found on version 10.3.5, the cloud-init.service dependency is NOT in open-vm-tools.service. Want to check with you if it’s removed on purpose? and what’s the reason of removing it. The cloud-init.service dependency was adding “Before=cloud-init-local.service” under [Unit] section of open-vm-tools.service file. Thanks, Pengpeng To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/open-vm-tools/+bug/1803939/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1802558] Re: linux-aws: 4.15.0-1028.29 -proposed tracker
** Changed in: kernel-sru-workflow/promote-to-proposed Status: New => Confirmed ** Tags added: block-proposed-bionic ** Tags added: block-proposed ** Description changed: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- + boot-testing-requested: true kernel-stable-master-bug: 1803592 phase: Uploaded reason: - promote-to-proposed: Builds not complete + promote-to-proposed: Ready for review -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux-aws in Ubuntu. https://bugs.launchpad.net/bugs/1802558 Title: linux-aws: 4.15.0-1028.29 -proposed tracker Status in Kernel SRU Workflow: In Progress Status in Kernel SRU Workflow automated-testing series: New Status in Kernel SRU Workflow certification-testing series: Invalid Status in Kernel SRU Workflow prepare-package series: Fix Released Status in Kernel SRU Workflow prepare-package-meta series: Fix Released Status in Kernel SRU Workflow promote-to-proposed series: Confirmed Status in Kernel SRU Workflow promote-to-security series: New Status in Kernel SRU Workflow promote-to-updates series: New Status in Kernel SRU Workflow regression-testing series: New Status in Kernel SRU Workflow security-signoff series: New Status in Kernel SRU Workflow snap-release-to-beta series: New Status in Kernel SRU Workflow snap-release-to-candidate series: New Status in Kernel SRU Workflow snap-release-to-edge series: New Status in Kernel SRU Workflow snap-release-to-stable series: Invalid Status in Kernel SRU Workflow upload-to-ppa series: New Status in Kernel SRU Workflow verification-testing series: New Status in linux-aws package in Ubuntu: Invalid Status in linux-aws source package in Bionic: Confirmed Bug description: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1803592 phase: Uploaded reason: promote-to-proposed: Ready for review To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1802558/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803929] UdevDb.txt
apport information ** Attachment added: "UdevDb.txt" https://bugs.launchpad.net/bugs/1803929/+attachment/5214102/+files/UdevDb.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803929 Title: Summary: Kernel bug (unhandled paging request) on "udisksctl power- off" Status in linux package in Ubuntu: Confirmed Bug description: lsb_release -rd Description: Ubuntu 16.04.5 LTS Release: 16.04 uname -a Linux metabox 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux Steps (1) to reproduce: 1) Plug in a USB3 hard drive. 2) Right click on launcher icon. 3) Select "Safely Remove". After finding this: https://askubuntu.com/a/532691 ...the following steps also reproduce the problem. Steps (2) to reproduce: 1) Plugin in a USB3 hard drive. 2) udisksctl unmount -b /dev/sdXY 3) udisksctl power-off -b /dev/sdX System completely locks and becomes unresponsive, such that even the Magic SysRq key combination does nothing. Most of the time the fans on my laptop go crazy (so the CPU must get stuck in some loop), but once they did not and the system was just locked (without the fans going nuts). I can't get a textual copy of the kernel bug log (because I have to do a hard reset to regain control of the system and the output doesn't get flushed to disk), but I did manage to get a photo of some of it (please refer to attachment). --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC1D0p: matt 2754 F...m pulseaudio /dev/snd/controlC1: matt 2754 F pulseaudio /dev/snd/controlC0: matt 2754 F pulseaudio CurrentDesktop: Unity DistroRelease: Ubuntu 16.04 EcryptfsInUse: Yes HibernationDevice: RESUME=UUID=f00235c0-ba8a-4403-91b1-64e9d87b76e0 InstallationDate: Installed on 2016-04-23 (940 days ago) InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1) MachineType: Notebook N150SD/N155SD NonfreeKernelModules: zfs zunicode zcommon znvpair zavl Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-139-generic root=UUID=beb9b9ce-39a7-464a-978c-ac4fb82a5a81 ro quiet splash ProcVersionSignature: Ubuntu 4.4.0-139.165-generic 4.4.160 RelatedPackageVersions: linux-restricted-modules-4.4.0-139-generic N/A linux-backports-modules-4.4.0-139-generic N/A linux-firmware 1.157.20 Tags: xenial Uname: Linux 4.4.0-139-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo vboxusers wireshark _MarkForUpload: True dmi.bios.date: 03/31/2015 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 1.03.05 dmi.board.asset.tag: Tag 12345 dmi.board.name: N150SD/N155SD dmi.board.vendor: Notebook dmi.board.version: Not Applicable dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 9 dmi.chassis.vendor: Notebook dmi.chassis.version: N/A dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr1.03.05:bd03/31/2015:svnNotebook:pnN150SD/N155SD:pvrNotApplicable:rvnNotebook:rnN150SD/N155SD:rvrNotApplicable:cvnNotebook:ct9:cvrN/A: dmi.product.name: N150SD/N155SD dmi.product.version: Not Applicable dmi.sys.vendor: Notebook To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803929/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803921] Re: test_095_kernel_symbols_missing_proc_self_stack failed with C
** Description changed: Like bug 1802069 + With this patch applied: http://kernel.ubuntu.com/git/ubuntu/ubuntu-cosmic.git/commit/?h=master-next&id=601cf8d59f415403b50e6bfbf124b3f005b7e49b - This test now failed with Cosmic kernel - ubuntu@s2lp6g003:~$ uname -a - Linux s2lp6g003 4.18.0-12-generic #13-Ubuntu SMP Wed Nov 14 15:15:21 UTC 2018 s390x s390x s390x GNU/Linux - ubuntu@s2lp6g003:~$ cat /proc/self/stack + This test now failed with Cosmic kernel in proposed. Result before and + after update + + ubuntu@rumford:~$ uname -a + Linux rumford 4.18.0-11-generic #12-Ubuntu SMP Tue Oct 23 19:22:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + ubuntu@rumford:~$ cat /proc/self/stack + [<0>] proc_pid_stack+0xaa/0x100 + [<0>] proc_single_show+0x56/0x90 + [<0>] seq_read+0x16b/0x450 + [<0>] __vfs_read+0x1b/0x40 + [<0>] vfs_read+0x8f/0x140 + [<0>] ksys_read+0x55/0xc0 + [<0>] __x64_sys_read+0x1a/0x20 + [<0>] do_syscall_64+0x5a/0x110 + [<0>] entry_SYSCALL_64_after_hwframe+0x44/0xa9 + [<0>] 0x + + ubuntu@rumford:~$ uname -a + Linux rumford 4.18.0-12-generic #13-Ubuntu SMP Wed Nov 14 15:17:05 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux + ubuntu@rumford:~$ cat /proc/self/stack cat: /proc/self/stack: Permission denied ** Changed in: linux (Ubuntu) Status: Incomplete => Invalid ** Changed in: qa-regression-testing Status: New => Confirmed ** Changed in: ubuntu-kernel-tests Status: New => Confirmed ** Changed in: qa-regression-testing Assignee: (unassigned) => Po-Hsu Lin (cypressyew) ** Changed in: qa-regression-testing Status: Confirmed => Incomplete ** Changed in: qa-regression-testing Status: Incomplete => In Progress ** Changed in: ubuntu-kernel-tests Assignee: (unassigned) => Po-Hsu Lin (cypressyew) ** Changed in: ubuntu-kernel-tests Status: Confirmed => In Progress ** Merge proposal linked: https://code.launchpad.net/~cypressyew/qa-regression-testing/+git/qa-regression-testing/+merge/358978 ** Changed in: ubuntu-kernel-tests Importance: Undecided => Medium -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803921 Title: test_095_kernel_symbols_missing_proc_self_stack failed with C Status in QA Regression Testing: In Progress Status in ubuntu-kernel-tests: In Progress Status in linux package in Ubuntu: Invalid Bug description: Like bug 1802069 With this patch applied: http://kernel.ubuntu.com/git/ubuntu/ubuntu-cosmic.git/commit/?h=master-next&id=601cf8d59f415403b50e6bfbf124b3f005b7e49b This test now failed with Cosmic kernel in proposed. Result before and after update ubuntu@rumford:~$ uname -a Linux rumford 4.18.0-11-generic #12-Ubuntu SMP Tue Oct 23 19:22:37 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux ubuntu@rumford:~$ cat /proc/self/stack [<0>] proc_pid_stack+0xaa/0x100 [<0>] proc_single_show+0x56/0x90 [<0>] seq_read+0x16b/0x450 [<0>] __vfs_read+0x1b/0x40 [<0>] vfs_read+0x8f/0x140 [<0>] ksys_read+0x55/0xc0 [<0>] __x64_sys_read+0x1a/0x20 [<0>] do_syscall_64+0x5a/0x110 [<0>] entry_SYSCALL_64_after_hwframe+0x44/0xa9 [<0>] 0x ubuntu@rumford:~$ uname -a Linux rumford 4.18.0-12-generic #13-Ubuntu SMP Wed Nov 14 15:17:05 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux ubuntu@rumford:~$ cat /proc/self/stack cat: /proc/self/stack: Permission denied To manage notifications about this bug go to: https://bugs.launchpad.net/qa-regression-testing/+bug/1803921/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1574196] Re: Card with chipset BCM4360 [14e4:43a0] (rev 03) doesn't see 5Ghz networks with high channel number.
Same problem. My card is TP-Link Archer T6E -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to bcmwl in Ubuntu. https://bugs.launchpad.net/bugs/1574196 Title: Card with chipset BCM4360 [14e4:43a0] (rev 03) doesn't see 5Ghz networks with high channel number. Status in bcmwl package in Ubuntu: Confirmed Bug description: The card Broadcom Corporation BCM4360 802.11ac Wireless Network Adapter [14e4:43a0] (rev 03) doesn't see 5Ghz networks with an high channel number, if you change the channel back to a lower one the network will be found again. In my case with channel 104 the network wasn't seen by the card, with channel 40 it works fine wireless-info script result: ## wireless info START ## Report from: 22 Apr 2016 19:23 CEST +0200 Booted last: 22 Apr 2016 18:51 CEST +0200 Script from: 27 Sep 2015 00:34 UTC + # release ### Distributor ID: Ubuntu Description: Ubuntu 14.04.4 LTS Release: 14.04 Codename: trusty # kernel Linux 3.13.0-85-generic #129-Ubuntu SMP Thu Mar 17 20:50:15 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux Parameters: ro, quiet, splash, vt.handoff=7 # desktop ### Ubuntu # lspci # 03:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 06) Subsystem: Micro-Star International Co., Ltd. [MSI] Device [1462:7758] Kernel driver in use: r8169 04:00.0 Network controller [0280]: Broadcom Corporation BCM4360 802.11ac Wireless Network Adapter [14e4:43a0] (rev 03) Subsystem: Broadcom Corporation Device [14e4:0619] Kernel driver in use: wl # lsusb # Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 001 Device 005: ID 0424:2514 Standard Microsystems Corp. USB 2.0 Hub Bus 001 Device 004: ID 1532:0016 Razer USA, Ltd DeathAdder Mouse Bus 001 Device 003: ID 258a:0001 Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub # PCMCIA card info ## # rfkill 0: phy0: Wireless LAN Soft blocked: no Hard blocked: no 1: brcmwl-0: Wireless LAN Soft blocked: no Hard blocked: no # lsmod # wl 6367819 0 mxm_wmi13021 1 nouveau wmi19177 2 mxm_wmi,nouveau cfg80211 496328 1 wl # interfaces auto lo iface lo inet loopback # ifconfig ## eth0 Link encap:Ethernet HWaddr UP BROADCAST MULTICAST MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:0 (0.0 B) TX bytes:0 (0.0 B) virbr0Link encap:Ethernet HWaddr inet addr:192.168.122.1 Bcast:192.168.122.255 Mask:255.255.255.0 UP BROADCAST MULTICAST MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:0 (0.0 B) TX bytes:0 (0.0 B) wlan2 Link encap:Ethernet HWaddr inet addr:192.168.1.6 Bcast:192.168.1.255 Mask:255.255.255.0 inet6 addr: fe80::/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:45040 errors:0 dropped:0 overruns:0 frame:7469 TX packets:33232 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:33581962 (33.5 MB) TX bytes:6334838 (6.3 MB) Interrupt:18 # iwconfig ## eth0 no wireless extensions. lono wireless extensions. virbr0no wireless extensions. wlan2 IEEE 802.11abg ESSID:"LamerTexWiFi" Mode:Managed Frequency:2.437 GHz Access Point: Retry long limit:7 RTS thr:off Fragment thr:off Power Management:off # route # Kernel IP routing table Destination Gateway Genmask Flags Metric RefUse Iface 0.0.0.0 192.168.1.1 0.0.0.0 UG0 00 wlan2 192.168.1.0 0.0.0.0 255.255.255.0 U 9 00 wlan2 192.168.122.0 0.0.0.0 255.255.255.0 U 0 0
[Kernel-packages] [Bug 1803929] PulseList.txt
apport information ** Attachment added: "PulseList.txt" https://bugs.launchpad.net/bugs/1803929/+attachment/5214100/+files/PulseList.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803929 Title: Summary: Kernel bug (unhandled paging request) on "udisksctl power- off" Status in linux package in Ubuntu: Confirmed Bug description: lsb_release -rd Description: Ubuntu 16.04.5 LTS Release: 16.04 uname -a Linux metabox 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux Steps (1) to reproduce: 1) Plug in a USB3 hard drive. 2) Right click on launcher icon. 3) Select "Safely Remove". After finding this: https://askubuntu.com/a/532691 ...the following steps also reproduce the problem. Steps (2) to reproduce: 1) Plugin in a USB3 hard drive. 2) udisksctl unmount -b /dev/sdXY 3) udisksctl power-off -b /dev/sdX System completely locks and becomes unresponsive, such that even the Magic SysRq key combination does nothing. Most of the time the fans on my laptop go crazy (so the CPU must get stuck in some loop), but once they did not and the system was just locked (without the fans going nuts). I can't get a textual copy of the kernel bug log (because I have to do a hard reset to regain control of the system and the output doesn't get flushed to disk), but I did manage to get a photo of some of it (please refer to attachment). --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC1D0p: matt 2754 F...m pulseaudio /dev/snd/controlC1: matt 2754 F pulseaudio /dev/snd/controlC0: matt 2754 F pulseaudio CurrentDesktop: Unity DistroRelease: Ubuntu 16.04 EcryptfsInUse: Yes HibernationDevice: RESUME=UUID=f00235c0-ba8a-4403-91b1-64e9d87b76e0 InstallationDate: Installed on 2016-04-23 (940 days ago) InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1) MachineType: Notebook N150SD/N155SD NonfreeKernelModules: zfs zunicode zcommon znvpair zavl Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-139-generic root=UUID=beb9b9ce-39a7-464a-978c-ac4fb82a5a81 ro quiet splash ProcVersionSignature: Ubuntu 4.4.0-139.165-generic 4.4.160 RelatedPackageVersions: linux-restricted-modules-4.4.0-139-generic N/A linux-backports-modules-4.4.0-139-generic N/A linux-firmware 1.157.20 Tags: xenial Uname: Linux 4.4.0-139-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo vboxusers wireshark _MarkForUpload: True dmi.bios.date: 03/31/2015 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 1.03.05 dmi.board.asset.tag: Tag 12345 dmi.board.name: N150SD/N155SD dmi.board.vendor: Notebook dmi.board.version: Not Applicable dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 9 dmi.chassis.vendor: Notebook dmi.chassis.version: N/A dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr1.03.05:bd03/31/2015:svnNotebook:pnN150SD/N155SD:pvrNotApplicable:rvnNotebook:rnN150SD/N155SD:rvrNotApplicable:cvnNotebook:ct9:cvrN/A: dmi.product.name: N150SD/N155SD dmi.product.version: Not Applicable dmi.sys.vendor: Notebook To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803929/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803929] ProcModules.txt
apport information ** Attachment added: "ProcModules.txt" https://bugs.launchpad.net/bugs/1803929/+attachment/5214099/+files/ProcModules.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803929 Title: Summary: Kernel bug (unhandled paging request) on "udisksctl power- off" Status in linux package in Ubuntu: Confirmed Bug description: lsb_release -rd Description: Ubuntu 16.04.5 LTS Release: 16.04 uname -a Linux metabox 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux Steps (1) to reproduce: 1) Plug in a USB3 hard drive. 2) Right click on launcher icon. 3) Select "Safely Remove". After finding this: https://askubuntu.com/a/532691 ...the following steps also reproduce the problem. Steps (2) to reproduce: 1) Plugin in a USB3 hard drive. 2) udisksctl unmount -b /dev/sdXY 3) udisksctl power-off -b /dev/sdX System completely locks and becomes unresponsive, such that even the Magic SysRq key combination does nothing. Most of the time the fans on my laptop go crazy (so the CPU must get stuck in some loop), but once they did not and the system was just locked (without the fans going nuts). I can't get a textual copy of the kernel bug log (because I have to do a hard reset to regain control of the system and the output doesn't get flushed to disk), but I did manage to get a photo of some of it (please refer to attachment). --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC1D0p: matt 2754 F...m pulseaudio /dev/snd/controlC1: matt 2754 F pulseaudio /dev/snd/controlC0: matt 2754 F pulseaudio CurrentDesktop: Unity DistroRelease: Ubuntu 16.04 EcryptfsInUse: Yes HibernationDevice: RESUME=UUID=f00235c0-ba8a-4403-91b1-64e9d87b76e0 InstallationDate: Installed on 2016-04-23 (940 days ago) InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1) MachineType: Notebook N150SD/N155SD NonfreeKernelModules: zfs zunicode zcommon znvpair zavl Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-139-generic root=UUID=beb9b9ce-39a7-464a-978c-ac4fb82a5a81 ro quiet splash ProcVersionSignature: Ubuntu 4.4.0-139.165-generic 4.4.160 RelatedPackageVersions: linux-restricted-modules-4.4.0-139-generic N/A linux-backports-modules-4.4.0-139-generic N/A linux-firmware 1.157.20 Tags: xenial Uname: Linux 4.4.0-139-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo vboxusers wireshark _MarkForUpload: True dmi.bios.date: 03/31/2015 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 1.03.05 dmi.board.asset.tag: Tag 12345 dmi.board.name: N150SD/N155SD dmi.board.vendor: Notebook dmi.board.version: Not Applicable dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 9 dmi.chassis.vendor: Notebook dmi.chassis.version: N/A dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr1.03.05:bd03/31/2015:svnNotebook:pnN150SD/N155SD:pvrNotApplicable:rvnNotebook:rnN150SD/N155SD:rvrNotApplicable:cvnNotebook:ct9:cvrN/A: dmi.product.name: N150SD/N155SD dmi.product.version: Not Applicable dmi.sys.vendor: Notebook To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803929/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803929] WifiSyslog.txt
apport information ** Attachment added: "WifiSyslog.txt" https://bugs.launchpad.net/bugs/1803929/+attachment/5214103/+files/WifiSyslog.txt ** Changed in: linux (Ubuntu) Status: Incomplete => Confirmed -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803929 Title: Summary: Kernel bug (unhandled paging request) on "udisksctl power- off" Status in linux package in Ubuntu: Confirmed Bug description: lsb_release -rd Description: Ubuntu 16.04.5 LTS Release: 16.04 uname -a Linux metabox 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux Steps (1) to reproduce: 1) Plug in a USB3 hard drive. 2) Right click on launcher icon. 3) Select "Safely Remove". After finding this: https://askubuntu.com/a/532691 ...the following steps also reproduce the problem. Steps (2) to reproduce: 1) Plugin in a USB3 hard drive. 2) udisksctl unmount -b /dev/sdXY 3) udisksctl power-off -b /dev/sdX System completely locks and becomes unresponsive, such that even the Magic SysRq key combination does nothing. Most of the time the fans on my laptop go crazy (so the CPU must get stuck in some loop), but once they did not and the system was just locked (without the fans going nuts). I can't get a textual copy of the kernel bug log (because I have to do a hard reset to regain control of the system and the output doesn't get flushed to disk), but I did manage to get a photo of some of it (please refer to attachment). --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC1D0p: matt 2754 F...m pulseaudio /dev/snd/controlC1: matt 2754 F pulseaudio /dev/snd/controlC0: matt 2754 F pulseaudio CurrentDesktop: Unity DistroRelease: Ubuntu 16.04 EcryptfsInUse: Yes HibernationDevice: RESUME=UUID=f00235c0-ba8a-4403-91b1-64e9d87b76e0 InstallationDate: Installed on 2016-04-23 (940 days ago) InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1) MachineType: Notebook N150SD/N155SD NonfreeKernelModules: zfs zunicode zcommon znvpair zavl Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-139-generic root=UUID=beb9b9ce-39a7-464a-978c-ac4fb82a5a81 ro quiet splash ProcVersionSignature: Ubuntu 4.4.0-139.165-generic 4.4.160 RelatedPackageVersions: linux-restricted-modules-4.4.0-139-generic N/A linux-backports-modules-4.4.0-139-generic N/A linux-firmware 1.157.20 Tags: xenial Uname: Linux 4.4.0-139-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo vboxusers wireshark _MarkForUpload: True dmi.bios.date: 03/31/2015 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 1.03.05 dmi.board.asset.tag: Tag 12345 dmi.board.name: N150SD/N155SD dmi.board.vendor: Notebook dmi.board.version: Not Applicable dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 9 dmi.chassis.vendor: Notebook dmi.chassis.version: N/A dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr1.03.05:bd03/31/2015:svnNotebook:pnN150SD/N155SD:pvrNotApplicable:rvnNotebook:rnN150SD/N155SD:rvrNotApplicable:cvnNotebook:ct9:cvrN/A: dmi.product.name: N150SD/N155SD dmi.product.version: Not Applicable dmi.sys.vendor: Notebook To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803929/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803929] ProcInterrupts.txt
apport information ** Attachment added: "ProcInterrupts.txt" https://bugs.launchpad.net/bugs/1803929/+attachment/5214098/+files/ProcInterrupts.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803929 Title: Summary: Kernel bug (unhandled paging request) on "udisksctl power- off" Status in linux package in Ubuntu: Confirmed Bug description: lsb_release -rd Description: Ubuntu 16.04.5 LTS Release: 16.04 uname -a Linux metabox 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux Steps (1) to reproduce: 1) Plug in a USB3 hard drive. 2) Right click on launcher icon. 3) Select "Safely Remove". After finding this: https://askubuntu.com/a/532691 ...the following steps also reproduce the problem. Steps (2) to reproduce: 1) Plugin in a USB3 hard drive. 2) udisksctl unmount -b /dev/sdXY 3) udisksctl power-off -b /dev/sdX System completely locks and becomes unresponsive, such that even the Magic SysRq key combination does nothing. Most of the time the fans on my laptop go crazy (so the CPU must get stuck in some loop), but once they did not and the system was just locked (without the fans going nuts). I can't get a textual copy of the kernel bug log (because I have to do a hard reset to regain control of the system and the output doesn't get flushed to disk), but I did manage to get a photo of some of it (please refer to attachment). --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC1D0p: matt 2754 F...m pulseaudio /dev/snd/controlC1: matt 2754 F pulseaudio /dev/snd/controlC0: matt 2754 F pulseaudio CurrentDesktop: Unity DistroRelease: Ubuntu 16.04 EcryptfsInUse: Yes HibernationDevice: RESUME=UUID=f00235c0-ba8a-4403-91b1-64e9d87b76e0 InstallationDate: Installed on 2016-04-23 (940 days ago) InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1) MachineType: Notebook N150SD/N155SD NonfreeKernelModules: zfs zunicode zcommon znvpair zavl Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-139-generic root=UUID=beb9b9ce-39a7-464a-978c-ac4fb82a5a81 ro quiet splash ProcVersionSignature: Ubuntu 4.4.0-139.165-generic 4.4.160 RelatedPackageVersions: linux-restricted-modules-4.4.0-139-generic N/A linux-backports-modules-4.4.0-139-generic N/A linux-firmware 1.157.20 Tags: xenial Uname: Linux 4.4.0-139-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo vboxusers wireshark _MarkForUpload: True dmi.bios.date: 03/31/2015 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 1.03.05 dmi.board.asset.tag: Tag 12345 dmi.board.name: N150SD/N155SD dmi.board.vendor: Notebook dmi.board.version: Not Applicable dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 9 dmi.chassis.vendor: Notebook dmi.chassis.version: N/A dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr1.03.05:bd03/31/2015:svnNotebook:pnN150SD/N155SD:pvrNotApplicable:rvnNotebook:rnN150SD/N155SD:rvrNotApplicable:cvnNotebook:ct9:cvrN/A: dmi.product.name: N150SD/N155SD dmi.product.version: Not Applicable dmi.sys.vendor: Notebook To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803929/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803929] ProcCpuinfo.txt
apport information ** Attachment added: "ProcCpuinfo.txt" https://bugs.launchpad.net/bugs/1803929/+attachment/5214095/+files/ProcCpuinfo.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803929 Title: Summary: Kernel bug (unhandled paging request) on "udisksctl power- off" Status in linux package in Ubuntu: Confirmed Bug description: lsb_release -rd Description: Ubuntu 16.04.5 LTS Release: 16.04 uname -a Linux metabox 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux Steps (1) to reproduce: 1) Plug in a USB3 hard drive. 2) Right click on launcher icon. 3) Select "Safely Remove". After finding this: https://askubuntu.com/a/532691 ...the following steps also reproduce the problem. Steps (2) to reproduce: 1) Plugin in a USB3 hard drive. 2) udisksctl unmount -b /dev/sdXY 3) udisksctl power-off -b /dev/sdX System completely locks and becomes unresponsive, such that even the Magic SysRq key combination does nothing. Most of the time the fans on my laptop go crazy (so the CPU must get stuck in some loop), but once they did not and the system was just locked (without the fans going nuts). I can't get a textual copy of the kernel bug log (because I have to do a hard reset to regain control of the system and the output doesn't get flushed to disk), but I did manage to get a photo of some of it (please refer to attachment). --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC1D0p: matt 2754 F...m pulseaudio /dev/snd/controlC1: matt 2754 F pulseaudio /dev/snd/controlC0: matt 2754 F pulseaudio CurrentDesktop: Unity DistroRelease: Ubuntu 16.04 EcryptfsInUse: Yes HibernationDevice: RESUME=UUID=f00235c0-ba8a-4403-91b1-64e9d87b76e0 InstallationDate: Installed on 2016-04-23 (940 days ago) InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1) MachineType: Notebook N150SD/N155SD NonfreeKernelModules: zfs zunicode zcommon znvpair zavl Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-139-generic root=UUID=beb9b9ce-39a7-464a-978c-ac4fb82a5a81 ro quiet splash ProcVersionSignature: Ubuntu 4.4.0-139.165-generic 4.4.160 RelatedPackageVersions: linux-restricted-modules-4.4.0-139-generic N/A linux-backports-modules-4.4.0-139-generic N/A linux-firmware 1.157.20 Tags: xenial Uname: Linux 4.4.0-139-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo vboxusers wireshark _MarkForUpload: True dmi.bios.date: 03/31/2015 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 1.03.05 dmi.board.asset.tag: Tag 12345 dmi.board.name: N150SD/N155SD dmi.board.vendor: Notebook dmi.board.version: Not Applicable dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 9 dmi.chassis.vendor: Notebook dmi.chassis.version: N/A dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr1.03.05:bd03/31/2015:svnNotebook:pnN150SD/N155SD:pvrNotApplicable:rvnNotebook:rnN150SD/N155SD:rvrNotApplicable:cvnNotebook:ct9:cvrN/A: dmi.product.name: N150SD/N155SD dmi.product.version: Not Applicable dmi.sys.vendor: Notebook To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803929/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803929] CRDA.txt
apport information ** Attachment added: "CRDA.txt" https://bugs.launchpad.net/bugs/1803929/+attachment/5214090/+files/CRDA.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803929 Title: Summary: Kernel bug (unhandled paging request) on "udisksctl power- off" Status in linux package in Ubuntu: Confirmed Bug description: lsb_release -rd Description: Ubuntu 16.04.5 LTS Release: 16.04 uname -a Linux metabox 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux Steps (1) to reproduce: 1) Plug in a USB3 hard drive. 2) Right click on launcher icon. 3) Select "Safely Remove". After finding this: https://askubuntu.com/a/532691 ...the following steps also reproduce the problem. Steps (2) to reproduce: 1) Plugin in a USB3 hard drive. 2) udisksctl unmount -b /dev/sdXY 3) udisksctl power-off -b /dev/sdX System completely locks and becomes unresponsive, such that even the Magic SysRq key combination does nothing. Most of the time the fans on my laptop go crazy (so the CPU must get stuck in some loop), but once they did not and the system was just locked (without the fans going nuts). I can't get a textual copy of the kernel bug log (because I have to do a hard reset to regain control of the system and the output doesn't get flushed to disk), but I did manage to get a photo of some of it (please refer to attachment). --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC1D0p: matt 2754 F...m pulseaudio /dev/snd/controlC1: matt 2754 F pulseaudio /dev/snd/controlC0: matt 2754 F pulseaudio CurrentDesktop: Unity DistroRelease: Ubuntu 16.04 EcryptfsInUse: Yes HibernationDevice: RESUME=UUID=f00235c0-ba8a-4403-91b1-64e9d87b76e0 InstallationDate: Installed on 2016-04-23 (940 days ago) InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1) MachineType: Notebook N150SD/N155SD NonfreeKernelModules: zfs zunicode zcommon znvpair zavl Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-139-generic root=UUID=beb9b9ce-39a7-464a-978c-ac4fb82a5a81 ro quiet splash ProcVersionSignature: Ubuntu 4.4.0-139.165-generic 4.4.160 RelatedPackageVersions: linux-restricted-modules-4.4.0-139-generic N/A linux-backports-modules-4.4.0-139-generic N/A linux-firmware 1.157.20 Tags: xenial Uname: Linux 4.4.0-139-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo vboxusers wireshark _MarkForUpload: True dmi.bios.date: 03/31/2015 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 1.03.05 dmi.board.asset.tag: Tag 12345 dmi.board.name: N150SD/N155SD dmi.board.vendor: Notebook dmi.board.version: Not Applicable dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 9 dmi.chassis.vendor: Notebook dmi.chassis.version: N/A dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr1.03.05:bd03/31/2015:svnNotebook:pnN150SD/N155SD:pvrNotApplicable:rvnNotebook:rnN150SD/N155SD:rvrNotApplicable:cvnNotebook:ct9:cvrN/A: dmi.product.name: N150SD/N155SD dmi.product.version: Not Applicable dmi.sys.vendor: Notebook To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803929/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803929] RfKill.txt
apport information ** Attachment added: "RfKill.txt" https://bugs.launchpad.net/bugs/1803929/+attachment/5214101/+files/RfKill.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803929 Title: Summary: Kernel bug (unhandled paging request) on "udisksctl power- off" Status in linux package in Ubuntu: Confirmed Bug description: lsb_release -rd Description: Ubuntu 16.04.5 LTS Release: 16.04 uname -a Linux metabox 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux Steps (1) to reproduce: 1) Plug in a USB3 hard drive. 2) Right click on launcher icon. 3) Select "Safely Remove". After finding this: https://askubuntu.com/a/532691 ...the following steps also reproduce the problem. Steps (2) to reproduce: 1) Plugin in a USB3 hard drive. 2) udisksctl unmount -b /dev/sdXY 3) udisksctl power-off -b /dev/sdX System completely locks and becomes unresponsive, such that even the Magic SysRq key combination does nothing. Most of the time the fans on my laptop go crazy (so the CPU must get stuck in some loop), but once they did not and the system was just locked (without the fans going nuts). I can't get a textual copy of the kernel bug log (because I have to do a hard reset to regain control of the system and the output doesn't get flushed to disk), but I did manage to get a photo of some of it (please refer to attachment). --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC1D0p: matt 2754 F...m pulseaudio /dev/snd/controlC1: matt 2754 F pulseaudio /dev/snd/controlC0: matt 2754 F pulseaudio CurrentDesktop: Unity DistroRelease: Ubuntu 16.04 EcryptfsInUse: Yes HibernationDevice: RESUME=UUID=f00235c0-ba8a-4403-91b1-64e9d87b76e0 InstallationDate: Installed on 2016-04-23 (940 days ago) InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1) MachineType: Notebook N150SD/N155SD NonfreeKernelModules: zfs zunicode zcommon znvpair zavl Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-139-generic root=UUID=beb9b9ce-39a7-464a-978c-ac4fb82a5a81 ro quiet splash ProcVersionSignature: Ubuntu 4.4.0-139.165-generic 4.4.160 RelatedPackageVersions: linux-restricted-modules-4.4.0-139-generic N/A linux-backports-modules-4.4.0-139-generic N/A linux-firmware 1.157.20 Tags: xenial Uname: Linux 4.4.0-139-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo vboxusers wireshark _MarkForUpload: True dmi.bios.date: 03/31/2015 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 1.03.05 dmi.board.asset.tag: Tag 12345 dmi.board.name: N150SD/N155SD dmi.board.vendor: Notebook dmi.board.version: Not Applicable dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 9 dmi.chassis.vendor: Notebook dmi.chassis.version: N/A dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr1.03.05:bd03/31/2015:svnNotebook:pnN150SD/N155SD:pvrNotApplicable:rvnNotebook:rnN150SD/N155SD:rvrNotApplicable:cvnNotebook:ct9:cvrN/A: dmi.product.name: N150SD/N155SD dmi.product.version: Not Applicable dmi.sys.vendor: Notebook To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803929/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803929] Lsusb.txt
apport information ** Attachment added: "Lsusb.txt" https://bugs.launchpad.net/bugs/1803929/+attachment/5214094/+files/Lsusb.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803929 Title: Summary: Kernel bug (unhandled paging request) on "udisksctl power- off" Status in linux package in Ubuntu: Confirmed Bug description: lsb_release -rd Description: Ubuntu 16.04.5 LTS Release: 16.04 uname -a Linux metabox 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux Steps (1) to reproduce: 1) Plug in a USB3 hard drive. 2) Right click on launcher icon. 3) Select "Safely Remove". After finding this: https://askubuntu.com/a/532691 ...the following steps also reproduce the problem. Steps (2) to reproduce: 1) Plugin in a USB3 hard drive. 2) udisksctl unmount -b /dev/sdXY 3) udisksctl power-off -b /dev/sdX System completely locks and becomes unresponsive, such that even the Magic SysRq key combination does nothing. Most of the time the fans on my laptop go crazy (so the CPU must get stuck in some loop), but once they did not and the system was just locked (without the fans going nuts). I can't get a textual copy of the kernel bug log (because I have to do a hard reset to regain control of the system and the output doesn't get flushed to disk), but I did manage to get a photo of some of it (please refer to attachment). --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC1D0p: matt 2754 F...m pulseaudio /dev/snd/controlC1: matt 2754 F pulseaudio /dev/snd/controlC0: matt 2754 F pulseaudio CurrentDesktop: Unity DistroRelease: Ubuntu 16.04 EcryptfsInUse: Yes HibernationDevice: RESUME=UUID=f00235c0-ba8a-4403-91b1-64e9d87b76e0 InstallationDate: Installed on 2016-04-23 (940 days ago) InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1) MachineType: Notebook N150SD/N155SD NonfreeKernelModules: zfs zunicode zcommon znvpair zavl Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-139-generic root=UUID=beb9b9ce-39a7-464a-978c-ac4fb82a5a81 ro quiet splash ProcVersionSignature: Ubuntu 4.4.0-139.165-generic 4.4.160 RelatedPackageVersions: linux-restricted-modules-4.4.0-139-generic N/A linux-backports-modules-4.4.0-139-generic N/A linux-firmware 1.157.20 Tags: xenial Uname: Linux 4.4.0-139-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo vboxusers wireshark _MarkForUpload: True dmi.bios.date: 03/31/2015 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 1.03.05 dmi.board.asset.tag: Tag 12345 dmi.board.name: N150SD/N155SD dmi.board.vendor: Notebook dmi.board.version: Not Applicable dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 9 dmi.chassis.vendor: Notebook dmi.chassis.version: N/A dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr1.03.05:bd03/31/2015:svnNotebook:pnN150SD/N155SD:pvrNotApplicable:rvnNotebook:rnN150SD/N155SD:rvrNotApplicable:cvnNotebook:ct9:cvrN/A: dmi.product.name: N150SD/N155SD dmi.product.version: Not Applicable dmi.sys.vendor: Notebook To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803929/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803929] ProcEnviron.txt
apport information ** Attachment added: "ProcEnviron.txt" https://bugs.launchpad.net/bugs/1803929/+attachment/5214097/+files/ProcEnviron.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803929 Title: Summary: Kernel bug (unhandled paging request) on "udisksctl power- off" Status in linux package in Ubuntu: Confirmed Bug description: lsb_release -rd Description: Ubuntu 16.04.5 LTS Release: 16.04 uname -a Linux metabox 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux Steps (1) to reproduce: 1) Plug in a USB3 hard drive. 2) Right click on launcher icon. 3) Select "Safely Remove". After finding this: https://askubuntu.com/a/532691 ...the following steps also reproduce the problem. Steps (2) to reproduce: 1) Plugin in a USB3 hard drive. 2) udisksctl unmount -b /dev/sdXY 3) udisksctl power-off -b /dev/sdX System completely locks and becomes unresponsive, such that even the Magic SysRq key combination does nothing. Most of the time the fans on my laptop go crazy (so the CPU must get stuck in some loop), but once they did not and the system was just locked (without the fans going nuts). I can't get a textual copy of the kernel bug log (because I have to do a hard reset to regain control of the system and the output doesn't get flushed to disk), but I did manage to get a photo of some of it (please refer to attachment). --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC1D0p: matt 2754 F...m pulseaudio /dev/snd/controlC1: matt 2754 F pulseaudio /dev/snd/controlC0: matt 2754 F pulseaudio CurrentDesktop: Unity DistroRelease: Ubuntu 16.04 EcryptfsInUse: Yes HibernationDevice: RESUME=UUID=f00235c0-ba8a-4403-91b1-64e9d87b76e0 InstallationDate: Installed on 2016-04-23 (940 days ago) InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1) MachineType: Notebook N150SD/N155SD NonfreeKernelModules: zfs zunicode zcommon znvpair zavl Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-139-generic root=UUID=beb9b9ce-39a7-464a-978c-ac4fb82a5a81 ro quiet splash ProcVersionSignature: Ubuntu 4.4.0-139.165-generic 4.4.160 RelatedPackageVersions: linux-restricted-modules-4.4.0-139-generic N/A linux-backports-modules-4.4.0-139-generic N/A linux-firmware 1.157.20 Tags: xenial Uname: Linux 4.4.0-139-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo vboxusers wireshark _MarkForUpload: True dmi.bios.date: 03/31/2015 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 1.03.05 dmi.board.asset.tag: Tag 12345 dmi.board.name: N150SD/N155SD dmi.board.vendor: Notebook dmi.board.version: Not Applicable dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 9 dmi.chassis.vendor: Notebook dmi.chassis.version: N/A dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr1.03.05:bd03/31/2015:svnNotebook:pnN150SD/N155SD:pvrNotApplicable:rvnNotebook:rnN150SD/N155SD:rvrNotApplicable:cvnNotebook:ct9:cvrN/A: dmi.product.name: N150SD/N155SD dmi.product.version: Not Applicable dmi.sys.vendor: Notebook To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803929/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803929] IwConfig.txt
apport information ** Attachment added: "IwConfig.txt" https://bugs.launchpad.net/bugs/1803929/+attachment/5214092/+files/IwConfig.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803929 Title: Summary: Kernel bug (unhandled paging request) on "udisksctl power- off" Status in linux package in Ubuntu: Confirmed Bug description: lsb_release -rd Description: Ubuntu 16.04.5 LTS Release: 16.04 uname -a Linux metabox 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux Steps (1) to reproduce: 1) Plug in a USB3 hard drive. 2) Right click on launcher icon. 3) Select "Safely Remove". After finding this: https://askubuntu.com/a/532691 ...the following steps also reproduce the problem. Steps (2) to reproduce: 1) Plugin in a USB3 hard drive. 2) udisksctl unmount -b /dev/sdXY 3) udisksctl power-off -b /dev/sdX System completely locks and becomes unresponsive, such that even the Magic SysRq key combination does nothing. Most of the time the fans on my laptop go crazy (so the CPU must get stuck in some loop), but once they did not and the system was just locked (without the fans going nuts). I can't get a textual copy of the kernel bug log (because I have to do a hard reset to regain control of the system and the output doesn't get flushed to disk), but I did manage to get a photo of some of it (please refer to attachment). --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC1D0p: matt 2754 F...m pulseaudio /dev/snd/controlC1: matt 2754 F pulseaudio /dev/snd/controlC0: matt 2754 F pulseaudio CurrentDesktop: Unity DistroRelease: Ubuntu 16.04 EcryptfsInUse: Yes HibernationDevice: RESUME=UUID=f00235c0-ba8a-4403-91b1-64e9d87b76e0 InstallationDate: Installed on 2016-04-23 (940 days ago) InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1) MachineType: Notebook N150SD/N155SD NonfreeKernelModules: zfs zunicode zcommon znvpair zavl Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-139-generic root=UUID=beb9b9ce-39a7-464a-978c-ac4fb82a5a81 ro quiet splash ProcVersionSignature: Ubuntu 4.4.0-139.165-generic 4.4.160 RelatedPackageVersions: linux-restricted-modules-4.4.0-139-generic N/A linux-backports-modules-4.4.0-139-generic N/A linux-firmware 1.157.20 Tags: xenial Uname: Linux 4.4.0-139-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo vboxusers wireshark _MarkForUpload: True dmi.bios.date: 03/31/2015 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 1.03.05 dmi.board.asset.tag: Tag 12345 dmi.board.name: N150SD/N155SD dmi.board.vendor: Notebook dmi.board.version: Not Applicable dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 9 dmi.chassis.vendor: Notebook dmi.chassis.version: N/A dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr1.03.05:bd03/31/2015:svnNotebook:pnN150SD/N155SD:pvrNotApplicable:rvnNotebook:rnN150SD/N155SD:rvrNotApplicable:cvnNotebook:ct9:cvrN/A: dmi.product.name: N150SD/N155SD dmi.product.version: Not Applicable dmi.sys.vendor: Notebook To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803929/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803929] Re: Summary: Kernel bug (unhandled paging request) on "udisksctl power-off"
apport information ** Tags added: apport-collected ** Description changed: lsb_release -rd Description: Ubuntu 16.04.5 LTS Release: 16.04 uname -a Linux metabox 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux Steps (1) to reproduce: 1) Plug in a USB3 hard drive. 2) Right click on launcher icon. 3) Select "Safely Remove". After finding this: https://askubuntu.com/a/532691 ...the following steps also reproduce the problem. Steps (2) to reproduce: 1) Plugin in a USB3 hard drive. 2) udisksctl unmount -b /dev/sdXY 3) udisksctl power-off -b /dev/sdX System completely locks and becomes unresponsive, such that even the Magic SysRq key combination does nothing. Most of the time the fans on my laptop go crazy (so the CPU must get stuck in some loop), but once they did not and the system was just locked (without the fans going nuts). - I can't get a textual copy of the kernel bug log (because I have to do a - hard reset to regain control of the system and the output doesn't get - flushed to disk), but I did manage to get a photo of some of it (please - refer to attachment). + I can't get a textual copy of the kernel bug log (because I have to do a hard reset to regain control of the system and the output doesn't get flushed to disk), but I did manage to get a photo of some of it (please refer to attachment). + --- + ApportVersion: 2.20.1-0ubuntu2.18 + Architecture: amd64 + AudioDevicesInUse: + USERPID ACCESS COMMAND + /dev/snd/pcmC1D0p: matt 2754 F...m pulseaudio + /dev/snd/controlC1: matt 2754 F pulseaudio + /dev/snd/controlC0: matt 2754 F pulseaudio + CurrentDesktop: Unity + DistroRelease: Ubuntu 16.04 + EcryptfsInUse: Yes + HibernationDevice: RESUME=UUID=f00235c0-ba8a-4403-91b1-64e9d87b76e0 + InstallationDate: Installed on 2016-04-23 (940 days ago) + InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1) + MachineType: Notebook N150SD/N155SD + NonfreeKernelModules: zfs zunicode zcommon znvpair zavl + Package: linux (not installed) + ProcFB: 0 inteldrmfb + ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-139-generic root=UUID=beb9b9ce-39a7-464a-978c-ac4fb82a5a81 ro quiet splash + ProcVersionSignature: Ubuntu 4.4.0-139.165-generic 4.4.160 + RelatedPackageVersions: + linux-restricted-modules-4.4.0-139-generic N/A + linux-backports-modules-4.4.0-139-generic N/A + linux-firmware 1.157.20 + Tags: xenial + Uname: Linux 4.4.0-139-generic x86_64 + UpgradeStatus: No upgrade log present (probably fresh install) + UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo vboxusers wireshark + _MarkForUpload: True + dmi.bios.date: 03/31/2015 + dmi.bios.vendor: American Megatrends Inc. + dmi.bios.version: 1.03.05 + dmi.board.asset.tag: Tag 12345 + dmi.board.name: N150SD/N155SD + dmi.board.vendor: Notebook + dmi.board.version: Not Applicable + dmi.chassis.asset.tag: No Asset Tag + dmi.chassis.type: 9 + dmi.chassis.vendor: Notebook + dmi.chassis.version: N/A + dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr1.03.05:bd03/31/2015:svnNotebook:pnN150SD/N155SD:pvrNotApplicable:rvnNotebook:rnN150SD/N155SD:rvrNotApplicable:cvnNotebook:ct9:cvrN/A: + dmi.product.name: N150SD/N155SD + dmi.product.version: Not Applicable + dmi.sys.vendor: Notebook ** Attachment added: "AlsaInfo.txt" https://bugs.launchpad.net/bugs/1803929/+attachment/5214089/+files/AlsaInfo.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803929 Title: Summary: Kernel bug (unhandled paging request) on "udisksctl power- off" Status in linux package in Ubuntu: Confirmed Bug description: lsb_release -rd Description: Ubuntu 16.04.5 LTS Release: 16.04 uname -a Linux metabox 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux Steps (1) to reproduce: 1) Plug in a USB3 hard drive. 2) Right click on launcher icon. 3) Select "Safely Remove". After finding this: https://askubuntu.com/a/532691 ...the following steps also reproduce the problem. Steps (2) to reproduce: 1) Plugin in a USB3 hard drive. 2) udisksctl unmount -b /dev/sdXY 3) udisksctl power-off -b /dev/sdX System completely locks and becomes unresponsive, such that even the Magic SysRq key combination does nothing. Most of the time the fans on my laptop go crazy (so the CPU must get stuck in some loop), but once they did not and the system was just locked (without the fans going nuts). I can't get a textual copy of the kernel bug log (because I have to do a hard reset to regain control of the system and the output doesn't get flushed to disk), but I did manage to get a photo of some of it (please refer to attachment). --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDev
[Kernel-packages] [Bug 1803929] ProcCpuinfoMinimal.txt
apport information ** Attachment added: "ProcCpuinfoMinimal.txt" https://bugs.launchpad.net/bugs/1803929/+attachment/5214096/+files/ProcCpuinfoMinimal.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803929 Title: Summary: Kernel bug (unhandled paging request) on "udisksctl power- off" Status in linux package in Ubuntu: Confirmed Bug description: lsb_release -rd Description: Ubuntu 16.04.5 LTS Release: 16.04 uname -a Linux metabox 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux Steps (1) to reproduce: 1) Plug in a USB3 hard drive. 2) Right click on launcher icon. 3) Select "Safely Remove". After finding this: https://askubuntu.com/a/532691 ...the following steps also reproduce the problem. Steps (2) to reproduce: 1) Plugin in a USB3 hard drive. 2) udisksctl unmount -b /dev/sdXY 3) udisksctl power-off -b /dev/sdX System completely locks and becomes unresponsive, such that even the Magic SysRq key combination does nothing. Most of the time the fans on my laptop go crazy (so the CPU must get stuck in some loop), but once they did not and the system was just locked (without the fans going nuts). I can't get a textual copy of the kernel bug log (because I have to do a hard reset to regain control of the system and the output doesn't get flushed to disk), but I did manage to get a photo of some of it (please refer to attachment). --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC1D0p: matt 2754 F...m pulseaudio /dev/snd/controlC1: matt 2754 F pulseaudio /dev/snd/controlC0: matt 2754 F pulseaudio CurrentDesktop: Unity DistroRelease: Ubuntu 16.04 EcryptfsInUse: Yes HibernationDevice: RESUME=UUID=f00235c0-ba8a-4403-91b1-64e9d87b76e0 InstallationDate: Installed on 2016-04-23 (940 days ago) InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1) MachineType: Notebook N150SD/N155SD NonfreeKernelModules: zfs zunicode zcommon znvpair zavl Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-139-generic root=UUID=beb9b9ce-39a7-464a-978c-ac4fb82a5a81 ro quiet splash ProcVersionSignature: Ubuntu 4.4.0-139.165-generic 4.4.160 RelatedPackageVersions: linux-restricted-modules-4.4.0-139-generic N/A linux-backports-modules-4.4.0-139-generic N/A linux-firmware 1.157.20 Tags: xenial Uname: Linux 4.4.0-139-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo vboxusers wireshark _MarkForUpload: True dmi.bios.date: 03/31/2015 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 1.03.05 dmi.board.asset.tag: Tag 12345 dmi.board.name: N150SD/N155SD dmi.board.vendor: Notebook dmi.board.version: Not Applicable dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 9 dmi.chassis.vendor: Notebook dmi.chassis.version: N/A dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr1.03.05:bd03/31/2015:svnNotebook:pnN150SD/N155SD:pvrNotApplicable:rvnNotebook:rnN150SD/N155SD:rvrNotApplicable:cvnNotebook:ct9:cvrN/A: dmi.product.name: N150SD/N155SD dmi.product.version: Not Applicable dmi.sys.vendor: Notebook To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803929/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803929] Lspci.txt
apport information ** Attachment added: "Lspci.txt" https://bugs.launchpad.net/bugs/1803929/+attachment/5214093/+files/Lspci.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803929 Title: Summary: Kernel bug (unhandled paging request) on "udisksctl power- off" Status in linux package in Ubuntu: Confirmed Bug description: lsb_release -rd Description: Ubuntu 16.04.5 LTS Release: 16.04 uname -a Linux metabox 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux Steps (1) to reproduce: 1) Plug in a USB3 hard drive. 2) Right click on launcher icon. 3) Select "Safely Remove". After finding this: https://askubuntu.com/a/532691 ...the following steps also reproduce the problem. Steps (2) to reproduce: 1) Plugin in a USB3 hard drive. 2) udisksctl unmount -b /dev/sdXY 3) udisksctl power-off -b /dev/sdX System completely locks and becomes unresponsive, such that even the Magic SysRq key combination does nothing. Most of the time the fans on my laptop go crazy (so the CPU must get stuck in some loop), but once they did not and the system was just locked (without the fans going nuts). I can't get a textual copy of the kernel bug log (because I have to do a hard reset to regain control of the system and the output doesn't get flushed to disk), but I did manage to get a photo of some of it (please refer to attachment). --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC1D0p: matt 2754 F...m pulseaudio /dev/snd/controlC1: matt 2754 F pulseaudio /dev/snd/controlC0: matt 2754 F pulseaudio CurrentDesktop: Unity DistroRelease: Ubuntu 16.04 EcryptfsInUse: Yes HibernationDevice: RESUME=UUID=f00235c0-ba8a-4403-91b1-64e9d87b76e0 InstallationDate: Installed on 2016-04-23 (940 days ago) InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1) MachineType: Notebook N150SD/N155SD NonfreeKernelModules: zfs zunicode zcommon znvpair zavl Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-139-generic root=UUID=beb9b9ce-39a7-464a-978c-ac4fb82a5a81 ro quiet splash ProcVersionSignature: Ubuntu 4.4.0-139.165-generic 4.4.160 RelatedPackageVersions: linux-restricted-modules-4.4.0-139-generic N/A linux-backports-modules-4.4.0-139-generic N/A linux-firmware 1.157.20 Tags: xenial Uname: Linux 4.4.0-139-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo vboxusers wireshark _MarkForUpload: True dmi.bios.date: 03/31/2015 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 1.03.05 dmi.board.asset.tag: Tag 12345 dmi.board.name: N150SD/N155SD dmi.board.vendor: Notebook dmi.board.version: Not Applicable dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 9 dmi.chassis.vendor: Notebook dmi.chassis.version: N/A dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr1.03.05:bd03/31/2015:svnNotebook:pnN150SD/N155SD:pvrNotApplicable:rvnNotebook:rnN150SD/N155SD:rvrNotApplicable:cvnNotebook:ct9:cvrN/A: dmi.product.name: N150SD/N155SD dmi.product.version: Not Applicable dmi.sys.vendor: Notebook To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803929/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803929] CurrentDmesg.txt
apport information ** Attachment added: "CurrentDmesg.txt" https://bugs.launchpad.net/bugs/1803929/+attachment/5214091/+files/CurrentDmesg.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803929 Title: Summary: Kernel bug (unhandled paging request) on "udisksctl power- off" Status in linux package in Ubuntu: Confirmed Bug description: lsb_release -rd Description: Ubuntu 16.04.5 LTS Release: 16.04 uname -a Linux metabox 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux Steps (1) to reproduce: 1) Plug in a USB3 hard drive. 2) Right click on launcher icon. 3) Select "Safely Remove". After finding this: https://askubuntu.com/a/532691 ...the following steps also reproduce the problem. Steps (2) to reproduce: 1) Plugin in a USB3 hard drive. 2) udisksctl unmount -b /dev/sdXY 3) udisksctl power-off -b /dev/sdX System completely locks and becomes unresponsive, such that even the Magic SysRq key combination does nothing. Most of the time the fans on my laptop go crazy (so the CPU must get stuck in some loop), but once they did not and the system was just locked (without the fans going nuts). I can't get a textual copy of the kernel bug log (because I have to do a hard reset to regain control of the system and the output doesn't get flushed to disk), but I did manage to get a photo of some of it (please refer to attachment). --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC1D0p: matt 2754 F...m pulseaudio /dev/snd/controlC1: matt 2754 F pulseaudio /dev/snd/controlC0: matt 2754 F pulseaudio CurrentDesktop: Unity DistroRelease: Ubuntu 16.04 EcryptfsInUse: Yes HibernationDevice: RESUME=UUID=f00235c0-ba8a-4403-91b1-64e9d87b76e0 InstallationDate: Installed on 2016-04-23 (940 days ago) InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1) MachineType: Notebook N150SD/N155SD NonfreeKernelModules: zfs zunicode zcommon znvpair zavl Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-139-generic root=UUID=beb9b9ce-39a7-464a-978c-ac4fb82a5a81 ro quiet splash ProcVersionSignature: Ubuntu 4.4.0-139.165-generic 4.4.160 RelatedPackageVersions: linux-restricted-modules-4.4.0-139-generic N/A linux-backports-modules-4.4.0-139-generic N/A linux-firmware 1.157.20 Tags: xenial Uname: Linux 4.4.0-139-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo vboxusers wireshark _MarkForUpload: True dmi.bios.date: 03/31/2015 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 1.03.05 dmi.board.asset.tag: Tag 12345 dmi.board.name: N150SD/N155SD dmi.board.vendor: Notebook dmi.board.version: Not Applicable dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 9 dmi.chassis.vendor: Notebook dmi.chassis.version: N/A dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr1.03.05:bd03/31/2015:svnNotebook:pnN150SD/N155SD:pvrNotApplicable:rvnNotebook:rnN150SD/N155SD:rvrNotApplicable:cvnNotebook:ct9:cvrN/A: dmi.product.name: N150SD/N155SD dmi.product.version: Not Applicable dmi.sys.vendor: Notebook To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803929/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803929] [NEW] Summary: Kernel bug (unhandled paging request) on "udisksctl power-off"
Public bug reported: lsb_release -rd Description:Ubuntu 16.04.5 LTS Release:16.04 uname -a Linux metabox 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux Steps (1) to reproduce: 1) Plug in a USB3 hard drive. 2) Right click on launcher icon. 3) Select "Safely Remove". After finding this: https://askubuntu.com/a/532691 ...the following steps also reproduce the problem. Steps (2) to reproduce: 1) Plugin in a USB3 hard drive. 2) udisksctl unmount -b /dev/sdXY 3) udisksctl power-off -b /dev/sdX System completely locks and becomes unresponsive, such that even the Magic SysRq key combination does nothing. Most of the time the fans on my laptop go crazy (so the CPU must get stuck in some loop), but once they did not and the system was just locked (without the fans going nuts). I can't get a textual copy of the kernel bug log (because I have to do a hard reset to regain control of the system and the output doesn't get flushed to disk), but I did manage to get a photo of some of it (please refer to attachment). ** Affects: linux (Ubuntu) Importance: Undecided Status: Incomplete ** Tags: xenial ** Attachment added: "stack-trace.jpg" https://bugs.launchpad.net/bugs/1803929/+attachment/5214085/+files/stack-trace.jpg ** Attachment removed: "stack-trace.jpg" https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803929/+attachment/5214085/+files/stack-trace.jpg -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803929 Title: Summary: Kernel bug (unhandled paging request) on "udisksctl power- off" Status in linux package in Ubuntu: Incomplete Bug description: lsb_release -rd Description: Ubuntu 16.04.5 LTS Release: 16.04 uname -a Linux metabox 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux Steps (1) to reproduce: 1) Plug in a USB3 hard drive. 2) Right click on launcher icon. 3) Select "Safely Remove". After finding this: https://askubuntu.com/a/532691 ...the following steps also reproduce the problem. Steps (2) to reproduce: 1) Plugin in a USB3 hard drive. 2) udisksctl unmount -b /dev/sdXY 3) udisksctl power-off -b /dev/sdX System completely locks and becomes unresponsive, such that even the Magic SysRq key combination does nothing. Most of the time the fans on my laptop go crazy (so the CPU must get stuck in some loop), but once they did not and the system was just locked (without the fans going nuts). I can't get a textual copy of the kernel bug log (because I have to do a hard reset to regain control of the system and the output doesn't get flushed to disk), but I did manage to get a photo of some of it (please refer to attachment). To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803929/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1802810] Re: SD card reader not working on Ubuntu 18.10
This bug seems to have been fixed when I upgraded to Ubuntu Budgie 19.04 -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1802810 Title: SD card reader not working on Ubuntu 18.10 Status in linux package in Ubuntu: Confirmed Bug description: When I upgraded to Ubuntu 18.10 from Ubuntu 18.04, the SD card reader on my Macbook pro early 2015 13 inch stopped working. It won't show up when I do lspci. The SD card reader won't show up in gparted or gnome- disk-utility. My Kernel version is 4.18.0-10-generic Output of lspci 00:00.0 Host bridge: Intel Corporation Broadwell-U Host Bridge -OPI (rev 09) 00:02.0 VGA compatible controller: Intel Corporation Iris Graphics 6100 (rev 09) 00:03.0 Audio device: Intel Corporation Broadwell-U Audio Controller (rev 09) 00:14.0 USB controller: Intel Corporation Wildcat Point-LP USB xHCI Controller (rev 03) 00:15.0 DMA controller: Intel Corporation Wildcat Point-LP Serial IO DMA Controller (rev 03) 00:15.4 Serial bus controller [0c80]: Intel Corporation Wildcat Point-LP Serial IO GSPI Controller #1 (rev 03) 00:16.0 Communication controller: Intel Corporation Wildcat Point-LP MEI Controller #1 (rev 03) 00:1b.0 Audio device: Intel Corporation Wildcat Point-LP High Definition Audio Controller (rev 03) 00:1c.0 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #1 (rev e3) 00:1c.1 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #2 (rev e3) 00:1c.2 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #3 (rev e3) 00:1c.4 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #5 (rev e3) 00:1c.5 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #6 (rev e3) 00:1f.0 ISA bridge: Intel Corporation Wildcat Point-LP LPC Controller (rev 03) 00:1f.3 SMBus: Intel Corporation Wildcat Point-LP SMBus Controller (rev 03) 00:1f.6 Signal processing controller: Intel Corporation Wildcat Point-LP Thermal Management Controller (rev 03) 02:00.0 Multimedia controller: Broadcom Inc. and subsidiaries 720p FaceTime HD Camera 03:00.0 Network controller: Broadcom Inc. and subsidiaries BCM43602 802.11ac Wireless LAN SoC (rev 01) 04:00.0 SATA controller: Samsung Electronics Co Ltd Device a801 (rev 01) 05:00.0 PCI bridge: Intel Corporation DSL5520 Thunderbolt 2 Bridge [Falcon Ridge 4C 2013] 06:00.0 PCI bridge: Intel Corporation DSL5520 Thunderbolt 2 Bridge [Falcon Ridge 4C 2013] 06:03.0 PCI bridge: Intel Corporation DSL5520 Thunderbolt 2 Bridge [Falcon Ridge 4C 2013] 06:04.0 PCI bridge: Intel Corporation DSL5520 Thunderbolt 2 Bridge [Falcon Ridge 4C 2013] 06:05.0 PCI bridge: Intel Corporation DSL5520 Thunderbolt 2 Bridge [Falcon Ridge 4C 2013] 06:06.0 PCI bridge: Intel Corporation DSL5520 Thunderbolt 2 Bridge [Falcon Ridge 4C 2013] 07:00.0 System peripheral: Intel Corporation DSL5520 Thunderbolt 2 NHI [Falcon Ridge 4C 2013] --- ProblemType: Bug ApportVersion: 2.20.10-0ubuntu13.1 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: monter 1583 F pulseaudio /dev/snd/controlC0: monter 1583 F pulseaudio CurrentDesktop: Budgie:GNOME DistroRelease: Ubuntu 18.10 InstallationDate: Installed on 2018-11-12 (0 days ago) InstallationMedia: Ubuntu-Budgie 18.10 "Cosmic Cuttlefish" - Release amd64 (20181017.2) Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 05ac:0273 Apple, Inc. Bus 001 Device 002: ID 05ac:8290 Apple, Inc. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: Apple Inc. MacBookPro12,1 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.18.0-10-generic root=/dev/mapper/ubuntu--budgie--vg-root ro quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12 RelatedPackageVersions: linux-restricted-modules-4.18.0-10-generic N/A linux-backports-modules-4.18.0-10-generic N/A linux-firmware 1.175 Tags: cosmic Uname: Linux 4.18.0-10-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo _MarkForUpload: True dmi.bios.date: 09/17/2018 dmi.bios.vendor: Apple Inc. dmi.bios.version: 180.0.0.0.0 dmi.board.name: Mac-E43C1C25D4880AD6 dmi.board.vendor: Apple Inc. dmi.board.version: MacBookPro12,1 dmi.chassis.type: 9 dmi.chassis.vendor: Apple Inc. dmi.chassis.version: Mac-E43C1C25D4880AD6 dmi.modalias: dmi:bvnAppleInc.:bvr180.0.0.0.0:bd09/17/2018:svnAppleInc.:pnMacBookPro12,1:pvr1.0:rvnAppleInc.:rnMac-E43C1C25D4880AD6:rvrMacBookPro12,1:cvnAppleInc.:ct9:cvrMac-E43C1C25D4880AD6: dmi.product.family: MacBook Pro dmi.product.name: MacBookPro12,1 dmi.produc
[Kernel-packages] [Bug 818544] Re: Brother MFC-240C FAX/Printer error
The other most probable reason for the printing error is the connection between your computer and the printer. This is very useful information for me. thanks for sharing. https://avastsupportnumber.co.uk/blog/fix- avast-error-7005/ -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/818544 Title: Brother MFC-240C FAX/Printer error Status in linux package in Ubuntu: Expired Bug description: Before the extensive listing. I had the printer working fine through manually installing the printer drivers from the Brother software site since 9.10, and also for a HP printer. A couple weeks back, the universal printer drivers were changed on my Computer via a popup updater (damned thing). I tried removing everything, and re- installing the origional printers. One problem is most of the online help is for the older 10.10, and is always using menues that have been removed. I also busted out my linux manual and used the lpadmin, and manually configuring cups. The cups file looks fine, but constantly changes permissions every ten minutes to only allow root to access it. In addition I get the following error: lpinfo: cups-driverd failed to execute. cupsd: Child exited on signal 15! The main error printed starts like this: Cannot execute command due to filter stopping job because scheduler cannot execute filter To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/818544/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803929] Re: Summary: Kernel bug (unhandled paging request) on "udisksctl power-off"
** Attachment added: "stack-trace.jpg" https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803929/+attachment/5214086/+files/stack-trace.jpg -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803929 Title: Summary: Kernel bug (unhandled paging request) on "udisksctl power- off" Status in linux package in Ubuntu: Incomplete Bug description: lsb_release -rd Description: Ubuntu 16.04.5 LTS Release: 16.04 uname -a Linux metabox 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux Steps (1) to reproduce: 1) Plug in a USB3 hard drive. 2) Right click on launcher icon. 3) Select "Safely Remove". After finding this: https://askubuntu.com/a/532691 ...the following steps also reproduce the problem. Steps (2) to reproduce: 1) Plugin in a USB3 hard drive. 2) udisksctl unmount -b /dev/sdXY 3) udisksctl power-off -b /dev/sdX System completely locks and becomes unresponsive, such that even the Magic SysRq key combination does nothing. Most of the time the fans on my laptop go crazy (so the CPU must get stuck in some loop), but once they did not and the system was just locked (without the fans going nuts). I can't get a textual copy of the kernel bug log (because I have to do a hard reset to regain control of the system and the output doesn't get flushed to disk), but I did manage to get a photo of some of it (please refer to attachment). To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803929/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803929] Missing required logs.
This bug is missing log files that will aid in diagnosing the problem. While running an Ubuntu kernel (not a mainline or third-party kernel) please enter the following command in a terminal window: apport-collect 1803929 and then change the status of the bug to 'Confirmed'. If, due to the nature of the issue you have encountered, you are unable to run this command, please add a comment stating that fact and change the bug status to 'Confirmed'. This change has been made by an automated script, maintained by the Ubuntu Kernel Team. ** Changed in: linux (Ubuntu) Status: New => Incomplete ** Tags added: xenial -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803929 Title: Summary: Kernel bug (unhandled paging request) on "udisksctl power- off" Status in linux package in Ubuntu: Incomplete Bug description: lsb_release -rd Description: Ubuntu 16.04.5 LTS Release: 16.04 uname -a Linux metabox 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux Steps (1) to reproduce: 1) Plug in a USB3 hard drive. 2) Right click on launcher icon. 3) Select "Safely Remove". After finding this: https://askubuntu.com/a/532691 ...the following steps also reproduce the problem. Steps (2) to reproduce: 1) Plugin in a USB3 hard drive. 2) udisksctl unmount -b /dev/sdXY 3) udisksctl power-off -b /dev/sdX System completely locks and becomes unresponsive, such that even the Magic SysRq key combination does nothing. Most of the time the fans on my laptop go crazy (so the CPU must get stuck in some loop), but once they did not and the system was just locked (without the fans going nuts). I can't get a textual copy of the kernel bug log (because I have to do a hard reset to regain control of the system and the output doesn't get flushed to disk), but I did manage to get a photo of some of it (please refer to attachment). To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803929/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1802810] Re: SD card reader not working on Ubuntu 18.10
Comic and Disco use the same linux and grub2 packages at this moment, so it's interesting to see which new package fixes the issue... -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1802810 Title: SD card reader not working on Ubuntu 18.10 Status in linux package in Ubuntu: Confirmed Bug description: When I upgraded to Ubuntu 18.10 from Ubuntu 18.04, the SD card reader on my Macbook pro early 2015 13 inch stopped working. It won't show up when I do lspci. The SD card reader won't show up in gparted or gnome- disk-utility. My Kernel version is 4.18.0-10-generic Output of lspci 00:00.0 Host bridge: Intel Corporation Broadwell-U Host Bridge -OPI (rev 09) 00:02.0 VGA compatible controller: Intel Corporation Iris Graphics 6100 (rev 09) 00:03.0 Audio device: Intel Corporation Broadwell-U Audio Controller (rev 09) 00:14.0 USB controller: Intel Corporation Wildcat Point-LP USB xHCI Controller (rev 03) 00:15.0 DMA controller: Intel Corporation Wildcat Point-LP Serial IO DMA Controller (rev 03) 00:15.4 Serial bus controller [0c80]: Intel Corporation Wildcat Point-LP Serial IO GSPI Controller #1 (rev 03) 00:16.0 Communication controller: Intel Corporation Wildcat Point-LP MEI Controller #1 (rev 03) 00:1b.0 Audio device: Intel Corporation Wildcat Point-LP High Definition Audio Controller (rev 03) 00:1c.0 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #1 (rev e3) 00:1c.1 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #2 (rev e3) 00:1c.2 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #3 (rev e3) 00:1c.4 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #5 (rev e3) 00:1c.5 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #6 (rev e3) 00:1f.0 ISA bridge: Intel Corporation Wildcat Point-LP LPC Controller (rev 03) 00:1f.3 SMBus: Intel Corporation Wildcat Point-LP SMBus Controller (rev 03) 00:1f.6 Signal processing controller: Intel Corporation Wildcat Point-LP Thermal Management Controller (rev 03) 02:00.0 Multimedia controller: Broadcom Inc. and subsidiaries 720p FaceTime HD Camera 03:00.0 Network controller: Broadcom Inc. and subsidiaries BCM43602 802.11ac Wireless LAN SoC (rev 01) 04:00.0 SATA controller: Samsung Electronics Co Ltd Device a801 (rev 01) 05:00.0 PCI bridge: Intel Corporation DSL5520 Thunderbolt 2 Bridge [Falcon Ridge 4C 2013] 06:00.0 PCI bridge: Intel Corporation DSL5520 Thunderbolt 2 Bridge [Falcon Ridge 4C 2013] 06:03.0 PCI bridge: Intel Corporation DSL5520 Thunderbolt 2 Bridge [Falcon Ridge 4C 2013] 06:04.0 PCI bridge: Intel Corporation DSL5520 Thunderbolt 2 Bridge [Falcon Ridge 4C 2013] 06:05.0 PCI bridge: Intel Corporation DSL5520 Thunderbolt 2 Bridge [Falcon Ridge 4C 2013] 06:06.0 PCI bridge: Intel Corporation DSL5520 Thunderbolt 2 Bridge [Falcon Ridge 4C 2013] 07:00.0 System peripheral: Intel Corporation DSL5520 Thunderbolt 2 NHI [Falcon Ridge 4C 2013] --- ProblemType: Bug ApportVersion: 2.20.10-0ubuntu13.1 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: monter 1583 F pulseaudio /dev/snd/controlC0: monter 1583 F pulseaudio CurrentDesktop: Budgie:GNOME DistroRelease: Ubuntu 18.10 InstallationDate: Installed on 2018-11-12 (0 days ago) InstallationMedia: Ubuntu-Budgie 18.10 "Cosmic Cuttlefish" - Release amd64 (20181017.2) Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 05ac:0273 Apple, Inc. Bus 001 Device 002: ID 05ac:8290 Apple, Inc. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: Apple Inc. MacBookPro12,1 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.18.0-10-generic root=/dev/mapper/ubuntu--budgie--vg-root ro quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12 RelatedPackageVersions: linux-restricted-modules-4.18.0-10-generic N/A linux-backports-modules-4.18.0-10-generic N/A linux-firmware 1.175 Tags: cosmic Uname: Linux 4.18.0-10-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo _MarkForUpload: True dmi.bios.date: 09/17/2018 dmi.bios.vendor: Apple Inc. dmi.bios.version: 180.0.0.0.0 dmi.board.name: Mac-E43C1C25D4880AD6 dmi.board.vendor: Apple Inc. dmi.board.version: MacBookPro12,1 dmi.chassis.type: 9 dmi.chassis.vendor: Apple Inc. dmi.chassis.version: Mac-E43C1C25D4880AD6 dmi.modalias: dmi:bvnAppleInc.:bvr180.0.0.0.0:bd09/17/2018:svnAppleInc.:pnMacBookPro12,1:pvr1.0:rvnAppleInc.:rnMac-E43C1C25D4880AD6:rvrMacBookPro12,1:cvnAppleInc.:ct9:cvrMac-E43C1C25D4880AD6: dmi.product.family
[Kernel-packages] [Bug 1802558] Re: linux-aws: 4.15.0-1028.29 -proposed tracker
** Changed in: kernel-sru-workflow/prepare-package Status: In Progress => Fix Released ** Description changed: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- kernel-stable-master-bug: 1803592 phase: Uploaded reason: prepare-package: Package not yet uploaded + kernel-stable-phase-changed:Monday, 19. November 2018 05:40 UTC + kernel-stable-phase:Uploaded ** Description changed: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- kernel-stable-master-bug: 1803592 phase: Uploaded reason: - prepare-package: Package not yet uploaded - kernel-stable-phase-changed:Monday, 19. November 2018 05:40 UTC - kernel-stable-phase:Uploaded + promote-to-proposed: Builds not complete -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux-aws in Ubuntu. https://bugs.launchpad.net/bugs/1802558 Title: linux-aws: 4.15.0-1028.29 -proposed tracker Status in Kernel SRU Workflow: In Progress Status in Kernel SRU Workflow automated-testing series: New Status in Kernel SRU Workflow certification-testing series: Invalid Status in Kernel SRU Workflow prepare-package series: Fix Released Status in Kernel SRU Workflow prepare-package-meta series: Fix Released Status in Kernel SRU Workflow promote-to-proposed series: New Status in Kernel SRU Workflow promote-to-security series: New Status in Kernel SRU Workflow promote-to-updates series: New Status in Kernel SRU Workflow regression-testing series: New Status in Kernel SRU Workflow security-signoff series: New Status in Kernel SRU Workflow snap-release-to-beta series: New Status in Kernel SRU Workflow snap-release-to-candidate series: New Status in Kernel SRU Workflow snap-release-to-edge series: New Status in Kernel SRU Workflow snap-release-to-stable series: Invalid Status in Kernel SRU Workflow upload-to-ppa series: New Status in Kernel SRU Workflow verification-testing series: New Status in linux-aws package in Ubuntu: Invalid Status in linux-aws source package in Bionic: Confirmed Bug description: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- kernel-stable-master-bug: 1803592 phase: Uploaded reason: promote-to-proposed: Builds not complete To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1802558/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1802776] Re: linux: 4.4.0-140.166 -proposed tracker
** Changed in: kernel-sru-workflow/snap-release-to-beta Status: Confirmed => Fix Released ** Changed in: kernel-sru-workflow/snap-release-to-edge Status: Confirmed => Fix Released ** Changed in: kernel-sru-workflow/snap-certification-testing Status: New => Confirmed ** Description changed: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow backports: bug 1802778 (linux-aws), bug 1802779 (linux-lts-xenial) derivatives: bug 1802780 (linux-raspi2), bug 1802781 (linux-snapdragon), bug 1802783 (linux-euclid), bug 1802785 (linux-aws), bug 1802786 (linux-kvm) -- swm properties -- boot-testing-requested: true bugs-spammed: true phase: Promoted to proposed proposed-announcement-sent: true proposed-testing-requested: true reason: automated-testing: Testing FAILED certification-testing: Testing in progress regression-testing: Testing in progress security-signoff: Waiting for signoff - snap-release-to-beta: Snap not in beta channel - snap-release-to-edge: Snap not in edge channel + snap-certification-testing: Ready verification-testing: Testing in progress -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1802776 Title: linux: 4.4.0-140.166 -proposed tracker Status in Kernel SRU Workflow: In Progress Status in Kernel SRU Workflow automated-testing series: Incomplete Status in Kernel SRU Workflow certification-testing series: Confirmed Status in Kernel SRU Workflow prepare-package series: Fix Released Status in Kernel SRU Workflow prepare-package-meta series: Fix Released Status in Kernel SRU Workflow prepare-package-signed series: Fix Released Status in Kernel SRU Workflow promote-to-proposed series: Fix Released Status in Kernel SRU Workflow promote-to-security series: New Status in Kernel SRU Workflow promote-to-updates series: New Status in Kernel SRU Workflow regression-testing series: Confirmed Status in Kernel SRU Workflow security-signoff series: In Progress Status in Kernel SRU Workflow snap-certification-testing series: Confirmed Status in Kernel SRU Workflow snap-release-to-beta series: Fix Released Status in Kernel SRU Workflow snap-release-to-candidate series: New Status in Kernel SRU Workflow snap-release-to-edge series: Fix Released Status in Kernel SRU Workflow snap-release-to-stable series: New Status in Kernel SRU Workflow upload-to-ppa series: Invalid Status in Kernel SRU Workflow verification-testing series: Confirmed Status in linux package in Ubuntu: Invalid Status in linux source package in Xenial: Confirmed Bug description: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow backports: bug 1802778 (linux-aws), bug 1802779 (linux-lts-xenial) derivatives: bug 1802780 (linux-raspi2), bug 1802781 (linux-snapdragon), bug 1802783 (linux-euclid), bug 1802785 (linux-aws), bug 1802786 (linux-kvm) -- swm properties -- boot-testing-requested: true bugs-spammed: true phase: Promoted to proposed proposed-announcement-sent: true proposed-testing-requested: true reason: automated-testing: Testing FAILED certification-testing: Testing in progress regression-testing: Testing in progress security-signoff: Waiting for signoff snap-certification-testing: Ready verification-testing: Testing in progress To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1802776/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1802558] Re: linux-aws: 4.15.0-1028.29 -proposed tracker
** Changed in: kernel-sru-workflow/prepare-package-meta Status: In Progress => Fix Released ** Changed in: kernel-sru-workflow/snap-release-to-stable Status: New => Invalid ** Description changed: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- kernel-stable-master-bug: 1803592 phase: Packaging reason: prepare-package: Version not specified + kernel-stable-phase-changed:Monday, 19. November 2018 05:02 UTC + kernel-stable-phase:Uploaded ** Description changed: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- kernel-stable-master-bug: 1803592 - phase: Packaging + phase: Uploaded reason: - prepare-package: Version not specified - kernel-stable-phase-changed:Monday, 19. November 2018 05:02 UTC - kernel-stable-phase:Uploaded + prepare-package: Package not yet uploaded -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux-aws in Ubuntu. https://bugs.launchpad.net/bugs/1802558 Title: linux-aws: 4.15.0-1028.29 -proposed tracker Status in Kernel SRU Workflow: In Progress Status in Kernel SRU Workflow automated-testing series: New Status in Kernel SRU Workflow certification-testing series: Invalid Status in Kernel SRU Workflow prepare-package series: In Progress Status in Kernel SRU Workflow prepare-package-meta series: Fix Released Status in Kernel SRU Workflow promote-to-proposed series: New Status in Kernel SRU Workflow promote-to-security series: New Status in Kernel SRU Workflow promote-to-updates series: New Status in Kernel SRU Workflow regression-testing series: New Status in Kernel SRU Workflow security-signoff series: New Status in Kernel SRU Workflow snap-release-to-beta series: New Status in Kernel SRU Workflow snap-release-to-candidate series: New Status in Kernel SRU Workflow snap-release-to-edge series: New Status in Kernel SRU Workflow snap-release-to-stable series: Invalid Status in Kernel SRU Workflow upload-to-ppa series: New Status in Kernel SRU Workflow verification-testing series: New Status in linux-aws package in Ubuntu: Invalid Status in linux-aws source package in Bionic: Confirmed Bug description: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- kernel-stable-master-bug: 1803592 phase: Uploaded reason: prepare-package: Package not yet uploaded To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1802558/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1802785] Re: linux-aws: 4.4.0-1073.83 -proposed tracker
** Changed in: kernel-sru-workflow/snap-release-to-beta Status: Confirmed => Fix Released ** Changed in: kernel-sru-workflow/snap-release-to-candidate Status: New => Confirmed ** Changed in: kernel-sru-workflow/snap-release-to-edge Status: Confirmed => Fix Released ** Description changed: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1802776 phase: Promoted to proposed proposed-announcement-sent: true proposed-testing-requested: true reason: automated-testing: Testing FAILED regression-testing: Testing in progress security-signoff: Waiting for signoff - snap-release-to-beta: Snap not in beta channel - snap-release-to-edge: Snap not in edge channel + snap-release-to-candidate: Snap not in candidate channel verification-testing: Testing in progress -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux-aws in Ubuntu. https://bugs.launchpad.net/bugs/1802785 Title: linux-aws: 4.4.0-1073.83 -proposed tracker Status in Kernel SRU Workflow: In Progress Status in Kernel SRU Workflow automated-testing series: Incomplete Status in Kernel SRU Workflow certification-testing series: Invalid Status in Kernel SRU Workflow prepare-package series: Fix Released Status in Kernel SRU Workflow prepare-package-meta series: Fix Released Status in Kernel SRU Workflow promote-to-proposed series: Fix Released Status in Kernel SRU Workflow promote-to-security series: New Status in Kernel SRU Workflow promote-to-updates series: New Status in Kernel SRU Workflow regression-testing series: Confirmed Status in Kernel SRU Workflow security-signoff series: In Progress Status in Kernel SRU Workflow snap-release-to-beta series: Fix Released Status in Kernel SRU Workflow snap-release-to-candidate series: Confirmed Status in Kernel SRU Workflow snap-release-to-edge series: Fix Released Status in Kernel SRU Workflow snap-release-to-stable series: Invalid Status in Kernel SRU Workflow upload-to-ppa series: New Status in Kernel SRU Workflow verification-testing series: Confirmed Status in linux-aws package in Ubuntu: Invalid Status in linux-aws source package in Xenial: Confirmed Bug description: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1802776 phase: Promoted to proposed proposed-announcement-sent: true proposed-testing-requested: true reason: automated-testing: Testing FAILED regression-testing: Testing in progress security-signoff: Waiting for signoff snap-release-to-candidate: Snap not in candidate channel verification-testing: Testing in progress To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1802785/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1802588] Re: linux-azure: 4.15.0-1032.33~16.04.1 -proposed tracker
** Changed in: kernel-sru-workflow/snap-release-to-beta Status: Confirmed => Fix Released ** Changed in: kernel-sru-workflow/snap-release-to-candidate Status: New => Confirmed ** Changed in: kernel-sru-workflow/snap-release-to-edge Status: Confirmed => Fix Released ** Description changed: This bug is for tracking the 4.15.0-1032.33~16.04.1 upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1799411 phase: Promoted to proposed proposed-announcement-sent: true proposed-testing-requested: true reason: promote-to-security: Stakeholder signoff not verified promote-to-updates: Stakeholder signoff not verified - snap-release-to-beta: Snap not in beta channel - snap-release-to-edge: Snap not in edge channel + snap-release-to-candidate: Snap not in candidate channel stakeholder-signoff: Waiting for signoff -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux-azure in Ubuntu. https://bugs.launchpad.net/bugs/1802588 Title: linux-azure: 4.15.0-1032.33~16.04.1 -proposed tracker Status in Kernel SRU Workflow: In Progress Status in Kernel SRU Workflow automated-testing series: Fix Released Status in Kernel SRU Workflow certification-testing series: Invalid Status in Kernel SRU Workflow prepare-package series: Fix Released Status in Kernel SRU Workflow prepare-package-meta series: Fix Released Status in Kernel SRU Workflow prepare-package-signed series: Fix Released Status in Kernel SRU Workflow promote-to-proposed series: Fix Released Status in Kernel SRU Workflow promote-to-security series: New Status in Kernel SRU Workflow promote-to-updates series: New Status in Kernel SRU Workflow regression-testing series: Fix Released Status in Kernel SRU Workflow security-signoff series: Fix Released Status in Kernel SRU Workflow snap-release-to-beta series: Fix Released Status in Kernel SRU Workflow snap-release-to-candidate series: Confirmed Status in Kernel SRU Workflow snap-release-to-edge series: Fix Released Status in Kernel SRU Workflow snap-release-to-stable series: Invalid Status in Kernel SRU Workflow stakeholder-signoff series: Confirmed Status in Kernel SRU Workflow upload-to-ppa series: New Status in Kernel SRU Workflow verification-testing series: Fix Released Status in linux-azure package in Ubuntu: Invalid Status in linux-azure source package in Xenial: Confirmed Bug description: This bug is for tracking the 4.15.0-1032.33~16.04.1 upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1799411 phase: Promoted to proposed proposed-announcement-sent: true proposed-testing-requested: true reason: promote-to-security: Stakeholder signoff not verified promote-to-updates: Stakeholder signoff not verified snap-release-to-candidate: Snap not in candidate channel stakeholder-signoff: Waiting for signoff To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1802588/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1802503] Re: linux-azure: 4.15.0-1032.33 -proposed tracker
** Changed in: kernel-sru-workflow/snap-release-to-beta Status: Confirmed => Fix Released ** Changed in: kernel-sru-workflow/snap-release-to-candidate Status: New => Confirmed ** Changed in: kernel-sru-workflow/snap-release-to-edge Status: Confirmed => Fix Released ** Description changed: This bug is for tracking the 4.15.0-1032.33 upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1799411 phase: Promoted to proposed proposed-announcement-sent: true proposed-testing-requested: true reason: promote-to-security: Stakeholder signoff not verified promote-to-updates: Stakeholder signoff not verified - snap-release-to-beta: Snap not in 18/beta channel - snap-release-to-edge: Snap not in 18/edge channel + snap-release-to-candidate: Snap not in 18/candidate channel stakeholder-signoff: Waiting for signoff -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux-azure in Ubuntu. https://bugs.launchpad.net/bugs/1802503 Title: linux-azure: 4.15.0-1032.33 -proposed tracker Status in Kernel SRU Workflow: In Progress Status in Kernel SRU Workflow automated-testing series: Fix Released Status in Kernel SRU Workflow certification-testing series: Invalid Status in Kernel SRU Workflow prepare-package series: Fix Released Status in Kernel SRU Workflow prepare-package-meta series: Fix Released Status in Kernel SRU Workflow prepare-package-signed series: Fix Released Status in Kernel SRU Workflow promote-to-proposed series: Fix Released Status in Kernel SRU Workflow promote-to-security series: New Status in Kernel SRU Workflow promote-to-updates series: New Status in Kernel SRU Workflow regression-testing series: Fix Released Status in Kernel SRU Workflow security-signoff series: Fix Released Status in Kernel SRU Workflow snap-release-to-beta series: Fix Released Status in Kernel SRU Workflow snap-release-to-candidate series: Confirmed Status in Kernel SRU Workflow snap-release-to-edge series: Fix Released Status in Kernel SRU Workflow snap-release-to-stable series: Invalid Status in Kernel SRU Workflow stakeholder-signoff series: Confirmed Status in Kernel SRU Workflow upload-to-ppa series: New Status in Kernel SRU Workflow verification-testing series: Fix Released Status in linux-azure package in Ubuntu: Invalid Status in linux-azure source package in Bionic: Confirmed Bug description: This bug is for tracking the 4.15.0-1032.33 upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1799411 phase: Promoted to proposed proposed-announcement-sent: true proposed-testing-requested: true reason: promote-to-security: Stakeholder signoff not verified promote-to-updates: Stakeholder signoff not verified snap-release-to-candidate: Snap not in 18/candidate channel stakeholder-signoff: Waiting for signoff To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1802503/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1802560] Re: linux-gcp: 4.15.0-1025.26 -proposed tracker
** Changed in: kernel-sru-workflow/snap-release-to-beta Status: Confirmed => Fix Released ** Changed in: kernel-sru-workflow/snap-release-to-candidate Status: New => Confirmed ** Changed in: kernel-sru-workflow/snap-release-to-edge Status: Confirmed => Fix Released ** Description changed: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1803592 phase: Promoted to proposed proposed-announcement-sent: true proposed-testing-requested: true reason: automated-testing: Testing FAILED promote-to-updates: Nvidia GCP object not found -- 4.15.0-1025 regression-testing: Testing in progress security-signoff: Waiting for signoff - snap-release-to-beta: Snap not in 18/beta channel - snap-release-to-edge: Snap not in 18/edge channel + snap-release-to-candidate: Snap not in 18/candidate channel verification-testing: Testing in progress -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux-gcp in Ubuntu. https://bugs.launchpad.net/bugs/1802560 Title: linux-gcp: 4.15.0-1025.26 -proposed tracker Status in Kernel SRU Workflow: In Progress Status in Kernel SRU Workflow automated-testing series: Incomplete Status in Kernel SRU Workflow certification-testing series: Invalid Status in Kernel SRU Workflow prepare-package series: Fix Released Status in Kernel SRU Workflow prepare-package-meta series: Fix Released Status in Kernel SRU Workflow prepare-package-signed series: Fix Released Status in Kernel SRU Workflow promote-to-proposed series: Fix Released Status in Kernel SRU Workflow promote-to-security series: New Status in Kernel SRU Workflow promote-to-updates series: New Status in Kernel SRU Workflow regression-testing series: Confirmed Status in Kernel SRU Workflow security-signoff series: In Progress Status in Kernel SRU Workflow snap-release-to-beta series: Fix Released Status in Kernel SRU Workflow snap-release-to-candidate series: Confirmed Status in Kernel SRU Workflow snap-release-to-edge series: Fix Released Status in Kernel SRU Workflow snap-release-to-stable series: Invalid Status in Kernel SRU Workflow upload-to-ppa series: New Status in Kernel SRU Workflow verification-testing series: Confirmed Status in linux-gcp package in Ubuntu: Invalid Status in linux-gcp source package in Bionic: Confirmed Bug description: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- boot-testing-requested: true kernel-stable-master-bug: 1803592 phase: Promoted to proposed proposed-announcement-sent: true proposed-testing-requested: true reason: automated-testing: Testing FAILED promote-to-updates: Nvidia GCP object not found -- 4.15.0-1025 regression-testing: Testing in progress security-signoff: Waiting for signoff snap-release-to-candidate: Snap not in 18/candidate channel verification-testing: Testing in progress To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1802560/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1802834] Re: Dim screen after first boot on Thinkpad A285
Upgraded to 4.15.0-42 kernel from proposed. And this issue is still exist. And the default value is 12, but the max is 255. $ cat /sys/class/backlight/amdgpu_bl0/brightness 12 $ cat /sys/class/backlight/amdgpu_bl0/max_brightness 255 -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1802834 Title: Dim screen after first boot on Thinkpad A285 Status in linux package in Ubuntu: Confirmed Bug description: We installed the 18.04 daily image on ThinkPad A285, found the screen is dim at the first boot. --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.4 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: u 1481 F pulseaudio /dev/snd/controlC0: u 1481 F pulseaudio CurrentDesktop: ubuntu:GNOME DistroRelease: Ubuntu 18.04 InstallationDate: Installed on 2018-11-12 (0 days ago) InstallationMedia: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 (20180725) MachineType: LENOVO 20MWZ47RUS Package: linux (not installed) ProcFB: 0 amdgpudrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-38-generic root=UUID=347498ab-8eae-42d3-a1e3-74e9be6b6ba3 ro quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: bionic Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo _MarkForUpload: True dmi.bios.date: 09/21/2018 dmi.bios.vendor: LENOVO dmi.bios.version: R0XET30W (1.07 ) dmi.board.asset.tag: Not Available dmi.board.name: 20MWZ47RUS dmi.board.vendor: LENOVO dmi.board.version: SDK0J40697 WIN dmi.chassis.asset.tag: No Asset Information dmi.chassis.type: 10 dmi.chassis.vendor: LENOVO dmi.chassis.version: None dmi.modalias: dmi:bvnLENOVO:bvrR0XET30W(1.07):bd09/21/2018:svnLENOVO:pn20MWZ47RUS:pvrThinkPadA285:rvnLENOVO:rn20MWZ47RUS:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone: dmi.product.family: ThinkPad A285 dmi.product.name: 20MWZ47RUS dmi.product.version: ThinkPad A285 dmi.sys.vendor: LENOVO To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1802834/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1802558] Re: linux-aws: 4.15.0-1028.28 -proposed tracker
** Summary changed: - linux-aws: -proposed tracker + linux-aws: 4.15.0-1028.28 -proposed tracker ** Changed in: kernel-sru-workflow/prepare-package Status: Confirmed => In Progress ** Changed in: kernel-sru-workflow/prepare-package Assignee: Canonical Kernel Team (canonical-kernel-team) => Khaled El Mously (kmously) ** Changed in: kernel-sru-workflow/prepare-package-meta Status: New => In Progress ** Changed in: kernel-sru-workflow/prepare-package-meta Assignee: Canonical Kernel Team (canonical-kernel-team) => Khaled El Mously (kmously) ** Summary changed: - linux-aws: 4.15.0-1028.28 -proposed tracker + linux-aws: 4.15.0-1028.29 -proposed tracker -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux-aws in Ubuntu. https://bugs.launchpad.net/bugs/1802558 Title: linux-aws: 4.15.0-1028.29 -proposed tracker Status in Kernel SRU Workflow: In Progress Status in Kernel SRU Workflow automated-testing series: New Status in Kernel SRU Workflow certification-testing series: Invalid Status in Kernel SRU Workflow prepare-package series: In Progress Status in Kernel SRU Workflow prepare-package-meta series: In Progress Status in Kernel SRU Workflow promote-to-proposed series: New Status in Kernel SRU Workflow promote-to-security series: New Status in Kernel SRU Workflow promote-to-updates series: New Status in Kernel SRU Workflow regression-testing series: New Status in Kernel SRU Workflow security-signoff series: New Status in Kernel SRU Workflow snap-release-to-beta series: New Status in Kernel SRU Workflow snap-release-to-candidate series: New Status in Kernel SRU Workflow snap-release-to-edge series: New Status in Kernel SRU Workflow snap-release-to-stable series: New Status in Kernel SRU Workflow upload-to-ppa series: New Status in Kernel SRU Workflow verification-testing series: New Status in linux-aws package in Ubuntu: Invalid Status in linux-aws source package in Bionic: Confirmed Bug description: This bug is for tracking the upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- kernel-stable-master-bug: 1803592 phase: Packaging reason: prepare-package: Version not specified To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1802558/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803592] Re: linux: 4.15.0-42.45 -proposed tracker
** Changed in: kernel-sru-workflow/snap-release-to-beta Status: Confirmed => Fix Released ** Changed in: kernel-sru-workflow/snap-release-to-candidate Status: New => Confirmed ** Changed in: kernel-sru-workflow/snap-release-to-edge Status: Confirmed => Fix Released ** Description changed: This bug is for tracking the 4.15.0-42.45 upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- backports: null boot-testing-requested: true bugs-spammed: true derivatives: bug 1803678 (linux-oem) phase: Promoted to proposed proposed-announcement-sent: true proposed-testing-requested: true reason: automated-testing: Testing FAILED certification-testing: Testing in progress regression-testing: Testing in progress security-signoff: Waiting for signoff - snap-release-to-beta: Snap not in 18/beta channel - snap-release-to-edge: Snap not in 18/edge channel + snap-release-to-candidate: Snap not in 18/candidate channel verification-testing: Testing in progress -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803592 Title: linux: 4.15.0-42.45 -proposed tracker Status in Kernel SRU Workflow: In Progress Status in Kernel SRU Workflow automated-testing series: Incomplete Status in Kernel SRU Workflow certification-testing series: Confirmed Status in Kernel SRU Workflow prepare-package series: Fix Released Status in Kernel SRU Workflow prepare-package-meta series: Fix Released Status in Kernel SRU Workflow prepare-package-signed series: Fix Released Status in Kernel SRU Workflow promote-to-proposed series: Fix Released Status in Kernel SRU Workflow promote-to-security series: New Status in Kernel SRU Workflow promote-to-updates series: New Status in Kernel SRU Workflow regression-testing series: Confirmed Status in Kernel SRU Workflow security-signoff series: In Progress Status in Kernel SRU Workflow snap-release-to-beta series: Fix Released Status in Kernel SRU Workflow snap-release-to-candidate series: Confirmed Status in Kernel SRU Workflow snap-release-to-edge series: Fix Released Status in Kernel SRU Workflow snap-release-to-stable series: Invalid Status in Kernel SRU Workflow upload-to-ppa series: Invalid Status in Kernel SRU Workflow verification-testing series: Confirmed Status in linux package in Ubuntu: Invalid Status in linux source package in Bionic: Confirmed Bug description: This bug is for tracking the 4.15.0-42.45 upload package. This bug will contain status and testing results related to that upload. For an explanation of the tasks and the associated workflow see: https://wiki.ubuntu.com/Kernel/kernel-sru-workflow -- swm properties -- backports: null boot-testing-requested: true bugs-spammed: true derivatives: bug 1803678 (linux-oem) phase: Promoted to proposed proposed-announcement-sent: true proposed-testing-requested: true reason: automated-testing: Testing FAILED certification-testing: Testing in progress regression-testing: Testing in progress security-signoff: Waiting for signoff snap-release-to-candidate: Snap not in 18/candidate channel verification-testing: Testing in progress To manage notifications about this bug go to: https://bugs.launchpad.net/kernel-sru-workflow/+bug/1803592/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1776616] Re: Ubuntu 18.04 getting stuck at "Starting Reboot" and "Starting Power-Off"
Guy Rouillier, thank you very much for trying to fix this issue. Do you also have an issue that makes the laptop freeze on the toshiba splash screen, if you reboot with the wi-fi turned on? This happens on a210 with 16.04 (kernel 4.4). Is it the same on a215? Thanks. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1776616 Title: Ubuntu 18.04 getting stuck at "Starting Reboot" and "Starting Power- Off" Status in linux package in Ubuntu: Confirmed Status in linux source package in Bionic: Confirmed Bug description: Hardware: HPE ProLiant DL360 gen9 Ubuntu Version: 18.04 Problem: When rebooting the server, everything goes well (shutting down services, unmounting etc) until the last step where it reads "Starting Reboot". At this point the system is getting stuck and nothing else can can be done than holding the power button in for a long enough time to turn it off. At the same time as the system get stuck, a red error light is lightening up on the server. This light is green until it reaches this "Starting Reboot" stage. The same happens if the server is shutdown, with the difference that the last message is "Starting Power-Off" instead of "Starting Reboot". The server is installed with a new clean 18.04 installation. This server was rebooting/shutting down without a problem with all releases between 16.04 and 17.10. This problem is serious as it prevents remote reboot. --- ProblemType: Bug AlsaDevices: total 0 crw-rw 1 root audio 116, 1 Jun 13 11:16 seq crw-rw 1 root audio 116, 33 Jun 13 11:16 timer AplayDevices: Error: [Errno 2] No such file or directory: 'aplay': 'aplay' ApportVersion: 2.20.9-0ubuntu7.2 Architecture: amd64 ArecordDevices: Error: [Errno 2] No such file or directory: 'arecord': 'arecord' AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', '/dev/snd/timer'] failed with exit code 1: DistroRelease: Ubuntu 18.04 HibernationDevice: RESUME=none MachineType: HP ProLiant DL360 Gen9 NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair Package: linux (not installed) PciMultimedia: ProcEnviron: TERM=xterm PATH=(custom, no user) XDG_RUNTIME_DIR= LANG=en_US.UTF-8 SHELL=/bin/bash ProcFB: 0 mgadrmfb ProcKernelCmdLine: BOOT_IMAGE=/ROOT/ubuntu@/boot/vmlinuz-4.15.0-23-generic root=ZFS=rpool/ROOT/ubuntu ro ProcVersionSignature: Ubuntu 4.15.0-23.25-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-23-generic N/A linux-backports-modules-4.15.0-23-generic N/A linux-firmware 1.173.1 RfKill: Error: [Errno 2] No such file or directory: 'rfkill': 'rfkill' Tags: bionic Uname: Linux 4.15.0-23-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: _MarkForUpload: True dmi.bios.date: 05/21/2018 dmi.bios.vendor: HP dmi.bios.version: P89 dmi.board.name: ProLiant DL360 Gen9 dmi.board.vendor: HP dmi.chassis.type: 23 dmi.chassis.vendor: HP dmi.modalias: dmi:bvnHP:bvrP89:bd05/21/2018:svnHP:pnProLiantDL360Gen9:pvr:rvnHP:rnProLiantDL360Gen9:rvr:cvnHP:ct23:cvr: dmi.product.family: ProLiant dmi.product.name: ProLiant DL360 Gen9 dmi.sys.vendor: HP To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1776616/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803921] Missing required logs.
This bug is missing log files that will aid in diagnosing the problem. While running an Ubuntu kernel (not a mainline or third-party kernel) please enter the following command in a terminal window: apport-collect 1803921 and then change the status of the bug to 'Confirmed'. If, due to the nature of the issue you have encountered, you are unable to run this command, please add a comment stating that fact and change the bug status to 'Confirmed'. This change has been made by an automated script, maintained by the Ubuntu Kernel Team. ** Changed in: linux (Ubuntu) Status: New => Incomplete ** Tags added: cosmic -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803921 Title: test_095_kernel_symbols_missing_proc_self_stack failed with C Status in QA Regression Testing: New Status in ubuntu-kernel-tests: New Status in linux package in Ubuntu: Incomplete Bug description: Like bug 1802069 This test now failed with Cosmic kernel ubuntu@s2lp6g003:~$ uname -a Linux s2lp6g003 4.18.0-12-generic #13-Ubuntu SMP Wed Nov 14 15:15:21 UTC 2018 s390x s390x s390x GNU/Linux ubuntu@s2lp6g003:~$ cat /proc/self/stack cat: /proc/self/stack: Permission denied To manage notifications about this bug go to: https://bugs.launchpad.net/qa-regression-testing/+bug/1803921/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1780806] Re: Kernel 4.15.0 fails to boot with linux-modules-extra
[Expired for linux (Ubuntu Bionic) because there has been no activity for 60 days.] ** Changed in: linux (Ubuntu Bionic) Status: Incomplete => Expired -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1780806 Title: Kernel 4.15.0 fails to boot with linux-modules-extra Status in linux package in Ubuntu: Expired Status in linux source package in Bionic: Expired Bug description: I upgraded my laptop (Sony VAIO SVS1511C5E, Intel Core i7-3612QM, NVIDIA GK107M / GeForce GT 640M LE, original hard disk changed to a Crucial SSD) yesterday from Ubuntu 17.10. to Ubuntu 18.04. The upgrade process went smoothly without issues. After upgrade, I cannot boot the new kernel version 4.15.0-23 in normal mode. The boot process hangs immediately after displaying "Loading initial ramdisk". In case I choose "Recovery mode", the system does boot successfully with the same kernel. I also tried installing kernels 4.15.0-22 and 4.15.0-24, which both behave identically. The problem seems to be related to the linux-modules-extra package. If the package is not installed, the system boots also in the normal mode. However, the display is not correctly recognized, it shows up as "Unknown display" with 1024x768 resolution. That also happens if I choose "Recovery mode" and "Resume boot". The previous kernel 4.13.0-46 (with linux-modules-extra installed) works without problems and the display is recognized correctly. --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.2 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: arto 2916 F pulseaudio CurrentDesktop: ubuntu:GNOME DistroRelease: Ubuntu 18.04 EcryptfsInUse: Yes HibernationDevice: RESUME=UUID=2ef70a11-4a51-4152-a156-14c706505b71 InstallationDate: Installed on 2017-10-18 (263 days ago) InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Alpha amd64 (20170926) MachineType: Sony Corporation SVS1511C5E Package: linux (not installed) ProcFB: 0 EFI VGA ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-23-generic root=UUID=791d0e17-7a4d-47c8-8f69-708bebb1e658 ro recovery nomodeset ProcVersionSignature: Ubuntu 4.15.0-23.25-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-23-generic N/A linux-backports-modules-4.15.0-23-generic N/A linux-firmware 1.173.1 Tags: bionic Uname: Linux 4.15.0-23-generic x86_64 UpgradeStatus: Upgraded to bionic on 2018-07-08 (0 days ago) UserGroups: adm cdrom dip lpadmin plugdev sambashare scanner sudo _MarkForUpload: True dmi.bios.date: 05/17/2012 dmi.bios.vendor: Insyde Corp. dmi.bios.version: R0142C5 dmi.board.asset.tag: N/A dmi.board.name: VAIO dmi.board.vendor: Sony Corporation dmi.board.version: N/A dmi.chassis.asset.tag: N/A dmi.chassis.type: 10 dmi.chassis.vendor: Sony Corporation dmi.chassis.version: N/A dmi.modalias: dmi:bvnInsydeCorp.:bvrR0142C5:bd05/17/2012:svnSonyCorporation:pnSVS1511C5E:pvrC60AVZAU:rvnSonyCorporation:rnVAIO:rvrN/A:cvnSonyCorporation:ct10:cvrN/A: dmi.product.family: VAIO dmi.product.name: SVS1511C5E dmi.product.version: C60AVZAU dmi.sys.vendor: Sony Corporation To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1780806/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1793243] Re: "CJSCOPE HX-550" touchpad doesn't detected
[Expired for linux (Ubuntu) because there has been no activity for 60 days.] ** Changed in: linux (Ubuntu) Status: Incomplete => Expired -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1793243 Title: "CJSCOPE HX-550" touchpad doesn't detected Status in linux package in Ubuntu: Expired Bug description: I install ubuntu 18.04,but the kernel can't detect touchpad at all ,I follow the step in official website,I think it's kernel probloem --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.2 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: tom1134 F pulseaudio CurrentDesktop: ubuntu:GNOME DistroRelease: Ubuntu 18.04 HibernationDevice: RESUME=UUID=ace506b5-776f-4d84-8054-b066aa6f8d45 InstallationDate: Installed on 2018-09-18 (0 days ago) InstallationMedia: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 (20180725) Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 004: ID 04f2:b5a7 Chicony Electronics Co., Ltd Bus 001 Device 003: ID 8087:0a2a Intel Corp. Bus 001 Device 002: ID 1c4f:0054 SiGma Micro Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: COPELION INTERNATIONAL CO., LTD. HX Series Package: linux (not installed) ProcFB: 0 nouveaufb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.15.0-34-generic root=UUID=f133e176-6494-4686-831c-634ec8418dda ro quiet splash i8042.nopnp vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-34.37-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-34-generic N/A linux-backports-modules-4.15.0-34-generic N/A linux-firmware 1.173.1 Tags: bionic Uname: Linux 4.15.0-34-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo _MarkForUpload: True dmi.bios.date: 10/21/2016 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 1.05.07 dmi.board.asset.tag: Tag 12345 dmi.board.name: HX Series dmi.board.vendor: COPELION INTERNATIONAL CO., LTD. dmi.board.version: Not Applicable dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 10 dmi.chassis.vendor: Notebook dmi.chassis.version: N/A dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr1.05.07:bd10/21/2016:svnCOPELIONINTERNATIONALCO.,LTD.:pnHXSeries:pvrNotApplicable:rvnCOPELIONINTERNATIONALCO.,LTD.:rnHXSeries:rvrNotApplicable:cvnNotebook:ct10:cvrN/A: dmi.product.family: Not Applicable dmi.product.name: HX Series dmi.product.version: Not Applicable dmi.sys.vendor: COPELION INTERNATIONAL CO., LTD. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1793243/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1793290] Re: Purging the custom kernel does not remove initramfs
[Expired for linux-kvm (Ubuntu) because there has been no activity for 60 days.] ** Changed in: linux-kvm (Ubuntu) Status: Incomplete => Expired -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux-aws in Ubuntu. https://bugs.launchpad.net/bugs/1793290 Title: Purging the custom kernel does not remove initramfs Status in linux-aws package in Ubuntu: Expired Status in linux-kvm package in Ubuntu: Expired Bug description: Purge the kernel and you will be left with the initramfs in /boot and /var/lib/initramfs-tools. This is handled correctly for linux-generic /linux-virtual. * Launch a bionic/cosmic AWS image * Purge the kernel $ sudo apt-get purge --assume-yes '^linux-.*' 'linux-base+' initramfs* $ ls /boot/ grub initrd.img-4.15.0-1021-aws $ ls /var/lib/initramfs-tools/ 4.15.0-1021-aws This was seen with Bionic and Cosmic with linux-aws and linux-kvm Impact: during cloud image builds we remove one kernel and install the optimized kernel like linux-aws. The missing cleanup consumes disk space for images that are meant to be small; it also surfaces a latent bug in initramfs-tools where mkinitramfs will attempt to run to update every initramfs in /var/lib/initramfs-tools/ when it is only half- configured and it falls over. We'll work around this but the kernels should clean up when purged. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux-aws/+bug/1793290/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1793290] Re: Purging the custom kernel does not remove initramfs
[Expired for linux-aws (Ubuntu) because there has been no activity for 60 days.] ** Changed in: linux-aws (Ubuntu) Status: Incomplete => Expired -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux-aws in Ubuntu. https://bugs.launchpad.net/bugs/1793290 Title: Purging the custom kernel does not remove initramfs Status in linux-aws package in Ubuntu: Expired Status in linux-kvm package in Ubuntu: Expired Bug description: Purge the kernel and you will be left with the initramfs in /boot and /var/lib/initramfs-tools. This is handled correctly for linux-generic /linux-virtual. * Launch a bionic/cosmic AWS image * Purge the kernel $ sudo apt-get purge --assume-yes '^linux-.*' 'linux-base+' initramfs* $ ls /boot/ grub initrd.img-4.15.0-1021-aws $ ls /var/lib/initramfs-tools/ 4.15.0-1021-aws This was seen with Bionic and Cosmic with linux-aws and linux-kvm Impact: during cloud image builds we remove one kernel and install the optimized kernel like linux-aws. The missing cleanup consumes disk space for images that are meant to be small; it also surfaces a latent bug in initramfs-tools where mkinitramfs will attempt to run to update every initramfs in /var/lib/initramfs-tools/ when it is only half- configured and it falls over. We'll work around this but the kernels should clean up when purged. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux-aws/+bug/1793290/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1780806] Re: Kernel 4.15.0 fails to boot with linux-modules-extra
[Expired for linux (Ubuntu) because there has been no activity for 60 days.] ** Changed in: linux (Ubuntu) Status: Incomplete => Expired -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1780806 Title: Kernel 4.15.0 fails to boot with linux-modules-extra Status in linux package in Ubuntu: Expired Status in linux source package in Bionic: Expired Bug description: I upgraded my laptop (Sony VAIO SVS1511C5E, Intel Core i7-3612QM, NVIDIA GK107M / GeForce GT 640M LE, original hard disk changed to a Crucial SSD) yesterday from Ubuntu 17.10. to Ubuntu 18.04. The upgrade process went smoothly without issues. After upgrade, I cannot boot the new kernel version 4.15.0-23 in normal mode. The boot process hangs immediately after displaying "Loading initial ramdisk". In case I choose "Recovery mode", the system does boot successfully with the same kernel. I also tried installing kernels 4.15.0-22 and 4.15.0-24, which both behave identically. The problem seems to be related to the linux-modules-extra package. If the package is not installed, the system boots also in the normal mode. However, the display is not correctly recognized, it shows up as "Unknown display" with 1024x768 resolution. That also happens if I choose "Recovery mode" and "Resume boot". The previous kernel 4.13.0-46 (with linux-modules-extra installed) works without problems and the display is recognized correctly. --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.2 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: arto 2916 F pulseaudio CurrentDesktop: ubuntu:GNOME DistroRelease: Ubuntu 18.04 EcryptfsInUse: Yes HibernationDevice: RESUME=UUID=2ef70a11-4a51-4152-a156-14c706505b71 InstallationDate: Installed on 2017-10-18 (263 days ago) InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Alpha amd64 (20170926) MachineType: Sony Corporation SVS1511C5E Package: linux (not installed) ProcFB: 0 EFI VGA ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-23-generic root=UUID=791d0e17-7a4d-47c8-8f69-708bebb1e658 ro recovery nomodeset ProcVersionSignature: Ubuntu 4.15.0-23.25-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-23-generic N/A linux-backports-modules-4.15.0-23-generic N/A linux-firmware 1.173.1 Tags: bionic Uname: Linux 4.15.0-23-generic x86_64 UpgradeStatus: Upgraded to bionic on 2018-07-08 (0 days ago) UserGroups: adm cdrom dip lpadmin plugdev sambashare scanner sudo _MarkForUpload: True dmi.bios.date: 05/17/2012 dmi.bios.vendor: Insyde Corp. dmi.bios.version: R0142C5 dmi.board.asset.tag: N/A dmi.board.name: VAIO dmi.board.vendor: Sony Corporation dmi.board.version: N/A dmi.chassis.asset.tag: N/A dmi.chassis.type: 10 dmi.chassis.vendor: Sony Corporation dmi.chassis.version: N/A dmi.modalias: dmi:bvnInsydeCorp.:bvrR0142C5:bd05/17/2012:svnSonyCorporation:pnSVS1511C5E:pvrC60AVZAU:rvnSonyCorporation:rnVAIO:rvrN/A:cvnSonyCorporation:ct10:cvrN/A: dmi.product.family: VAIO dmi.product.name: SVS1511C5E dmi.product.version: C60AVZAU dmi.sys.vendor: Sony Corporation To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1780806/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803921] [NEW] test_095_kernel_symbols_missing_proc_self_stack failed with C
Public bug reported: Like bug 1802069 This test now failed with Cosmic kernel ubuntu@s2lp6g003:~$ uname -a Linux s2lp6g003 4.18.0-12-generic #13-Ubuntu SMP Wed Nov 14 15:15:21 UTC 2018 s390x s390x s390x GNU/Linux ubuntu@s2lp6g003:~$ cat /proc/self/stack cat: /proc/self/stack: Permission denied ** Affects: qa-regression-testing Importance: Undecided Status: New ** Affects: ubuntu-kernel-tests Importance: Undecided Status: New ** Affects: linux (Ubuntu) Importance: Undecided Status: New ** Package changed: linux-lts-xenial (Ubuntu) => linux (Ubuntu) ** Also affects: ubuntu-kernel-tests Importance: Undecided Status: New ** Also affects: qa-regression-testing Importance: Undecided Status: New -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803921 Title: test_095_kernel_symbols_missing_proc_self_stack failed with C Status in QA Regression Testing: New Status in ubuntu-kernel-tests: New Status in linux package in Ubuntu: New Bug description: Like bug 1802069 This test now failed with Cosmic kernel ubuntu@s2lp6g003:~$ uname -a Linux s2lp6g003 4.18.0-12-generic #13-Ubuntu SMP Wed Nov 14 15:15:21 UTC 2018 s390x s390x s390x GNU/Linux ubuntu@s2lp6g003:~$ cat /proc/self/stack cat: /proc/self/stack: Permission denied To manage notifications about this bug go to: https://bugs.launchpad.net/qa-regression-testing/+bug/1803921/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803921] [NEW] test_095_kernel_symbols_missing_proc_self_stack failed with C
You have been subscribed to a public bug: Like bug 1802069 This test now failed with Cosmic kernel ubuntu@s2lp6g003:~$ uname -a Linux s2lp6g003 4.18.0-12-generic #13-Ubuntu SMP Wed Nov 14 15:15:21 UTC 2018 s390x s390x s390x GNU/Linux ubuntu@s2lp6g003:~$ cat /proc/self/stack cat: /proc/self/stack: Permission denied ** Affects: linux (Ubuntu) Importance: Undecided Status: New -- test_095_kernel_symbols_missing_proc_self_stack failed with C https://bugs.launchpad.net/bugs/1803921 You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803830] Re: Mouse pointer trailing and disturbing the content that the pointer "touches"
Please also: * Try logging into "Ubuntu on Wayland". Does that change things? * Run these commands: sudo apt install mesa-utils glxinfo > glxinfo.txt and send us the resulting file 'glxinfo.txt'. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803830 Title: Mouse pointer trailing and disturbing the content that the pointer "touches" Status in linux package in Ubuntu: Incomplete Status in mutter package in Ubuntu: Incomplete Status in xorg-server package in Ubuntu: Incomplete Bug description: So , when i attached second monitor HPL1706 to my laptop HP 250 g5, my mouse pointer started to leave trail that blinks. This trail disappears when the mouse pointer hits the "quick select bar?" on the left side of main screen, or when the pointer goes on the second monitor where it continues to leave this trail. Pointer also disturbs the content that it "hits" or it places small box of the area it was moment before - like if i take a peace of puzzle, copy it and place over some other peace of puzzle so that main picture is not clear. Right click also resets the bug. Pointer disappears and re-appears if it's not moving but when it's not visible, the trail is. This interval is around 1 second. This affects my, already weak, PC performance. 1 time, when i logged into my account after being afk, this bug was not present 100% until i tried to move sublime's window around the screen. When i disconnect the second monitor, the bug is present but in much smaller dose. Every edit on this message (every letter i enter etc.) affects this bug - it changes which pointers will be visible on the screen. Lets say there is 10 pointers on screen - now its visible pointers 1,4,8 and when i press a letter it changes to 2,5,9 etc. something like this. If there is no action this change is automatic after approx. 1 second. ProblemType: Bug DistroRelease: Ubuntu 18.04 Package: xorg 1:7.7+19ubuntu7.1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 Uname: Linux 4.15.0-38-generic x86_64 NonfreeKernelModules: lkp_Ubuntu_4_15_0_38_41_generic_45 ApportVersion: 2.20.9-0ubuntu7.4 Architecture: amd64 BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log' CompositorRunning: None CurrentDesktop: ubuntu:GNOME Date: Sat Nov 17 16:42:58 2018 DistUpgraded: Fresh install DistroCodename: bionic DistroVariant: ubuntu GraphicsCard: Intel Corporation Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Integrated Graphics Controller [8086:22b1] (rev 35) (prog-if 00 [VGA controller]) Subsystem: Hewlett-Packard Company Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Integrated Graphics Controller [103c:81f1] InstallationDate: Installed on 2018-10-25 (22 days ago) InstallationMedia: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 (20180725) MachineType: HP HP 250 G5 Notebook PC ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.15.0-38-generic root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=1 SourcePackage: xorg UpgradeStatus: No upgrade log present (probably fresh install) dmi.bios.date: 08/01/2016 dmi.bios.vendor: Insyde dmi.bios.version: F.14 dmi.board.asset.tag: Type2 - Board Asset Tag dmi.board.name: 81F1 dmi.board.vendor: HP dmi.board.version: 64.31 dmi.chassis.type: 10 dmi.chassis.vendor: Hewlett-Packard dmi.chassis.version: Chassis Version dmi.modalias: dmi:bvnInsyde:bvrF.14:bd08/01/2016:svnHP:pnHP250G5NotebookPC:pvrType1ProductConfigId:rvnHP:rn81F1:rvr64.31:cvnHewlett-Packard:ct10:cvrChassisVersion: dmi.product.family: 103C_5336AN G=N L=SMB B=HP S=250 dmi.product.name: HP 250 G5 Notebook PC dmi.product.version: Type1ProductConfigId dmi.sys.vendor: HP version.compiz: compiz N/A version.libdrm2: libdrm2 2.4.91-2 version.libgl1-mesa-dri: libgl1-mesa-dri 18.0.5-0ubuntu0~18.04.1 version.libgl1-mesa-glx: libgl1-mesa-glx 18.0.5-0ubuntu0~18.04.1 version.xserver-xorg-core: xserver-xorg-core 2:1.19.6-1ubuntu4.2 version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:18.0.1-1 version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.917+git20171229-1 version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-2 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803830/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803830] Re: Mouse pointer trailing and disturbing the content that the pointer "touches"
When things appear and disappear, blinking, it means they have been rendered in one graphics buffer but forgotten in the next. It's unusual, but not impossible, for the mouse pointer to be included in that. So it's a bug either in the shell, or in the graphics driver. Please start by removing the kernel module 'lkp_Ubuntu_4_15_0_38_41_generic_45' from the machine. Reboot and see if the problem persists. Please also run this command: dpkg -l > allpackages.txt and send us the resulting 'allpackages.txt'. ** Package changed: xorg (Ubuntu) => xorg-server (Ubuntu) ** Changed in: xorg-server (Ubuntu) Status: New => Incomplete ** Also affects: mutter (Ubuntu) Importance: Undecided Status: New ** Changed in: mutter (Ubuntu) Status: New => Incomplete ** Also affects: linux (Ubuntu) Importance: Undecided Status: New ** Changed in: linux (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803830 Title: Mouse pointer trailing and disturbing the content that the pointer "touches" Status in linux package in Ubuntu: Incomplete Status in mutter package in Ubuntu: Incomplete Status in xorg-server package in Ubuntu: Incomplete Bug description: So , when i attached second monitor HPL1706 to my laptop HP 250 g5, my mouse pointer started to leave trail that blinks. This trail disappears when the mouse pointer hits the "quick select bar?" on the left side of main screen, or when the pointer goes on the second monitor where it continues to leave this trail. Pointer also disturbs the content that it "hits" or it places small box of the area it was moment before - like if i take a peace of puzzle, copy it and place over some other peace of puzzle so that main picture is not clear. Right click also resets the bug. Pointer disappears and re-appears if it's not moving but when it's not visible, the trail is. This interval is around 1 second. This affects my, already weak, PC performance. 1 time, when i logged into my account after being afk, this bug was not present 100% until i tried to move sublime's window around the screen. When i disconnect the second monitor, the bug is present but in much smaller dose. Every edit on this message (every letter i enter etc.) affects this bug - it changes which pointers will be visible on the screen. Lets say there is 10 pointers on screen - now its visible pointers 1,4,8 and when i press a letter it changes to 2,5,9 etc. something like this. If there is no action this change is automatic after approx. 1 second. ProblemType: Bug DistroRelease: Ubuntu 18.04 Package: xorg 1:7.7+19ubuntu7.1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 Uname: Linux 4.15.0-38-generic x86_64 NonfreeKernelModules: lkp_Ubuntu_4_15_0_38_41_generic_45 ApportVersion: 2.20.9-0ubuntu7.4 Architecture: amd64 BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log' CompositorRunning: None CurrentDesktop: ubuntu:GNOME Date: Sat Nov 17 16:42:58 2018 DistUpgraded: Fresh install DistroCodename: bionic DistroVariant: ubuntu GraphicsCard: Intel Corporation Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Integrated Graphics Controller [8086:22b1] (rev 35) (prog-if 00 [VGA controller]) Subsystem: Hewlett-Packard Company Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Integrated Graphics Controller [103c:81f1] InstallationDate: Installed on 2018-10-25 (22 days ago) InstallationMedia: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 (20180725) MachineType: HP HP 250 G5 Notebook PC ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.15.0-38-generic root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=1 SourcePackage: xorg UpgradeStatus: No upgrade log present (probably fresh install) dmi.bios.date: 08/01/2016 dmi.bios.vendor: Insyde dmi.bios.version: F.14 dmi.board.asset.tag: Type2 - Board Asset Tag dmi.board.name: 81F1 dmi.board.vendor: HP dmi.board.version: 64.31 dmi.chassis.type: 10 dmi.chassis.vendor: Hewlett-Packard dmi.chassis.version: Chassis Version dmi.modalias: dmi:bvnInsyde:bvrF.14:bd08/01/2016:svnHP:pnHP250G5NotebookPC:pvrType1ProductConfigId:rvnHP:rn81F1:rvr64.31:cvnHewlett-Packard:ct10:cvrChassisVersion: dmi.product.family: 103C_5336AN G=N L=SMB B=HP S=250 dmi.product.name: HP 250 G5 Notebook PC dmi.product.version: Type1ProductConfigId dmi.sys.vendor: HP version.compiz: compiz N/A version.libdrm2: libdrm2 2.4.91-2 version.libgl1-mesa-dri: libgl1-mesa-dri 18.0.5-0ubuntu0~18.04.1 version.libgl1-mesa-glx: libgl1-mesa-glx 18.0.5-0ubuntu0~18.04.1 version.xserver-xorg-core: xserver-xorg-core 2:1.19.6-1ubuntu4.2 version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:18.0.1-1 versi
[Kernel-packages] [Bug 1802573] Status changed to Confirmed
This change was made by a bot. ** Changed in: linux (Ubuntu) Status: New => Confirmed -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1802573 Title: Thinkpad x220 - Unable to use 2560x1440 external display connected via DisplayPort due flashing black screen Status in linux package in Ubuntu: Confirmed Status in mutter package in Ubuntu: New Bug description: I have a fresh install of 18.10 on an old Thinkpad x220. Everything works fine with the internal display or an external Dell G2410 (1920x1080) connected via VGA. But when I try to switch to an external BenQ PD2710QC (2560x1440) I only see the screen for a few seconds at a time and then it flashes to black. This happens consistently for minutes--it never "settles down". I've tried the default configuration as well as copying xorg.conf from /usr/share/doc/xserver-xorg-video-intel into /etc/x11. I've tried both xorg configurations with nomodeset in the bootloader and without. I have not been able to find any configuration that allows this external DisplayPort display to work. The same hardware combination works fine in Windows 10. ProblemType: Bug DistroRelease: Ubuntu 18.10 Package: xorg 1:7.7+19ubuntu8 ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12 Uname: Linux 4.18.0-10-generic x86_64 ApportVersion: 2.20.10-0ubuntu13 Architecture: amd64 Date: Fri Nov 9 13:10:59 2018 DistUpgraded: Fresh install DistroCodename: cosmic DistroVariant: ubuntu ExtraDebuggingInterest: Yes GraphicsCard: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller [8086:0126] (rev 09) (prog-if 00 [VGA controller]) Subsystem: Lenovo 2nd Generation Core Processor Family Integrated Graphics Controller [17aa:21da] InstallationDate: Installed on 2018-11-09 (0 days ago) InstallationMedia: Ubuntu 18.10 "Cosmic Cuttlefish" - Release amd64 (20181017.3) MachineType: LENOVO 42872WU ProcEnviron: TERM=xterm PATH=(custom, no user) XDG_RUNTIME_DIR= LANG=en_US.UTF-8 SHELL=/bin/bash ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic root=UUID=cd4f21be-48dd-48e7-b289-a59a32bd0be3 ro quiet splash nomodeset vt.handoff=1 SourcePackage: xorg Symptom: display UpgradeStatus: No upgrade log present (probably fresh install) XorgConf: Section "Device" Identifier "Intel" Driver "intel" #Option "AccelMethod" "uxa" EndSection dmi.bios.date: 06/21/2018 dmi.bios.vendor: LENOVO dmi.bios.version: 8DET76WW (1.46 ) dmi.board.asset.tag: Not Available dmi.board.name: 42872WU dmi.board.vendor: LENOVO dmi.board.version: Not Available dmi.chassis.asset.tag: No Asset Information dmi.chassis.type: 10 dmi.chassis.vendor: LENOVO dmi.chassis.version: Not Available dmi.modalias: dmi:bvnLENOVO:bvr8DET76WW(1.46):bd06/21/2018:svnLENOVO:pn42872WU:pvrThinkPadX220:rvnLENOVO:rn42872WU:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable: dmi.product.family: ThinkPad X220 dmi.product.name: 42872WU dmi.product.version: ThinkPad X220 dmi.sys.vendor: LENOVO version.compiz: compiz 1:0.9.13.1+18.10.20180930-0ubuntu1 version.libdrm2: libdrm2 2.4.95-1 version.libgl1-mesa-dri: libgl1-mesa-dri 18.2.2-0ubuntu1 version.libgl1-mesa-glx: libgl1-mesa-glx N/A version.xserver-xorg-core: xserver-xorg-core 2:1.20.1-3ubuntu2.1 version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:18.1.0-1 version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.917+git20171229-1ubuntu1 version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-3 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1802573/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1802573] Re: Thinkpad x220 - Unable to use 2560x1440 external display connected via DisplayPort due flashing black screen
If you get the same behaviour in Wayland sessions then it's probably not a Xorg bug. Maybe mutter or maybe the kernel. ** Package changed: xorg-server (Ubuntu) => linux (Ubuntu) ** Changed in: linux (Ubuntu) Status: Incomplete => New ** Also affects: mutter (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1802573 Title: Thinkpad x220 - Unable to use 2560x1440 external display connected via DisplayPort due flashing black screen Status in linux package in Ubuntu: New Status in mutter package in Ubuntu: New Bug description: I have a fresh install of 18.10 on an old Thinkpad x220. Everything works fine with the internal display or an external Dell G2410 (1920x1080) connected via VGA. But when I try to switch to an external BenQ PD2710QC (2560x1440) I only see the screen for a few seconds at a time and then it flashes to black. This happens consistently for minutes--it never "settles down". I've tried the default configuration as well as copying xorg.conf from /usr/share/doc/xserver-xorg-video-intel into /etc/x11. I've tried both xorg configurations with nomodeset in the bootloader and without. I have not been able to find any configuration that allows this external DisplayPort display to work. The same hardware combination works fine in Windows 10. ProblemType: Bug DistroRelease: Ubuntu 18.10 Package: xorg 1:7.7+19ubuntu8 ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12 Uname: Linux 4.18.0-10-generic x86_64 ApportVersion: 2.20.10-0ubuntu13 Architecture: amd64 Date: Fri Nov 9 13:10:59 2018 DistUpgraded: Fresh install DistroCodename: cosmic DistroVariant: ubuntu ExtraDebuggingInterest: Yes GraphicsCard: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller [8086:0126] (rev 09) (prog-if 00 [VGA controller]) Subsystem: Lenovo 2nd Generation Core Processor Family Integrated Graphics Controller [17aa:21da] InstallationDate: Installed on 2018-11-09 (0 days ago) InstallationMedia: Ubuntu 18.10 "Cosmic Cuttlefish" - Release amd64 (20181017.3) MachineType: LENOVO 42872WU ProcEnviron: TERM=xterm PATH=(custom, no user) XDG_RUNTIME_DIR= LANG=en_US.UTF-8 SHELL=/bin/bash ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic root=UUID=cd4f21be-48dd-48e7-b289-a59a32bd0be3 ro quiet splash nomodeset vt.handoff=1 SourcePackage: xorg Symptom: display UpgradeStatus: No upgrade log present (probably fresh install) XorgConf: Section "Device" Identifier "Intel" Driver "intel" #Option "AccelMethod" "uxa" EndSection dmi.bios.date: 06/21/2018 dmi.bios.vendor: LENOVO dmi.bios.version: 8DET76WW (1.46 ) dmi.board.asset.tag: Not Available dmi.board.name: 42872WU dmi.board.vendor: LENOVO dmi.board.version: Not Available dmi.chassis.asset.tag: No Asset Information dmi.chassis.type: 10 dmi.chassis.vendor: LENOVO dmi.chassis.version: Not Available dmi.modalias: dmi:bvnLENOVO:bvr8DET76WW(1.46):bd06/21/2018:svnLENOVO:pn42872WU:pvrThinkPadX220:rvnLENOVO:rn42872WU:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable: dmi.product.family: ThinkPad X220 dmi.product.name: 42872WU dmi.product.version: ThinkPad X220 dmi.sys.vendor: LENOVO version.compiz: compiz 1:0.9.13.1+18.10.20180930-0ubuntu1 version.libdrm2: libdrm2 2.4.95-1 version.libgl1-mesa-dri: libgl1-mesa-dri 18.2.2-0ubuntu1 version.libgl1-mesa-glx: libgl1-mesa-glx N/A version.xserver-xorg-core: xserver-xorg-core 2:1.20.1-3ubuntu2.1 version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:18.1.0-1 version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.917+git20171229-1ubuntu1 version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-3 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1802573/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1802573] [NEW] Thinkpad x220 - Unable to use 2560x1440 external display connected via DisplayPort due flashing black screen
You have been subscribed to a public bug: I have a fresh install of 18.10 on an old Thinkpad x220. Everything works fine with the internal display or an external Dell G2410 (1920x1080) connected via VGA. But when I try to switch to an external BenQ PD2710QC (2560x1440) I only see the screen for a few seconds at a time and then it flashes to black. This happens consistently for minutes --it never "settles down". I've tried the default configuration as well as copying xorg.conf from /usr/share/doc/xserver-xorg-video-intel into /etc/x11. I've tried both xorg configurations with nomodeset in the bootloader and without. I have not been able to find any configuration that allows this external DisplayPort display to work. The same hardware combination works fine in Windows 10. ProblemType: Bug DistroRelease: Ubuntu 18.10 Package: xorg 1:7.7+19ubuntu8 ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12 Uname: Linux 4.18.0-10-generic x86_64 ApportVersion: 2.20.10-0ubuntu13 Architecture: amd64 Date: Fri Nov 9 13:10:59 2018 DistUpgraded: Fresh install DistroCodename: cosmic DistroVariant: ubuntu ExtraDebuggingInterest: Yes GraphicsCard: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller [8086:0126] (rev 09) (prog-if 00 [VGA controller]) Subsystem: Lenovo 2nd Generation Core Processor Family Integrated Graphics Controller [17aa:21da] InstallationDate: Installed on 2018-11-09 (0 days ago) InstallationMedia: Ubuntu 18.10 "Cosmic Cuttlefish" - Release amd64 (20181017.3) MachineType: LENOVO 42872WU ProcEnviron: TERM=xterm PATH=(custom, no user) XDG_RUNTIME_DIR= LANG=en_US.UTF-8 SHELL=/bin/bash ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic root=UUID=cd4f21be-48dd-48e7-b289-a59a32bd0be3 ro quiet splash nomodeset vt.handoff=1 SourcePackage: xorg Symptom: display UpgradeStatus: No upgrade log present (probably fresh install) XorgConf: Section "Device" Identifier "Intel" Driver "intel" # Option "AccelMethod" "uxa" EndSection dmi.bios.date: 06/21/2018 dmi.bios.vendor: LENOVO dmi.bios.version: 8DET76WW (1.46 ) dmi.board.asset.tag: Not Available dmi.board.name: 42872WU dmi.board.vendor: LENOVO dmi.board.version: Not Available dmi.chassis.asset.tag: No Asset Information dmi.chassis.type: 10 dmi.chassis.vendor: LENOVO dmi.chassis.version: Not Available dmi.modalias: dmi:bvnLENOVO:bvr8DET76WW(1.46):bd06/21/2018:svnLENOVO:pn42872WU:pvrThinkPadX220:rvnLENOVO:rn42872WU:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable: dmi.product.family: ThinkPad X220 dmi.product.name: 42872WU dmi.product.version: ThinkPad X220 dmi.sys.vendor: LENOVO version.compiz: compiz 1:0.9.13.1+18.10.20180930-0ubuntu1 version.libdrm2: libdrm2 2.4.95-1 version.libgl1-mesa-dri: libgl1-mesa-dri 18.2.2-0ubuntu1 version.libgl1-mesa-glx: libgl1-mesa-glx N/A version.xserver-xorg-core: xserver-xorg-core 2:1.20.1-3ubuntu2.1 version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:18.1.0-1 version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.917+git20171229-1ubuntu1 version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-3 ** Affects: linux (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-bug cosmic multimonitor ubuntu -- Thinkpad x220 - Unable to use 2560x1440 external display connected via DisplayPort due flashing black screen https://bugs.launchpad.net/bugs/1802573 You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1454450] Re: Bluetooth mouse laggy and erratic
Bluetooth coexistence has also come up in Bluetooth audio bug reports. However it's very much specific to the driver you're using. In particular, Qualcomm Atheros users please see bug 1746164. If you're using a better supported Intel wifi/Bluetooth chip then I would expect it's not a driver problem but a local environmental problem with 2.4GHz interference, or just poor signal between the laptop and mouse. So you will need to do your own detective work there. Broadcom chips, I'm not sure about their status but bug 1518408 is still open for them. Finally, one tip: Close the Settings app before testing Bluetooth quality. While gnome-control-center is open and scanning for devices, it will impede Bluetooth signal quality (bug 1797002). ** Tags removed: papercuts2017 vivid ** Tags added: bionic xenial -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux-firmware in Ubuntu. https://bugs.launchpad.net/bugs/1454450 Title: Bluetooth mouse laggy and erratic Status in bluez package in Ubuntu: Confirmed Status in linux-firmware package in Ubuntu: Confirmed Bug description: I installed Ubuntu 15.04 (64 bit) on a DELL XPS 13 (model 9343, bios A03) notebook. I use a DELL bluetooth mouse but sometimes it behaves erratically (laggy, jumpy). The problem happens after a few (sometimes one) suspend and resume. I am attaching below some info on my system. Thank you. cribari@darwin4:~$ uname -a; lspci -nnk | grep -iA2 net; lsusb; dmesg | grep -i bluetooth; dmesg | grep -i firmware; lsmod | grep bluetooth Linux darwin4 3.19.0-17-generic #17-Ubuntu SMP Wed May 6 16:46:12 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux 02:00.0 Network controller [0280]: Broadcom Corporation BCM4352 802.11ac Wireless Network Adapter [14e4:43b1] (rev 03) Subsystem: Dell Device [1028:0019] Kernel driver in use: wl Bus 003 Device 002: ID 8087:8001 Intel Corp. Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 004: ID 0c45:670c Microdia Bus 001 Device 003: ID 04f3:20d0 Elan Microelectronics Corp. Bus 001 Device 002: ID 0a5c:216f Broadcom Corp. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub [2.174367] Bluetooth: Core ver 2.20 [2.174669] Bluetooth: HCI device and connection manager initialized [2.174792] Bluetooth: HCI socket layer initialized [2.174795] Bluetooth: L2CAP socket layer initialized [2.175449] Bluetooth: SCO socket layer initialized [2.592936] Bluetooth: hci0: BCM: patching hci_ver=06 hci_rev=1624 lmp_ver=06 lmp_subver=220e [3.203438] Bluetooth: hci0: BCM: firmware hci_ver=06 hci_rev=1624 lmp_ver=06 lmp_subver=220e [3.542418] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [3.542421] Bluetooth: BNEP filters: protocol multicast [3.542425] Bluetooth: BNEP socket layer initialized [3.551641] Bluetooth: RFCOMM TTY layer initialized [3.551649] Bluetooth: RFCOMM socket layer initialized [3.551654] Bluetooth: RFCOMM ver 1.11 [ 26.569283] Bluetooth: HIDP (Human Interface Emulation) ver 1.2 [ 26.569287] Bluetooth: HIDP socket layer initialized [ 26.576971] input: Dell Travel Mouse WM524 as /devices/pci:00/:00:14.0/usb1/1-3/1-3:1.0/bluetooth/hci0/hci0:11/0005:046D:B00E.0003/input/input15 [ 26.577172] hid-generic 0005:046D:B00E.0003: input,hidraw2: BLUETOOTH HID v8.00 Mouse [Dell Travel Mouse WM524] on ac:d1:b8:c0:6f:5c [ 72.448281] input: Dell Travel Mouse WM524 as /devices/pci:00/:00:14.0/usb1/1-3/1-3:1.0/bluetooth/hci0/hci0:12/0005:046D:B00E.0004/input/input16 [ 72.448526] hid-generic 0005:046D:B00E.0004: input,hidraw2: BLUETOOTH HID v8.00 Mouse [Dell Travel Mouse WM524] on ac:d1:b8:c0:6f:5c [ 2994.842547] input: Dell Travel Mouse WM524 as /devices/pci:00/:00:14.0/usb1/1-3/1-3:1.0/bluetooth/hci0/hci0:13/0005:046D:B00E.0005/input/input17 [ 2994.842810] hid-generic 0005:046D:B00E.0005: input,hidraw2: BLUETOOTH HID v8.00 Mouse [Dell Travel Mouse WM524] on ac:d1:b8:c0:6f:5c [ 3694.214037] Bluetooth: hci0: BCM: patching hci_ver=06 hci_rev=1000 lmp_ver=06 lmp_subver=220e [ 3694.861578] Bluetooth: hci0: BCM: firmware hci_ver=06 hci_rev=1624 lmp_ver=06 lmp_subver=220e [ 3811.777260] input: Dell Travel Mouse WM524 as /devices/pci:00/:00:14.0/usb1/1-3/1-3:1.0/bluetooth/hci0/hci0:11/0005:046D:B00E.0006/input/input20 [ 3811.777571] hid-generic 0005:046D:B00E.0006: input,hidraw2: BLUETOOTH HID v8.00 Mouse [Dell Travel Mouse WM524] on ac:d1:b8:c0:6f:5c [ 5579.876192] Modules linked in: huawei_cdc_ncm cdc_wdm cdc_ncm option usb_wwan usbserial usbnet mii uas usb_storage hid_generic hidp nvram msr binfmt_misc rfcomm bnep nls_iso8859_1 intel_rapl iosf_mbi x86_pkg_temp_thermal dell_wmi sparse_keymap intel_powerclamp coretemp kvm_intel kvm crct10dif_pclmul dell_laptop dcdbas btusb crc32_pclmul blueto
[Kernel-packages] [Bug 1803863] UdevDb.txt
apport information ** Attachment added: "UdevDb.txt" https://bugs.launchpad.net/bugs/1803863/+attachment/5213996/+files/UdevDb.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803863 Title: hid-multitouch Status in linux package in Ubuntu: Incomplete Bug description: The cursor hangs from time to time whether I'm watching a video or scrolling through a webpage and I have to use the commands "sudo modprobe -r hid-multitouch && sudo modprobe multitouch" to keep enabling the touchpad. This bug is in kernels 4.15.0-24, 4.15.0-29, 4.15.0-30, 4.15.0-32, 4.15.0-33, 4.15.0-34, 4.15.0-36, 4.15.0-38 and 4.15.0-39. Touchpad is FTE1200:00 0B05:0201. --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC0D0p: jay1640 F...m pulseaudio /dev/snd/controlC0: jay1640 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux 18.3 HibernationDevice: RESUME=UUID=5b7bcf35-5ca6-4af2-a21c-ee9bf1c3b398 InstallationDate: Installed on 2018-11-15 (3 days ago) InstallationMedia: Linux Mint 18.3 "Sylvia" - Release amd64 20171124 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 004: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller Bus 001 Device 003: ID 13d3:5a01 IMC Networks Bus 001 Device 005: ID 04ca:3010 Lite-On Technology Corp. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: ASUSTeK COMPUTER INC. X541NA Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-39-generic root=UUID=c00192a2-f322-4512-bf47-91b23cb9aba2 ro modprobe.blacklist=hi d_sensor_hub quiet splash vt.handoff=7 ProcVersionSignature: Ubuntu 4.15.0-39.42~16.04.1-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-39-generic N/A linux-backports-modules-4.15.0-39-generic N/A linux-firmware 1.173 Tags: sylvia Uname: Linux 4.15.0-39-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo _MarkForUpload: True dmi.bios.date: 08/24/2018 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: X541NA.321 dmi.board.asset.tag: ATN12345678901234567 dmi.board.name: X541NA dmi.board.vendor: ASUSTeK COMPUTER INC. dmi.board.version: 1.0 dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 10 dmi.chassis.vendor: ASUSTeK COMPUTER INC. dmi.chassis.version: 1.0 dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvrX541NA.321:bd08/24/2018:svnASUSTeKCOMPUTERINC.:pnX541NA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnX541NA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0: dmi.product.family: VivoBook dmi.product.name: X541NA dmi.product.version: 1.0 dmi.sys.vendor: ASUSTeK COMPUTER INC. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803863/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803863] WifiSyslog.txt
apport information ** Attachment added: "WifiSyslog.txt" https://bugs.launchpad.net/bugs/1803863/+attachment/5213997/+files/WifiSyslog.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803863 Title: hid-multitouch Status in linux package in Ubuntu: Incomplete Bug description: The cursor hangs from time to time whether I'm watching a video or scrolling through a webpage and I have to use the commands "sudo modprobe -r hid-multitouch && sudo modprobe multitouch" to keep enabling the touchpad. This bug is in kernels 4.15.0-24, 4.15.0-29, 4.15.0-30, 4.15.0-32, 4.15.0-33, 4.15.0-34, 4.15.0-36, 4.15.0-38 and 4.15.0-39. Touchpad is FTE1200:00 0B05:0201. --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC0D0p: jay1640 F...m pulseaudio /dev/snd/controlC0: jay1640 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux 18.3 HibernationDevice: RESUME=UUID=5b7bcf35-5ca6-4af2-a21c-ee9bf1c3b398 InstallationDate: Installed on 2018-11-15 (3 days ago) InstallationMedia: Linux Mint 18.3 "Sylvia" - Release amd64 20171124 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 004: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller Bus 001 Device 003: ID 13d3:5a01 IMC Networks Bus 001 Device 005: ID 04ca:3010 Lite-On Technology Corp. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: ASUSTeK COMPUTER INC. X541NA Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-39-generic root=UUID=c00192a2-f322-4512-bf47-91b23cb9aba2 ro modprobe.blacklist=hi d_sensor_hub quiet splash vt.handoff=7 ProcVersionSignature: Ubuntu 4.15.0-39.42~16.04.1-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-39-generic N/A linux-backports-modules-4.15.0-39-generic N/A linux-firmware 1.173 Tags: sylvia Uname: Linux 4.15.0-39-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo _MarkForUpload: True dmi.bios.date: 08/24/2018 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: X541NA.321 dmi.board.asset.tag: ATN12345678901234567 dmi.board.name: X541NA dmi.board.vendor: ASUSTeK COMPUTER INC. dmi.board.version: 1.0 dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 10 dmi.chassis.vendor: ASUSTeK COMPUTER INC. dmi.chassis.version: 1.0 dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvrX541NA.321:bd08/24/2018:svnASUSTeKCOMPUTERINC.:pnX541NA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnX541NA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0: dmi.product.family: VivoBook dmi.product.name: X541NA dmi.product.version: 1.0 dmi.sys.vendor: ASUSTeK COMPUTER INC. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803863/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803863] RfKill.txt
apport information ** Attachment added: "RfKill.txt" https://bugs.launchpad.net/bugs/1803863/+attachment/5213995/+files/RfKill.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803863 Title: hid-multitouch Status in linux package in Ubuntu: Incomplete Bug description: The cursor hangs from time to time whether I'm watching a video or scrolling through a webpage and I have to use the commands "sudo modprobe -r hid-multitouch && sudo modprobe multitouch" to keep enabling the touchpad. This bug is in kernels 4.15.0-24, 4.15.0-29, 4.15.0-30, 4.15.0-32, 4.15.0-33, 4.15.0-34, 4.15.0-36, 4.15.0-38 and 4.15.0-39. Touchpad is FTE1200:00 0B05:0201. --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC0D0p: jay1640 F...m pulseaudio /dev/snd/controlC0: jay1640 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux 18.3 HibernationDevice: RESUME=UUID=5b7bcf35-5ca6-4af2-a21c-ee9bf1c3b398 InstallationDate: Installed on 2018-11-15 (3 days ago) InstallationMedia: Linux Mint 18.3 "Sylvia" - Release amd64 20171124 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 004: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller Bus 001 Device 003: ID 13d3:5a01 IMC Networks Bus 001 Device 005: ID 04ca:3010 Lite-On Technology Corp. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: ASUSTeK COMPUTER INC. X541NA Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-39-generic root=UUID=c00192a2-f322-4512-bf47-91b23cb9aba2 ro modprobe.blacklist=hi d_sensor_hub quiet splash vt.handoff=7 ProcVersionSignature: Ubuntu 4.15.0-39.42~16.04.1-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-39-generic N/A linux-backports-modules-4.15.0-39-generic N/A linux-firmware 1.173 Tags: sylvia Uname: Linux 4.15.0-39-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo _MarkForUpload: True dmi.bios.date: 08/24/2018 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: X541NA.321 dmi.board.asset.tag: ATN12345678901234567 dmi.board.name: X541NA dmi.board.vendor: ASUSTeK COMPUTER INC. dmi.board.version: 1.0 dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 10 dmi.chassis.vendor: ASUSTeK COMPUTER INC. dmi.chassis.version: 1.0 dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvrX541NA.321:bd08/24/2018:svnASUSTeKCOMPUTERINC.:pnX541NA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnX541NA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0: dmi.product.family: VivoBook dmi.product.name: X541NA dmi.product.version: 1.0 dmi.sys.vendor: ASUSTeK COMPUTER INC. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803863/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1798162] Re: VLC failed after attempt to open a video file
I disagree with nVidia driver assessment. I am running this under VirtualBox with no 3D hardware acceleration. Also, a segfault is not an appropriate outcome in any case. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to nvidia-graphics-drivers-390 in Ubuntu. https://bugs.launchpad.net/bugs/1798162 Title: VLC failed after attempt to open a video file Status in nvidia-graphics-drivers-390 package in Ubuntu: Incomplete Bug description: Terminal output [5561f80fc630] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface. [5561f81005f0] main playlist: playlist is empty kf5.kio.core: Invalid URL: QUrl("/home/user") uint DBusMenuExporterDBus::GetLayout(int, int, const QStringList&, DBusMenuLayoutItem&): Condition failed: menu libEGL warning: DRI2: failed to authenticate Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory libEGL warning: DRI2: failed to authenticate Segmentation fault (core dumped) ProblemType: Bug DistroRelease: Ubuntu 18.10 Package: vlc 3.0.4-2build1 ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12 Uname: Linux 4.18.0-10-generic x86_64 ApportVersion: 2.20.10-0ubuntu13 Architecture: amd64 CurrentDesktop: KDE Date: Tue Oct 16 14:19:37 2018 InstallationDate: Installed on 2018-10-16 (0 days ago) InstallationMedia: Kubuntu 18.10 "Cosmic Cuttlefish" - Beta amd64 (20181013.1) SourcePackage: vlc UpgradeStatus: No upgrade log present (probably fresh install) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-390/+bug/1798162/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803863] IwConfig.txt
apport information ** Attachment added: "IwConfig.txt" https://bugs.launchpad.net/bugs/1803863/+attachment/5213987/+files/IwConfig.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803863 Title: hid-multitouch Status in linux package in Ubuntu: Incomplete Bug description: The cursor hangs from time to time whether I'm watching a video or scrolling through a webpage and I have to use the commands "sudo modprobe -r hid-multitouch && sudo modprobe multitouch" to keep enabling the touchpad. This bug is in kernels 4.15.0-24, 4.15.0-29, 4.15.0-30, 4.15.0-32, 4.15.0-33, 4.15.0-34, 4.15.0-36, 4.15.0-38 and 4.15.0-39. Touchpad is FTE1200:00 0B05:0201. --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC0D0p: jay1640 F...m pulseaudio /dev/snd/controlC0: jay1640 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux 18.3 HibernationDevice: RESUME=UUID=5b7bcf35-5ca6-4af2-a21c-ee9bf1c3b398 InstallationDate: Installed on 2018-11-15 (3 days ago) InstallationMedia: Linux Mint 18.3 "Sylvia" - Release amd64 20171124 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 004: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller Bus 001 Device 003: ID 13d3:5a01 IMC Networks Bus 001 Device 005: ID 04ca:3010 Lite-On Technology Corp. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: ASUSTeK COMPUTER INC. X541NA Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-39-generic root=UUID=c00192a2-f322-4512-bf47-91b23cb9aba2 ro modprobe.blacklist=hi d_sensor_hub quiet splash vt.handoff=7 ProcVersionSignature: Ubuntu 4.15.0-39.42~16.04.1-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-39-generic N/A linux-backports-modules-4.15.0-39-generic N/A linux-firmware 1.173 Tags: sylvia Uname: Linux 4.15.0-39-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo _MarkForUpload: True dmi.bios.date: 08/24/2018 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: X541NA.321 dmi.board.asset.tag: ATN12345678901234567 dmi.board.name: X541NA dmi.board.vendor: ASUSTeK COMPUTER INC. dmi.board.version: 1.0 dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 10 dmi.chassis.vendor: ASUSTeK COMPUTER INC. dmi.chassis.version: 1.0 dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvrX541NA.321:bd08/24/2018:svnASUSTeKCOMPUTERINC.:pnX541NA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnX541NA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0: dmi.product.family: VivoBook dmi.product.name: X541NA dmi.product.version: 1.0 dmi.sys.vendor: ASUSTeK COMPUTER INC. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803863/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803863] ProcInterrupts.txt
apport information ** Attachment added: "ProcInterrupts.txt" https://bugs.launchpad.net/bugs/1803863/+attachment/5213992/+files/ProcInterrupts.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803863 Title: hid-multitouch Status in linux package in Ubuntu: Incomplete Bug description: The cursor hangs from time to time whether I'm watching a video or scrolling through a webpage and I have to use the commands "sudo modprobe -r hid-multitouch && sudo modprobe multitouch" to keep enabling the touchpad. This bug is in kernels 4.15.0-24, 4.15.0-29, 4.15.0-30, 4.15.0-32, 4.15.0-33, 4.15.0-34, 4.15.0-36, 4.15.0-38 and 4.15.0-39. Touchpad is FTE1200:00 0B05:0201. --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC0D0p: jay1640 F...m pulseaudio /dev/snd/controlC0: jay1640 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux 18.3 HibernationDevice: RESUME=UUID=5b7bcf35-5ca6-4af2-a21c-ee9bf1c3b398 InstallationDate: Installed on 2018-11-15 (3 days ago) InstallationMedia: Linux Mint 18.3 "Sylvia" - Release amd64 20171124 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 004: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller Bus 001 Device 003: ID 13d3:5a01 IMC Networks Bus 001 Device 005: ID 04ca:3010 Lite-On Technology Corp. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: ASUSTeK COMPUTER INC. X541NA Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-39-generic root=UUID=c00192a2-f322-4512-bf47-91b23cb9aba2 ro modprobe.blacklist=hi d_sensor_hub quiet splash vt.handoff=7 ProcVersionSignature: Ubuntu 4.15.0-39.42~16.04.1-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-39-generic N/A linux-backports-modules-4.15.0-39-generic N/A linux-firmware 1.173 Tags: sylvia Uname: Linux 4.15.0-39-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo _MarkForUpload: True dmi.bios.date: 08/24/2018 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: X541NA.321 dmi.board.asset.tag: ATN12345678901234567 dmi.board.name: X541NA dmi.board.vendor: ASUSTeK COMPUTER INC. dmi.board.version: 1.0 dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 10 dmi.chassis.vendor: ASUSTeK COMPUTER INC. dmi.chassis.version: 1.0 dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvrX541NA.321:bd08/24/2018:svnASUSTeKCOMPUTERINC.:pnX541NA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnX541NA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0: dmi.product.family: VivoBook dmi.product.name: X541NA dmi.product.version: 1.0 dmi.sys.vendor: ASUSTeK COMPUTER INC. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803863/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803863] CurrentDmesg.txt
apport information ** Attachment added: "CurrentDmesg.txt" https://bugs.launchpad.net/bugs/1803863/+attachment/5213986/+files/CurrentDmesg.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803863 Title: hid-multitouch Status in linux package in Ubuntu: Incomplete Bug description: The cursor hangs from time to time whether I'm watching a video or scrolling through a webpage and I have to use the commands "sudo modprobe -r hid-multitouch && sudo modprobe multitouch" to keep enabling the touchpad. This bug is in kernels 4.15.0-24, 4.15.0-29, 4.15.0-30, 4.15.0-32, 4.15.0-33, 4.15.0-34, 4.15.0-36, 4.15.0-38 and 4.15.0-39. Touchpad is FTE1200:00 0B05:0201. --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC0D0p: jay1640 F...m pulseaudio /dev/snd/controlC0: jay1640 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux 18.3 HibernationDevice: RESUME=UUID=5b7bcf35-5ca6-4af2-a21c-ee9bf1c3b398 InstallationDate: Installed on 2018-11-15 (3 days ago) InstallationMedia: Linux Mint 18.3 "Sylvia" - Release amd64 20171124 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 004: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller Bus 001 Device 003: ID 13d3:5a01 IMC Networks Bus 001 Device 005: ID 04ca:3010 Lite-On Technology Corp. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: ASUSTeK COMPUTER INC. X541NA Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-39-generic root=UUID=c00192a2-f322-4512-bf47-91b23cb9aba2 ro modprobe.blacklist=hi d_sensor_hub quiet splash vt.handoff=7 ProcVersionSignature: Ubuntu 4.15.0-39.42~16.04.1-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-39-generic N/A linux-backports-modules-4.15.0-39-generic N/A linux-firmware 1.173 Tags: sylvia Uname: Linux 4.15.0-39-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo _MarkForUpload: True dmi.bios.date: 08/24/2018 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: X541NA.321 dmi.board.asset.tag: ATN12345678901234567 dmi.board.name: X541NA dmi.board.vendor: ASUSTeK COMPUTER INC. dmi.board.version: 1.0 dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 10 dmi.chassis.vendor: ASUSTeK COMPUTER INC. dmi.chassis.version: 1.0 dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvrX541NA.321:bd08/24/2018:svnASUSTeKCOMPUTERINC.:pnX541NA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnX541NA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0: dmi.product.family: VivoBook dmi.product.name: X541NA dmi.product.version: 1.0 dmi.sys.vendor: ASUSTeK COMPUTER INC. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803863/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803863] PulseList.txt
apport information ** Attachment added: "PulseList.txt" https://bugs.launchpad.net/bugs/1803863/+attachment/5213994/+files/PulseList.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803863 Title: hid-multitouch Status in linux package in Ubuntu: Incomplete Bug description: The cursor hangs from time to time whether I'm watching a video or scrolling through a webpage and I have to use the commands "sudo modprobe -r hid-multitouch && sudo modprobe multitouch" to keep enabling the touchpad. This bug is in kernels 4.15.0-24, 4.15.0-29, 4.15.0-30, 4.15.0-32, 4.15.0-33, 4.15.0-34, 4.15.0-36, 4.15.0-38 and 4.15.0-39. Touchpad is FTE1200:00 0B05:0201. --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC0D0p: jay1640 F...m pulseaudio /dev/snd/controlC0: jay1640 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux 18.3 HibernationDevice: RESUME=UUID=5b7bcf35-5ca6-4af2-a21c-ee9bf1c3b398 InstallationDate: Installed on 2018-11-15 (3 days ago) InstallationMedia: Linux Mint 18.3 "Sylvia" - Release amd64 20171124 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 004: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller Bus 001 Device 003: ID 13d3:5a01 IMC Networks Bus 001 Device 005: ID 04ca:3010 Lite-On Technology Corp. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: ASUSTeK COMPUTER INC. X541NA Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-39-generic root=UUID=c00192a2-f322-4512-bf47-91b23cb9aba2 ro modprobe.blacklist=hi d_sensor_hub quiet splash vt.handoff=7 ProcVersionSignature: Ubuntu 4.15.0-39.42~16.04.1-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-39-generic N/A linux-backports-modules-4.15.0-39-generic N/A linux-firmware 1.173 Tags: sylvia Uname: Linux 4.15.0-39-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo _MarkForUpload: True dmi.bios.date: 08/24/2018 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: X541NA.321 dmi.board.asset.tag: ATN12345678901234567 dmi.board.name: X541NA dmi.board.vendor: ASUSTeK COMPUTER INC. dmi.board.version: 1.0 dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 10 dmi.chassis.vendor: ASUSTeK COMPUTER INC. dmi.chassis.version: 1.0 dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvrX541NA.321:bd08/24/2018:svnASUSTeKCOMPUTERINC.:pnX541NA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnX541NA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0: dmi.product.family: VivoBook dmi.product.name: X541NA dmi.product.version: 1.0 dmi.sys.vendor: ASUSTeK COMPUTER INC. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803863/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803863] ProcModules.txt
apport information ** Attachment added: "ProcModules.txt" https://bugs.launchpad.net/bugs/1803863/+attachment/5213993/+files/ProcModules.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803863 Title: hid-multitouch Status in linux package in Ubuntu: Incomplete Bug description: The cursor hangs from time to time whether I'm watching a video or scrolling through a webpage and I have to use the commands "sudo modprobe -r hid-multitouch && sudo modprobe multitouch" to keep enabling the touchpad. This bug is in kernels 4.15.0-24, 4.15.0-29, 4.15.0-30, 4.15.0-32, 4.15.0-33, 4.15.0-34, 4.15.0-36, 4.15.0-38 and 4.15.0-39. Touchpad is FTE1200:00 0B05:0201. --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC0D0p: jay1640 F...m pulseaudio /dev/snd/controlC0: jay1640 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux 18.3 HibernationDevice: RESUME=UUID=5b7bcf35-5ca6-4af2-a21c-ee9bf1c3b398 InstallationDate: Installed on 2018-11-15 (3 days ago) InstallationMedia: Linux Mint 18.3 "Sylvia" - Release amd64 20171124 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 004: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller Bus 001 Device 003: ID 13d3:5a01 IMC Networks Bus 001 Device 005: ID 04ca:3010 Lite-On Technology Corp. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: ASUSTeK COMPUTER INC. X541NA Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-39-generic root=UUID=c00192a2-f322-4512-bf47-91b23cb9aba2 ro modprobe.blacklist=hi d_sensor_hub quiet splash vt.handoff=7 ProcVersionSignature: Ubuntu 4.15.0-39.42~16.04.1-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-39-generic N/A linux-backports-modules-4.15.0-39-generic N/A linux-firmware 1.173 Tags: sylvia Uname: Linux 4.15.0-39-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo _MarkForUpload: True dmi.bios.date: 08/24/2018 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: X541NA.321 dmi.board.asset.tag: ATN12345678901234567 dmi.board.name: X541NA dmi.board.vendor: ASUSTeK COMPUTER INC. dmi.board.version: 1.0 dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 10 dmi.chassis.vendor: ASUSTeK COMPUTER INC. dmi.chassis.version: 1.0 dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvrX541NA.321:bd08/24/2018:svnASUSTeKCOMPUTERINC.:pnX541NA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnX541NA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0: dmi.product.family: VivoBook dmi.product.name: X541NA dmi.product.version: 1.0 dmi.sys.vendor: ASUSTeK COMPUTER INC. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803863/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803863] CRDA.txt
apport information ** Attachment added: "CRDA.txt" https://bugs.launchpad.net/bugs/1803863/+attachment/5213985/+files/CRDA.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803863 Title: hid-multitouch Status in linux package in Ubuntu: Incomplete Bug description: The cursor hangs from time to time whether I'm watching a video or scrolling through a webpage and I have to use the commands "sudo modprobe -r hid-multitouch && sudo modprobe multitouch" to keep enabling the touchpad. This bug is in kernels 4.15.0-24, 4.15.0-29, 4.15.0-30, 4.15.0-32, 4.15.0-33, 4.15.0-34, 4.15.0-36, 4.15.0-38 and 4.15.0-39. Touchpad is FTE1200:00 0B05:0201. --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC0D0p: jay1640 F...m pulseaudio /dev/snd/controlC0: jay1640 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux 18.3 HibernationDevice: RESUME=UUID=5b7bcf35-5ca6-4af2-a21c-ee9bf1c3b398 InstallationDate: Installed on 2018-11-15 (3 days ago) InstallationMedia: Linux Mint 18.3 "Sylvia" - Release amd64 20171124 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 004: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller Bus 001 Device 003: ID 13d3:5a01 IMC Networks Bus 001 Device 005: ID 04ca:3010 Lite-On Technology Corp. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: ASUSTeK COMPUTER INC. X541NA Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-39-generic root=UUID=c00192a2-f322-4512-bf47-91b23cb9aba2 ro modprobe.blacklist=hi d_sensor_hub quiet splash vt.handoff=7 ProcVersionSignature: Ubuntu 4.15.0-39.42~16.04.1-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-39-generic N/A linux-backports-modules-4.15.0-39-generic N/A linux-firmware 1.173 Tags: sylvia Uname: Linux 4.15.0-39-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo _MarkForUpload: True dmi.bios.date: 08/24/2018 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: X541NA.321 dmi.board.asset.tag: ATN12345678901234567 dmi.board.name: X541NA dmi.board.vendor: ASUSTeK COMPUTER INC. dmi.board.version: 1.0 dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 10 dmi.chassis.vendor: ASUSTeK COMPUTER INC. dmi.chassis.version: 1.0 dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvrX541NA.321:bd08/24/2018:svnASUSTeKCOMPUTERINC.:pnX541NA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnX541NA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0: dmi.product.family: VivoBook dmi.product.name: X541NA dmi.product.version: 1.0 dmi.sys.vendor: ASUSTeK COMPUTER INC. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803863/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803863] ProcEnviron.txt
apport information ** Attachment added: "ProcEnviron.txt" https://bugs.launchpad.net/bugs/1803863/+attachment/5213991/+files/ProcEnviron.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803863 Title: hid-multitouch Status in linux package in Ubuntu: Incomplete Bug description: The cursor hangs from time to time whether I'm watching a video or scrolling through a webpage and I have to use the commands "sudo modprobe -r hid-multitouch && sudo modprobe multitouch" to keep enabling the touchpad. This bug is in kernels 4.15.0-24, 4.15.0-29, 4.15.0-30, 4.15.0-32, 4.15.0-33, 4.15.0-34, 4.15.0-36, 4.15.0-38 and 4.15.0-39. Touchpad is FTE1200:00 0B05:0201. --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC0D0p: jay1640 F...m pulseaudio /dev/snd/controlC0: jay1640 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux 18.3 HibernationDevice: RESUME=UUID=5b7bcf35-5ca6-4af2-a21c-ee9bf1c3b398 InstallationDate: Installed on 2018-11-15 (3 days ago) InstallationMedia: Linux Mint 18.3 "Sylvia" - Release amd64 20171124 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 004: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller Bus 001 Device 003: ID 13d3:5a01 IMC Networks Bus 001 Device 005: ID 04ca:3010 Lite-On Technology Corp. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: ASUSTeK COMPUTER INC. X541NA Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-39-generic root=UUID=c00192a2-f322-4512-bf47-91b23cb9aba2 ro modprobe.blacklist=hi d_sensor_hub quiet splash vt.handoff=7 ProcVersionSignature: Ubuntu 4.15.0-39.42~16.04.1-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-39-generic N/A linux-backports-modules-4.15.0-39-generic N/A linux-firmware 1.173 Tags: sylvia Uname: Linux 4.15.0-39-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo _MarkForUpload: True dmi.bios.date: 08/24/2018 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: X541NA.321 dmi.board.asset.tag: ATN12345678901234567 dmi.board.name: X541NA dmi.board.vendor: ASUSTeK COMPUTER INC. dmi.board.version: 1.0 dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 10 dmi.chassis.vendor: ASUSTeK COMPUTER INC. dmi.chassis.version: 1.0 dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvrX541NA.321:bd08/24/2018:svnASUSTeKCOMPUTERINC.:pnX541NA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnX541NA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0: dmi.product.family: VivoBook dmi.product.name: X541NA dmi.product.version: 1.0 dmi.sys.vendor: ASUSTeK COMPUTER INC. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803863/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803863] ProcCpuinfoMinimal.txt
apport information ** Attachment added: "ProcCpuinfoMinimal.txt" https://bugs.launchpad.net/bugs/1803863/+attachment/5213990/+files/ProcCpuinfoMinimal.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803863 Title: hid-multitouch Status in linux package in Ubuntu: Incomplete Bug description: The cursor hangs from time to time whether I'm watching a video or scrolling through a webpage and I have to use the commands "sudo modprobe -r hid-multitouch && sudo modprobe multitouch" to keep enabling the touchpad. This bug is in kernels 4.15.0-24, 4.15.0-29, 4.15.0-30, 4.15.0-32, 4.15.0-33, 4.15.0-34, 4.15.0-36, 4.15.0-38 and 4.15.0-39. Touchpad is FTE1200:00 0B05:0201. --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC0D0p: jay1640 F...m pulseaudio /dev/snd/controlC0: jay1640 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux 18.3 HibernationDevice: RESUME=UUID=5b7bcf35-5ca6-4af2-a21c-ee9bf1c3b398 InstallationDate: Installed on 2018-11-15 (3 days ago) InstallationMedia: Linux Mint 18.3 "Sylvia" - Release amd64 20171124 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 004: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller Bus 001 Device 003: ID 13d3:5a01 IMC Networks Bus 001 Device 005: ID 04ca:3010 Lite-On Technology Corp. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: ASUSTeK COMPUTER INC. X541NA Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-39-generic root=UUID=c00192a2-f322-4512-bf47-91b23cb9aba2 ro modprobe.blacklist=hi d_sensor_hub quiet splash vt.handoff=7 ProcVersionSignature: Ubuntu 4.15.0-39.42~16.04.1-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-39-generic N/A linux-backports-modules-4.15.0-39-generic N/A linux-firmware 1.173 Tags: sylvia Uname: Linux 4.15.0-39-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo _MarkForUpload: True dmi.bios.date: 08/24/2018 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: X541NA.321 dmi.board.asset.tag: ATN12345678901234567 dmi.board.name: X541NA dmi.board.vendor: ASUSTeK COMPUTER INC. dmi.board.version: 1.0 dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 10 dmi.chassis.vendor: ASUSTeK COMPUTER INC. dmi.chassis.version: 1.0 dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvrX541NA.321:bd08/24/2018:svnASUSTeKCOMPUTERINC.:pnX541NA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnX541NA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0: dmi.product.family: VivoBook dmi.product.name: X541NA dmi.product.version: 1.0 dmi.sys.vendor: ASUSTeK COMPUTER INC. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803863/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803863] Lspci.txt
apport information ** Attachment added: "Lspci.txt" https://bugs.launchpad.net/bugs/1803863/+attachment/5213988/+files/Lspci.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803863 Title: hid-multitouch Status in linux package in Ubuntu: Incomplete Bug description: The cursor hangs from time to time whether I'm watching a video or scrolling through a webpage and I have to use the commands "sudo modprobe -r hid-multitouch && sudo modprobe multitouch" to keep enabling the touchpad. This bug is in kernels 4.15.0-24, 4.15.0-29, 4.15.0-30, 4.15.0-32, 4.15.0-33, 4.15.0-34, 4.15.0-36, 4.15.0-38 and 4.15.0-39. Touchpad is FTE1200:00 0B05:0201. --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC0D0p: jay1640 F...m pulseaudio /dev/snd/controlC0: jay1640 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux 18.3 HibernationDevice: RESUME=UUID=5b7bcf35-5ca6-4af2-a21c-ee9bf1c3b398 InstallationDate: Installed on 2018-11-15 (3 days ago) InstallationMedia: Linux Mint 18.3 "Sylvia" - Release amd64 20171124 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 004: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller Bus 001 Device 003: ID 13d3:5a01 IMC Networks Bus 001 Device 005: ID 04ca:3010 Lite-On Technology Corp. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: ASUSTeK COMPUTER INC. X541NA Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-39-generic root=UUID=c00192a2-f322-4512-bf47-91b23cb9aba2 ro modprobe.blacklist=hi d_sensor_hub quiet splash vt.handoff=7 ProcVersionSignature: Ubuntu 4.15.0-39.42~16.04.1-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-39-generic N/A linux-backports-modules-4.15.0-39-generic N/A linux-firmware 1.173 Tags: sylvia Uname: Linux 4.15.0-39-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo _MarkForUpload: True dmi.bios.date: 08/24/2018 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: X541NA.321 dmi.board.asset.tag: ATN12345678901234567 dmi.board.name: X541NA dmi.board.vendor: ASUSTeK COMPUTER INC. dmi.board.version: 1.0 dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 10 dmi.chassis.vendor: ASUSTeK COMPUTER INC. dmi.chassis.version: 1.0 dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvrX541NA.321:bd08/24/2018:svnASUSTeKCOMPUTERINC.:pnX541NA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnX541NA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0: dmi.product.family: VivoBook dmi.product.name: X541NA dmi.product.version: 1.0 dmi.sys.vendor: ASUSTeK COMPUTER INC. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803863/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803863] ProcCpuinfo.txt
apport information ** Attachment added: "ProcCpuinfo.txt" https://bugs.launchpad.net/bugs/1803863/+attachment/5213989/+files/ProcCpuinfo.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803863 Title: hid-multitouch Status in linux package in Ubuntu: Incomplete Bug description: The cursor hangs from time to time whether I'm watching a video or scrolling through a webpage and I have to use the commands "sudo modprobe -r hid-multitouch && sudo modprobe multitouch" to keep enabling the touchpad. This bug is in kernels 4.15.0-24, 4.15.0-29, 4.15.0-30, 4.15.0-32, 4.15.0-33, 4.15.0-34, 4.15.0-36, 4.15.0-38 and 4.15.0-39. Touchpad is FTE1200:00 0B05:0201. --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC0D0p: jay1640 F...m pulseaudio /dev/snd/controlC0: jay1640 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux 18.3 HibernationDevice: RESUME=UUID=5b7bcf35-5ca6-4af2-a21c-ee9bf1c3b398 InstallationDate: Installed on 2018-11-15 (3 days ago) InstallationMedia: Linux Mint 18.3 "Sylvia" - Release amd64 20171124 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 004: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller Bus 001 Device 003: ID 13d3:5a01 IMC Networks Bus 001 Device 005: ID 04ca:3010 Lite-On Technology Corp. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: ASUSTeK COMPUTER INC. X541NA Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-39-generic root=UUID=c00192a2-f322-4512-bf47-91b23cb9aba2 ro modprobe.blacklist=hi d_sensor_hub quiet splash vt.handoff=7 ProcVersionSignature: Ubuntu 4.15.0-39.42~16.04.1-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-39-generic N/A linux-backports-modules-4.15.0-39-generic N/A linux-firmware 1.173 Tags: sylvia Uname: Linux 4.15.0-39-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo _MarkForUpload: True dmi.bios.date: 08/24/2018 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: X541NA.321 dmi.board.asset.tag: ATN12345678901234567 dmi.board.name: X541NA dmi.board.vendor: ASUSTeK COMPUTER INC. dmi.board.version: 1.0 dmi.chassis.asset.tag: No Asset Tag dmi.chassis.type: 10 dmi.chassis.vendor: ASUSTeK COMPUTER INC. dmi.chassis.version: 1.0 dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvrX541NA.321:bd08/24/2018:svnASUSTeKCOMPUTERINC.:pnX541NA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnX541NA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0: dmi.product.family: VivoBook dmi.product.name: X541NA dmi.product.version: 1.0 dmi.sys.vendor: ASUSTeK COMPUTER INC. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803863/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803863] Re: hid-multitouch
apport information ** Tags added: apport-collected sylvia ** Description changed: - The cursor hangs from time to time whether I'm watching a video or - scrolling through a webpage and I have to use the commands "sudo - modprobe -r hid-multitouch && sudo modprobe multitouch" to keep enabling - the touchpad. This bug is in kernels 4.15.0-24, 4.15.0-29, 4.15.0-30, - 4.15.0-32, 4.15.0-33, 4.15.0-34, 4.15.0-36, 4.15.0-38 and 4.15.0-39. - Touchpad is FTE1200:00 0B05:0201. + The cursor hangs from time to time whether I'm watching a video or scrolling through a webpage and I have to use the commands "sudo modprobe -r hid-multitouch && sudo modprobe multitouch" to keep enabling the touchpad. This bug is in kernels 4.15.0-24, 4.15.0-29, 4.15.0-30, 4.15.0-32, 4.15.0-33, 4.15.0-34, 4.15.0-36, 4.15.0-38 and 4.15.0-39. Touchpad is FTE1200:00 0B05:0201. + --- + ApportVersion: 2.20.1-0ubuntu2.18 + Architecture: amd64 + AudioDevicesInUse: + USERPID ACCESS COMMAND + /dev/snd/pcmC0D0p: jay1640 F...m pulseaudio + /dev/snd/controlC0: jay1640 F pulseaudio + CurrentDesktop: X-Cinnamon + DistroRelease: Linux 18.3 + HibernationDevice: RESUME=UUID=5b7bcf35-5ca6-4af2-a21c-ee9bf1c3b398 + InstallationDate: Installed on 2018-11-15 (3 days ago) + InstallationMedia: Linux Mint 18.3 "Sylvia" - Release amd64 20171124 + Lsusb: + Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub + Bus 001 Device 004: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller + Bus 001 Device 003: ID 13d3:5a01 IMC Networks + Bus 001 Device 005: ID 04ca:3010 Lite-On Technology Corp. + Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub + MachineType: ASUSTeK COMPUTER INC. X541NA + Package: linux (not installed) + ProcFB: 0 inteldrmfb + ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-39-generic root=UUID=c00192a2-f322-4512-bf47-91b23cb9aba2 ro modprobe.blacklist=hi d_sensor_hub quiet splash vt.handoff=7 + ProcVersionSignature: Ubuntu 4.15.0-39.42~16.04.1-generic 4.15.18 + RelatedPackageVersions: + linux-restricted-modules-4.15.0-39-generic N/A + linux-backports-modules-4.15.0-39-generic N/A + linux-firmware 1.173 + Tags: sylvia + Uname: Linux 4.15.0-39-generic x86_64 + UpgradeStatus: No upgrade log present (probably fresh install) + UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo + _MarkForUpload: True + dmi.bios.date: 08/24/2018 + dmi.bios.vendor: American Megatrends Inc. + dmi.bios.version: X541NA.321 + dmi.board.asset.tag: ATN12345678901234567 + dmi.board.name: X541NA + dmi.board.vendor: ASUSTeK COMPUTER INC. + dmi.board.version: 1.0 + dmi.chassis.asset.tag: No Asset Tag + dmi.chassis.type: 10 + dmi.chassis.vendor: ASUSTeK COMPUTER INC. + dmi.chassis.version: 1.0 + dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvrX541NA.321:bd08/24/2018:svnASUSTeKCOMPUTERINC.:pnX541NA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnX541NA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0: + dmi.product.family: VivoBook + dmi.product.name: X541NA + dmi.product.version: 1.0 + dmi.sys.vendor: ASUSTeK COMPUTER INC. ** Attachment added: "AlsaInfo.txt" https://bugs.launchpad.net/bugs/1803863/+attachment/5213984/+files/AlsaInfo.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803863 Title: hid-multitouch Status in linux package in Ubuntu: Incomplete Bug description: The cursor hangs from time to time whether I'm watching a video or scrolling through a webpage and I have to use the commands "sudo modprobe -r hid-multitouch && sudo modprobe multitouch" to keep enabling the touchpad. This bug is in kernels 4.15.0-24, 4.15.0-29, 4.15.0-30, 4.15.0-32, 4.15.0-33, 4.15.0-34, 4.15.0-36, 4.15.0-38 and 4.15.0-39. Touchpad is FTE1200:00 0B05:0201. --- ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC0D0p: jay1640 F...m pulseaudio /dev/snd/controlC0: jay1640 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux 18.3 HibernationDevice: RESUME=UUID=5b7bcf35-5ca6-4af2-a21c-ee9bf1c3b398 InstallationDate: Installed on 2018-11-15 (3 days ago) InstallationMedia: Linux Mint 18.3 "Sylvia" - Release amd64 20171124 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 004: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller Bus 001 Device 003: ID 13d3:5a01 IMC Networks Bus 001 Device 005: ID 04ca:3010 Lite-On Technology Corp. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: ASUSTeK COMPUTER INC. X541NA Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-39-generic root=UUID=c00192a2-f322-4512-bf47-91b23cb9aba2 ro modprobe.blacklist=hi d_sensor_hub quiet splash vt.handoff=7 ProcVersionS
[Kernel-packages] [Bug 1776563] Re: Acer Aspire A315 IOAPIC failure on Ubuntu 18.04, kernel hangs, can't load, kernel freeze (AMD Ryzen 5/Radeon/Raven) / AMDGPU Hybrid crash
Darksurf(pirois331-u), Can tell how much progress has Acer Support team has done so far? -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux-firmware in Ubuntu. https://bugs.launchpad.net/bugs/1776563 Title: Acer Aspire A315 IOAPIC failure on Ubuntu 18.04, kernel hangs, can't load, kernel freeze (AMD Ryzen 5/Radeon/Raven) / AMDGPU Hybrid crash Status in amd: Fix Committed Status in Linux: Incomplete Status in linux package in Ubuntu: Triaged Status in linux-firmware package in Ubuntu: Confirmed Bug description: CPU: Ryzen 5 2500U VGA: Radeon 535 Notebook: Acer Aspire A315 This is a brand new notebook on the market with Ryzen 5/Radeon. The default kernel of Ubuntu(18.04) hangs at loading with message: tsc: Refined TSC clocksource calibration: 1996.250 MHz clocksource: tsc: mask: 0x max_cycles: (...), max_idle_ns: (...) Soft lockup Using pci=noacpi kernel parameter kernel loads without any problem but my notebook produces more heat than on Win10. If I know right Acer notebooks need ACPI to the correct power management. The same thing happens on mainline 4.17,4.18rc1-2. BIOS upgrade to the latest version: 1.08 hasn't helped This problem has been reported upstream: https://bugzilla.kernel.org/show_bug.cgi?id=200087 The latest correctly working kernel was 4.13.* but the heat problem was present with this too. To manage notifications about this bug go to: https://bugs.launchpad.net/amd/+bug/1776563/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803891] [NEW] package nvidia-kernel-common-390 390.77-0ubuntu0.18.04.1 failed to install/upgrade: trying to overwrite '/lib/udev/rules.d/71-nvidia.rules', which is also in pack
Public bug reported: upgrade from 16.04.03 > 18.04.01 ProblemType: Package DistroRelease: Ubuntu 18.04 Package: nvidia-kernel-common-390 390.77-0ubuntu0.18.04.1 ProcVersionSignature: Ubuntu 4.4.0-139.165-generic 4.4.160 Uname: Linux 4.4.0-139-generic x86_64 NonfreeKernelModules: nvidia_modeset nvidia ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 Date: Sun Nov 18 17:07:05 2018 Dependencies: ErrorMessage: trying to overwrite '/lib/udev/rules.d/71-nvidia.rules', which is also in package nvidia-384 384.130-0ubuntu0.16.04.1 InstallationDate: Installed on 2013-10-12 (1862 days ago) InstallationMedia: Ubuntu 13.04 "Raring Ringtail" - Release amd64 (20130424) RelatedPackageVersions: dpkg 1.19.0.5ubuntu2.1 apt 1.6.6 SourcePackage: nvidia-graphics-drivers-390 Title: package nvidia-kernel-common-390 390.77-0ubuntu0.18.04.1 failed to install/upgrade: trying to overwrite '/lib/udev/rules.d/71-nvidia.rules', which is also in package nvidia-384 384.130-0ubuntu0.16.04.1 UpgradeStatus: Upgraded to bionic on 2018-11-18 (0 days ago) ** Affects: nvidia-graphics-drivers-390 (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-package bionic -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to nvidia-graphics-drivers-390 in Ubuntu. https://bugs.launchpad.net/bugs/1803891 Title: package nvidia-kernel-common-390 390.77-0ubuntu0.18.04.1 failed to install/upgrade: trying to overwrite '/lib/udev/rules.d/71-nvidia.rules', which is also in package nvidia-384 384.130-0ubuntu0.16.04.1 Status in nvidia-graphics-drivers-390 package in Ubuntu: New Bug description: upgrade from 16.04.03 > 18.04.01 ProblemType: Package DistroRelease: Ubuntu 18.04 Package: nvidia-kernel-common-390 390.77-0ubuntu0.18.04.1 ProcVersionSignature: Ubuntu 4.4.0-139.165-generic 4.4.160 Uname: Linux 4.4.0-139-generic x86_64 NonfreeKernelModules: nvidia_modeset nvidia ApportVersion: 2.20.1-0ubuntu2.18 Architecture: amd64 Date: Sun Nov 18 17:07:05 2018 Dependencies: ErrorMessage: trying to overwrite '/lib/udev/rules.d/71-nvidia.rules', which is also in package nvidia-384 384.130-0ubuntu0.16.04.1 InstallationDate: Installed on 2013-10-12 (1862 days ago) InstallationMedia: Ubuntu 13.04 "Raring Ringtail" - Release amd64 (20130424) RelatedPackageVersions: dpkg 1.19.0.5ubuntu2.1 apt 1.6.6 SourcePackage: nvidia-graphics-drivers-390 Title: package nvidia-kernel-common-390 390.77-0ubuntu0.18.04.1 failed to install/upgrade: trying to overwrite '/lib/udev/rules.d/71-nvidia.rules', which is also in package nvidia-384 384.130-0ubuntu0.16.04.1 UpgradeStatus: Upgraded to bionic on 2018-11-18 (0 days ago) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-390/+bug/1803891/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1800991] Re: Bad sata messages after upgrade to 4.15.0-41-generic on bionic
I can actually get an sata error pretty easy (different messaged thou): Steps: 1. run dd if=/dev/sdb of=/dev/null bs=1M (sdb attached to ata6). 2. Suspend the system to ram (I used the power button). 3. Wait to suspend. 4. Wake up the system after 2-5 secs. Result: Sata error messages below [706792.917607] IPv6: ADDRCONF(NETDEV_UP): wlp4s0: link is not ready [706793.021631] IPv6: ADDRCONF(NETDEV_UP): wlp4s0: link is not ready [706794.460778] ata6.00: exception Emask 0x52 SAct 0x1c SErr 0x1000c00 action 0x6 frozen [706794.460786] ata6.00: irq_stat 0x0800, interface fatal error [706794.460792] ata6: SError: { Proto HostInt TrStaTrns } [706794.460798] ata6.00: failed command: READ FPDMA QUEUED [706794.460812] ata6.00: cmd 60/78:90:88:c6:a4/01:00:00:00:00/40 tag 18 ncq dma 192512 in res 40/00:a4:48:cf:a4/00:00:00:00:00/40 Emask 0x52 (ATA bus error) [706794.460818] ata6.00: status: { DRDY } [706794.460823] ata6.00: failed command: READ FPDMA QUEUED [706794.460835] ata6.00: cmd 60/48:98:00:c8:a4/07:00:00:00:00/40 tag 19 ncq dma 954368 in res 40/00:a4:48:cf:a4/00:00:00:00:00/40 Emask 0x52 (ATA bus error) [706794.460841] ata6.00: status: { DRDY } [706794.460846] ata6.00: failed command: READ FPDMA QUEUED [706794.460855] ata6.00: cmd 60/b8:a0:48:cf:a4/00:00:00:00:00/40 tag 20 ncq dma 94208 in res 40/00:a4:48:cf:a4/00:00:00:00:00/40 Emask 0x52 (ATA bus error) [706794.460859] ata6.00: status: { DRDY } -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1800991 Title: Bad sata messages after upgrade to 4.15.0-41-generic on bionic Status in linux package in Ubuntu: Incomplete Bug description: Hi: After upgrading to latest 4.15.0-41 kernel on ubuntu bionic I start getting weird error messages on kernel log (see below) related to sata drive - in this case 128GB ssd drive. Couple of things - it happened after system get out from sleep state (s3), the hdd is ssd and it is a brand new one (I have bought it 2 weeks ago). System: asus rog G551JW-CN319D (cpu i7, 16GM ram, 128GB ssd, 1TB hdd) Kernel: Ubuntu 4.15.0-38.41-generic 4.15.18 [121459.829759] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300) [121459.831501] ata5.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded [121459.831505] ata5.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out [121459.831508] ata5.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out [121459.834767] ata5.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded [121459.834773] ata5.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out [121459.834777] ata5.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out [121459.836022] ata5.00: configured for UDMA/133 [121459.934847] IPv6: ADDRCONF(NETDEV_UP): enp5s0f1: link is not ready [121459.983752] r8169 :05:00.1 enp5s0f1: link down [121459.983923] IPv6: ADDRCONF(NETDEV_UP): enp5s0f1: link is not ready [121459.987018] IPv6: ADDRCONF(NETDEV_UP): wlp4s0: link is not ready [121460.230787] IPv6: ADDRCONF(NETDEV_UP): wlp4s0: link is not ready [121460.285034] IPv6: ADDRCONF(NETDEV_UP): wlp4s0: link is not ready [121463.674998] wlp4s0: authenticate with 68:7f:74:3e:b0:b7 [121463.676976] wlp4s0: send auth to 68:7f:74:3e:b0:b7 (try 1/3) [121463.678951] wlp4s0: authenticated [121463.681714] wlp4s0: associate with 68:7f:74:3e:b0:b7 (try 1/3) [121463.684372] wlp4s0: RX AssocResp from 68:7f:74:3e:b0:b7 (capab=0x431 status=0 aid=3) [121463.687321] wlp4s0: associated [121464.754044] IPv6: ADDRCONF(NETDEV_CHANGE): wlp4s0: link becomes ready [121471.301682] ata6.00: exception Emask 0x10 SAct 0x6fff SErr 0x400100 action 0x6 frozen [121471.301685] ata6.00: irq_stat 0x0800, interface fatal error [121471.301687] ata6: SError: { UnrecovData Handshk } [121471.301690] ata6.00: failed command: WRITE FPDMA QUEUED [121471.301695] ata6.00: cmd 61/40:00:00:80:d2/05:00:01:00:00/40 tag 0 ncq dma 688128 out res 40/00:cc:40:05:d0/00:00:01:00:00/40 Emask 0x10 (ATA bus error)
[Kernel-packages] [Bug 1802822] Re: package linux-image-4.4.0-112-generic 4.4.0-112.135 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2
I ran Software Updater yesterday, and it seemed to get hung up. I left it on overnight, and it did not progress. I'm attaching a screenshot of the Software Updater. I will terminate the application and attempt to reboot. ** Attachment added: "Software Updater is locked up while updating Ubuntu" https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1802822/+attachment/5213976/+files/Screenshot_2018-11-18_10-22-31.png -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1802822 Title: package linux-image-4.4.0-112-generic 4.4.0-112.135 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2 Status in linux package in Ubuntu: Incomplete Bug description: Just booted and logged in. Crash report. You tell me what happened. I have not had a clean install since last spring (March/April 2018: Linux 4.4.0-109-generic i686), yet everything seems to run okay. ProblemType: Package DistroRelease: Ubuntu 16.04 Package: linux-image-4.4.0-112-generic 4.4.0-112.135 ProcVersionSignature: Ubuntu 4.4.0-137.163-generic 4.4.144 Uname: Linux 4.4.0-137-generic i686 ApportVersion: 2.20.1-0ubuntu2.18 Architecture: i386 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: randy 2004 F pulseaudio /dev/snd/controlC0: randy 2004 F pulseaudio Date: Mon Nov 5 18:00:50 2018 DuplicateSignature: package:linux-image-4.4.0-112-generic:4.4.0-112.135 Setting up linux-image-4.4.0-112-generic (4.4.0-112.135) ... Internal Error: Could not find image (/boot/vmlinuz-4.4.0-112-generic) dpkg: error processing package linux-image-4.4.0-112-generic (--configure): subprocess installed post-installation script returned error exit status 2 ErrorMessage: subprocess installed post-installation script returned error exit status 2 HibernationDevice: RESUME=UUID=7f28c03f-cc04-4d1c-9d1d-f3ce2dbe4fea InstallationDate: Installed on 2015-09-22 (1146 days ago) InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta i386 (20150805) MachineType: Dell Inc. OptiPlex 780 ProcFB: 0 nouveaufb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-137-generic root=/dev/mapper/vg_ubu-h4_ubu_root ro quiet splash PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No PulseAudio daemon running, or not running as session daemon. RelatedPackageVersions: grub-pc 2.02~beta2-36ubuntu3.18 RfKill: 0: phy0: Wireless LAN Soft blocked: no Hard blocked: no SourcePackage: linux Title: package linux-image-4.4.0-112-generic 4.4.0-112.135 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2 UpgradeStatus: No upgrade log present (probably fresh install) dmi.bios.date: 02/13/2010 dmi.bios.vendor: Dell Inc. dmi.bios.version: A03 dmi.board.name: 0C27VV dmi.board.vendor: Dell Inc. dmi.board.version: A01 dmi.chassis.type: 6 dmi.chassis.vendor: Dell Inc. dmi.modalias: dmi:bvnDellInc.:bvrA03:bd02/13/2010:svnDellInc.:pnOptiPlex780:pvr:rvnDellInc.:rn0C27VV:rvrA01:cvnDellInc.:ct6:cvr: dmi.product.name: OptiPlex 780 dmi.sys.vendor: Dell Inc. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1802822/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803827] Re: Cant install from usb or normal upgrade(says not supported)
** Description changed: - Cant install from usb or normal upgrade(says not supported) it displays cdrom/casper/filesystem.squashfs error for the Asus Eee PC 904HD - --- + Cant install 18.10 from usb or normal upgrade from 18.04 to 18.10(says not supported) it displays cdrom/casper/filesystem.squashfs error for the Asus Eee PC 904HD + --- ProblemType: Bug AlsaVersion: Advanced Linux Sound Architecture Driver Version k4.15.0-39-generic. AplayDevices: - List of PLAYBACK Hardware Devices - card 0: Intel [HDA Intel], device 0: ALC269 Analog [ALC269 Analog] -Subdevices: 1/1 -Subdevice #0: subdevice #0 + List of PLAYBACK Hardware Devices + card 0: Intel [HDA Intel], device 0: ALC269 Analog [ALC269 Analog] + Subdevices: 1/1 + Subdevice #0: subdevice #0 ApportVersion: 2.20.9-0ubuntu7.5 Architecture: i386 ArecordDevices: - List of CAPTURE Hardware Devices - card 0: Intel [HDA Intel], device 0: ALC269 Analog [ALC269 Analog] -Subdevices: 1/1 -Subdevice #0: subdevice #0 + List of CAPTURE Hardware Devices + card 0: Intel [HDA Intel], device 0: ALC269 Analog [ALC269 Analog] + Subdevices: 1/1 + Subdevice #0: subdevice #0 AudioDevicesInUse: - USERPID ACCESS COMMAND - /dev/snd/controlC0: asus725 F pulseaudio + USERPID ACCESS COMMAND + /dev/snd/controlC0: asus725 F pulseaudio Card0.Amixer.info: - Card hw:0 'Intel'/'HDA Intel at 0xf7eb8000 irq 24' -Mixer name : 'Realtek ALC269' -Components : 'HDA:10ec0269,1043834a,0014' -Controls : 22 -Simple ctrls : 10 + Card hw:0 'Intel'/'HDA Intel at 0xf7eb8000 irq 24' + Mixer name : 'Realtek ALC269' + Components : 'HDA:10ec0269,1043834a,0014' + Controls : 22 + Simple ctrls : 10 CurrentDesktop: LXDE DistroRelease: Ubuntu 18.04 MachineType: ASUSTeK Computer INC. 904HD Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-39-generic root=UUID=d88102d1-73dc-40ae-9e3b-8d09460b1ae5 ro quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-39.42-generic 4.15.18 RelatedPackageVersions: - linux-restricted-modules-4.15.0-39-generic N/A - linux-backports-modules-4.15.0-39-generic N/A - linux-firmware 1.173.1 + linux-restricted-modules-4.15.0-39-generic N/A + linux-backports-modules-4.15.0-39-generic N/A + linux-firmware 1.173.1 Tags: bionic Uname: Linux 4.15.0-39-generic i686 UpgradeStatus: Upgraded to bionic on 2018-11-16 (1 days ago) UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo _MarkForUpload: True dmi.bios.date: 09/22/2008 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 1002 dmi.board.asset.tag: To Be Filled By O.E.M. dmi.board.name: 904HD dmi.board.vendor: ASUSTeK Computer INC. dmi.board.version: x.xx dmi.chassis.asset.tag: 0x dmi.chassis.type: 10 dmi.chassis.vendor: ASUSTek Computer INC. dmi.chassis.version: x.x dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr1002:bd09/22/2008:svnASUSTeKComputerINC.:pn904HD:pvrx.x:rvnASUSTeKComputerINC.:rn904HD:rvrx.xx:cvnASUSTekComputerINC.:ct10:cvrx.x: dmi.product.family: To Be Filled By O.E.M. dmi.product.name: 904HD dmi.product.version: x.x dmi.sys.vendor: ASUSTeK Computer INC. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803827 Title: Cant install from usb or normal upgrade(says not supported) Status in linux package in Ubuntu: Confirmed Bug description: Cant install 18.10 from usb or normal upgrade from 18.04 to 18.10(says not supported) it displays cdrom/casper/filesystem.squashfs error for the Asus Eee PC 904HD --- ProblemType: Bug AlsaVersion: Advanced Linux Sound Architecture Driver Version k4.15.0-39-generic. AplayDevices: List of PLAYBACK Hardware Devices card 0: Intel [HDA Intel], device 0: ALC269 Analog [ALC269 Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 ApportVersion: 2.20.9-0ubuntu7.5 Architecture: i386 ArecordDevices: List of CAPTURE Hardware Devices card 0: Intel [HDA Intel], device 0: ALC269 Analog [ALC269 Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: asus725 F pulseaudio Card0.Amixer.info: Card hw:0 'Intel'/'HDA Intel at 0xf7eb8000 irq 24' Mixer name : 'Realtek ALC269' Components : 'HDA:10ec0269,1043834a,0014' Controls : 22 Simple ctrls : 10 CurrentDesktop: LXDE DistroRelease: Ubuntu 18.04 MachineType: ASUSTeK Computer INC. 904HD Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-39-generic root=UUID=d88102d1-73dc-40ae-9e3b-8d09460b1ae5 ro quiet splash vt.
[Kernel-packages] [Bug 1776563] Re: Acer Aspire A315 IOAPIC failure on Ubuntu 18.04, kernel hangs, can't load, kernel freeze (AMD Ryzen 5/Radeon/Raven) / AMDGPU Hybrid crash
** Changed in: amd Status: New => Fix Committed -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux-firmware in Ubuntu. https://bugs.launchpad.net/bugs/1776563 Title: Acer Aspire A315 IOAPIC failure on Ubuntu 18.04, kernel hangs, can't load, kernel freeze (AMD Ryzen 5/Radeon/Raven) / AMDGPU Hybrid crash Status in amd: Fix Committed Status in Linux: Incomplete Status in linux package in Ubuntu: Triaged Status in linux-firmware package in Ubuntu: Confirmed Bug description: CPU: Ryzen 5 2500U VGA: Radeon 535 Notebook: Acer Aspire A315 This is a brand new notebook on the market with Ryzen 5/Radeon. The default kernel of Ubuntu(18.04) hangs at loading with message: tsc: Refined TSC clocksource calibration: 1996.250 MHz clocksource: tsc: mask: 0x max_cycles: (...), max_idle_ns: (...) Soft lockup Using pci=noacpi kernel parameter kernel loads without any problem but my notebook produces more heat than on Win10. If I know right Acer notebooks need ACPI to the correct power management. The same thing happens on mainline 4.17,4.18rc1-2. BIOS upgrade to the latest version: 1.08 hasn't helped This problem has been reported upstream: https://bugzilla.kernel.org/show_bug.cgi?id=200087 The latest correctly working kernel was 4.13.* but the heat problem was present with this too. To manage notifications about this bug go to: https://bugs.launchpad.net/amd/+bug/1776563/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
Re: [Kernel-packages] [Bug 1803827] Re: Cant install from usb or normal upgrade(says not supported)
maybe but with other versions i didn't have this problem plus i have a simular bug on different computer On Sat, Nov 17, 2018 at 7:35 PM Philippe wrote: > https://blog.linuxmint.com/?p=3597 > > System requirements: > > 1GB RAM (2GB recommended for a comfortable usage). > 15GB of disk space (20GB recommended). > 1024×768 resolution (on lower resolutions, press ALT to drag windows with > the mouse if they don’t fit in the screen). > Notes: > > The 64-bit ISO can boot with BIOS or UEFI. > The 32-bit ISO can only boot with BIOS. > The 64-bit ISO is recommended for all modern computers (Almost all > computers sold since 2007 are equipped with 64-bit processors). > > > > https://www.cnet.com/products/asus-eee-pc-904hd-8-9-celeron-m-353-win-xp-home-1-gb-ram-80-gb-hdd-series/specs/ > > Your graphic card are certainly the problem > > -- > You received this bug notification because you are subscribed to the bug > report. > https://bugs.launchpad.net/bugs/1803827 > > Title: > Cant install from usb or normal upgrade(says not supported) > > Status in linux package in Ubuntu: > Confirmed > > Bug description: > Cant install from usb or normal upgrade(says not supported) it displays > cdrom/casper/filesystem.squashfs error for the Asus Eee PC 904HD > --- > ProblemType: Bug > AlsaVersion: Advanced Linux Sound Architecture Driver Version > k4.15.0-39-generic. > AplayDevices: > List of PLAYBACK Hardware Devices >card 0: Intel [HDA Intel], device 0: ALC269 Analog [ALC269 Analog] > Subdevices: 1/1 > Subdevice #0: subdevice #0 > ApportVersion: 2.20.9-0ubuntu7.5 > Architecture: i386 > ArecordDevices: > List of CAPTURE Hardware Devices >card 0: Intel [HDA Intel], device 0: ALC269 Analog [ALC269 Analog] > Subdevices: 1/1 > Subdevice #0: subdevice #0 > AudioDevicesInUse: >USERPID ACCESS COMMAND >/dev/snd/controlC0: asus725 F pulseaudio > Card0.Amixer.info: >Card hw:0 'Intel'/'HDA Intel at 0xf7eb8000 irq 24' > Mixer name : 'Realtek ALC269' > Components : 'HDA:10ec0269,1043834a,0014' > Controls : 22 > Simple ctrls : 10 > CurrentDesktop: LXDE > DistroRelease: Ubuntu 18.04 > MachineType: ASUSTeK Computer INC. 904HD > Package: linux (not installed) > ProcFB: 0 inteldrmfb > ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-39-generic > root=UUID=d88102d1-73dc-40ae-9e3b-8d09460b1ae5 ro quiet splash vt.handoff=1 > ProcVersionSignature: Ubuntu 4.15.0-39.42-generic 4.15.18 > RelatedPackageVersions: >linux-restricted-modules-4.15.0-39-generic N/A >linux-backports-modules-4.15.0-39-generic N/A >linux-firmware 1.173.1 > Tags: bionic > Uname: Linux 4.15.0-39-generic i686 > UpgradeStatus: Upgraded to bionic on 2018-11-16 (1 days ago) > UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo > _MarkForUpload: True > dmi.bios.date: 09/22/2008 > dmi.bios.vendor: American Megatrends Inc. > dmi.bios.version: 1002 > dmi.board.asset.tag: To Be Filled By O.E.M. > dmi.board.name: 904HD > dmi.board.vendor: ASUSTeK Computer INC. > dmi.board.version: x.xx > dmi.chassis.asset.tag: 0x > dmi.chassis.type: 10 > dmi.chassis.vendor: ASUSTek Computer INC. > dmi.chassis.version: x.x > dmi.modalias: > dmi:bvnAmericanMegatrendsInc.:bvr1002:bd09/22/2008:svnASUSTeKComputerINC.:pn904HD:pvrx.x:rvnASUSTeKComputerINC.:rn904HD:rvrx.xx:cvnASUSTekComputerINC.:ct10:cvrx.x: > dmi.product.family: To Be Filled By O.E.M. > dmi.product.name: 904HD > dmi.product.version: x.x > dmi.sys.vendor: ASUSTeK Computer INC. > > To manage notifications about this bug go to: > https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1803827/+subscriptions > -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803827 Title: Cant install from usb or normal upgrade(says not supported) Status in linux package in Ubuntu: Confirmed Bug description: Cant install from usb or normal upgrade(says not supported) it displays cdrom/casper/filesystem.squashfs error for the Asus Eee PC 904HD --- ProblemType: Bug AlsaVersion: Advanced Linux Sound Architecture Driver Version k4.15.0-39-generic. AplayDevices: List of PLAYBACK Hardware Devices card 0: Intel [HDA Intel], device 0: ALC269 Analog [ALC269 Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 ApportVersion: 2.20.9-0ubuntu7.5 Architecture: i386 ArecordDevices: List of CAPTURE Hardware Devices card 0: Intel [HDA Intel], device 0: ALC269 Analog [ALC269 Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: asus725 F pulseaudio Card0.Amixer.info: Card hw:0 'Intel'/'HDA Intel at 0xf7eb8000 irq 24' Mixer name : 'Realtek ALC269' Compone
[Kernel-packages] [Bug 1803878] ProcModules.txt
apport information ** Attachment added: "ProcModules.txt" https://bugs.launchpad.net/bugs/1803878/+attachment/5213969/+files/ProcModules.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803878 Title: Keyborad and Touchpad ob Fujitsu Lifebook E546 don't work with Kernel 4.15.0-39 Status in linux package in Ubuntu: Incomplete Bug description: With Kernel 4.15.0-38 instead of Kernel 4.15.0-39 keyboard and touchpad (ELANtech) work well. With 39 Version the touchpad doesn't work at all, the keyboard gets only every 2nd fingertip and on the other hand multiplicates every 3rd letter. --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU To manage notifications about this bug go to: https://bugs.launchpad.
[Kernel-packages] [Bug 1803878] ProcCpuinfoMinimal.txt
apport information ** Attachment added: "ProcCpuinfoMinimal.txt" https://bugs.launchpad.net/bugs/1803878/+attachment/5213966/+files/ProcCpuinfoMinimal.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803878 Title: Keyborad and Touchpad ob Fujitsu Lifebook E546 don't work with Kernel 4.15.0-39 Status in linux package in Ubuntu: Incomplete Bug description: With Kernel 4.15.0-38 instead of Kernel 4.15.0-39 keyboard and touchpad (ELANtech) work well. With 39 Version the touchpad doesn't work at all, the keyboard gets only every 2nd fingertip and on the other hand multiplicates every 3rd letter. --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU To manage notifications about this bug go to: https://b
[Kernel-packages] [Bug 1803878] RfKill.txt
apport information ** Attachment added: "RfKill.txt" https://bugs.launchpad.net/bugs/1803878/+attachment/5213971/+files/RfKill.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803878 Title: Keyborad and Touchpad ob Fujitsu Lifebook E546 don't work with Kernel 4.15.0-39 Status in linux package in Ubuntu: Incomplete Bug description: With Kernel 4.15.0-38 instead of Kernel 4.15.0-39 keyboard and touchpad (ELANtech) work well. With 39 Version the touchpad doesn't work at all, the keyboard gets only every 2nd fingertip and on the other hand multiplicates every 3rd letter. --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/
[Kernel-packages] [Bug 1803878] ProcCpuinfo.txt
apport information ** Attachment added: "ProcCpuinfo.txt" https://bugs.launchpad.net/bugs/1803878/+attachment/5213965/+files/ProcCpuinfo.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803878 Title: Keyborad and Touchpad ob Fujitsu Lifebook E546 don't work with Kernel 4.15.0-39 Status in linux package in Ubuntu: Incomplete Bug description: With Kernel 4.15.0-38 instead of Kernel 4.15.0-39 keyboard and touchpad (ELANtech) work well. With 39 Version the touchpad doesn't work at all, the keyboard gets only every 2nd fingertip and on the other hand multiplicates every 3rd letter. --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU To manage notifications about this bug go to: https://bugs.launchpad.
[Kernel-packages] [Bug 1803878] IwConfig.txt
apport information ** Attachment added: "IwConfig.txt" https://bugs.launchpad.net/bugs/1803878/+attachment/5213963/+files/IwConfig.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803878 Title: Keyborad and Touchpad ob Fujitsu Lifebook E546 don't work with Kernel 4.15.0-39 Status in linux package in Ubuntu: Incomplete Bug description: With Kernel 4.15.0-38 instead of Kernel 4.15.0-39 keyboard and touchpad (ELANtech) work well. With 39 Version the touchpad doesn't work at all, the keyboard gets only every 2nd fingertip and on the other hand multiplicates every 3rd letter. --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU To manage notifications about this bug go to: https://bugs.launchpad.net/ub
[Kernel-packages] [Bug 1803878] WifiSyslog.txt
apport information ** Attachment added: "WifiSyslog.txt" https://bugs.launchpad.net/bugs/1803878/+attachment/5213959/+files/WifiSyslog.txt ** Description changed: With Kernel 4.15.0-38 instead of Kernel 4.15.0-39 keyboard and touchpad (ELANtech) work well. With 39 Version the touchpad doesn't work at all, the keyboard gets only every 2nd fingertip and on the other hand multiplicates every 3rd letter. --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU + --- + ProblemType: Bug + ApportVersion: 2.20.9-0ubuntu7.5 + Architecture: amd64 + AudioDevicesInUse: + USERPID ACCESS COMMAND + /dev/snd/controlC0: thomas 1429 F pulseaudio + CurrentDesktop: X-Cinnamon + DistroRelease: Linux Mint 19 + HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 + InstallationDate: Installed on 2018-10-27 (21 days ago) + InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 + Lsusb: + Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub + Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd + Bus 001 Device 002: ID 8087:0a2b Intel Corp. + Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse + Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub + MachineType: FUJITSU LIFEBOOK E546 + Package: linux (not installed) + ProcFB: 0 inteldrmfb + ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 + ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 + RelatedPackageVersions: + linux-restricted-modules-4.15.0-38-generic N/A + linux-backports-modules-4.15.0-38-generic N/A + linux-firmware 1.173.1 + Tags: tara + Uname: Linux 4.15.0-38-generic x86_64 + UpgradeStatus: No upgrade log present (probably fresh install) + UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers + _MarkForUpload: True + dmi.bios.date: 07/15/2016 + dmi.bios.vendor: FUJITSU // Insyde Software Corp. + dmi.bios.version: Version 1.20 + dmi.board.name: FJNB291 + dmi.board.vendor: FUJITSU + dmi.board.version: E3 + dmi.chassis.type: 10 + dmi.chassis.vendor: FUJITSU + dmi.chassis.version: LIFEBOOK E546 + dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: + dmi.product.family: LIFEBOOK-FTS + dmi.product.name: LIFEBOOK E546 + dmi.product.version: 10601736731 + dmi.sys.vendor: FUJITSU -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803878 Title: Keyborad and Touchpad ob Fujitsu Lifebook E546 don't work with Kernel 4.15.0-39 Status in linux package in Ubuntu: Incomplete Bug description: With Kernel 4.15.0-38 instead of Kernel 4.
[Kernel-packages] [Bug 1798921] Re: sky2 ethernet card don't work after returning from suspension
I'm sorry but it's probably the fault of a particular laptop Samsung R780 :-( I checked the recurring error on the internet : [ 380.567633] do_IRQ: 3.34 No irq handler for vector I applied fix to grub file : pci=nomsi,noaer GRUB_CMDLINE_LINUX_DEFAULT="quiet splash pci=nomsi,noaer" update-grub / reboot and everything works fine ??? :-) The sky2 ethernet card works well after coming back from the suspension ! but why do not I need this entry on my laptop on Debian with the 4.9.x.x kernel? I have no idea ... regards! -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1798921 Title: sky2 ethernet card don't work after returning from suspension Status in linux package in Ubuntu: Confirmed Bug description: Bug very similar to #1752772 (https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1752772) but affecting the sky2 driver instead of r8169. After system suspend the ethernet connection stops working. The card is still up and the modem can see it is connected, but the card doesn't get an ip address. Ifconfig down/up and restarting network- manager does not solve the issue. Similarly to the other bug, "sudo modprobe sky2 -r" an then "sudo modprobe sky2" solves the issue. Relevant: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1752772/comments/107 Linux 4.15.0-36-generic #39-Ubuntu SMP Mon Sep 24 16:19:09 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux *-network description: Ethernet interface product: 88E8040 PCI-E Fast Ethernet Controller vendor: Marvell Technology Group Ltd. physical id: 0 bus info: pci@:09:00.0 logical name: enp9s0 version: 13 serial: size: 100Mbit/s capacity: 100Mbit/s width: 64 bits clock: 33MHz capabilities: pm msi pciexpress bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd autonegotiation configuration: autonegotiation=on broadcast=yes driver=sky2 driverversion=1.30 duplex=full latency=0 link=yes multicast=yes port=twisted pair speed=100Mbit/s resources: irq:24 memory:f68fc000-f68f ioport:de00(size=256) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1798921/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1803878] WifiSyslog.txt
apport information ** Attachment added: "WifiSyslog.txt" https://bugs.launchpad.net/bugs/1803878/+attachment/5213973/+files/WifiSyslog.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803878 Title: Keyborad and Touchpad ob Fujitsu Lifebook E546 don't work with Kernel 4.15.0-39 Status in linux package in Ubuntu: Incomplete Bug description: With Kernel 4.15.0-38 instead of Kernel 4.15.0-39 keyboard and touchpad (ELANtech) work well. With 39 Version the touchpad doesn't work at all, the keyboard gets only every 2nd fingertip and on the other hand multiplicates every 3rd letter. --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU To manage notifications about this bug go to: https://bugs.launchpad.ne
[Kernel-packages] [Bug 1803878] CurrentDmesg.txt
apport information ** Attachment added: "CurrentDmesg.txt" https://bugs.launchpad.net/bugs/1803878/+attachment/5213962/+files/CurrentDmesg.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803878 Title: Keyborad and Touchpad ob Fujitsu Lifebook E546 don't work with Kernel 4.15.0-39 Status in linux package in Ubuntu: Incomplete Bug description: With Kernel 4.15.0-38 instead of Kernel 4.15.0-39 keyboard and touchpad (ELANtech) work well. With 39 Version the touchpad doesn't work at all, the keyboard gets only every 2nd fingertip and on the other hand multiplicates every 3rd letter. --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU To manage notifications about this bug go to: https://bugs.launchpa
[Kernel-packages] [Bug 1803878] ProcEnviron.txt
apport information ** Attachment added: "ProcEnviron.txt" https://bugs.launchpad.net/bugs/1803878/+attachment/5213967/+files/ProcEnviron.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803878 Title: Keyborad and Touchpad ob Fujitsu Lifebook E546 don't work with Kernel 4.15.0-39 Status in linux package in Ubuntu: Incomplete Bug description: With Kernel 4.15.0-38 instead of Kernel 4.15.0-39 keyboard and touchpad (ELANtech) work well. With 39 Version the touchpad doesn't work at all, the keyboard gets only every 2nd fingertip and on the other hand multiplicates every 3rd letter. --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU To manage notifications about this bug go to: https://bugs.launchpad.
[Kernel-packages] [Bug 1803878] PulseList.txt
apport information ** Attachment added: "PulseList.txt" https://bugs.launchpad.net/bugs/1803878/+attachment/5213970/+files/PulseList.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803878 Title: Keyborad and Touchpad ob Fujitsu Lifebook E546 don't work with Kernel 4.15.0-39 Status in linux package in Ubuntu: Incomplete Bug description: With Kernel 4.15.0-38 instead of Kernel 4.15.0-39 keyboard and touchpad (ELANtech) work well. With 39 Version the touchpad doesn't work at all, the keyboard gets only every 2nd fingertip and on the other hand multiplicates every 3rd letter. --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU To manage notifications about this bug go to: https://bugs.launchpad.net/
[Kernel-packages] [Bug 1803878] ProcInterrupts.txt
apport information ** Attachment added: "ProcInterrupts.txt" https://bugs.launchpad.net/bugs/1803878/+attachment/5213968/+files/ProcInterrupts.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803878 Title: Keyborad and Touchpad ob Fujitsu Lifebook E546 don't work with Kernel 4.15.0-39 Status in linux package in Ubuntu: Incomplete Bug description: With Kernel 4.15.0-38 instead of Kernel 4.15.0-39 keyboard and touchpad (ELANtech) work well. With 39 Version the touchpad doesn't work at all, the keyboard gets only every 2nd fingertip and on the other hand multiplicates every 3rd letter. --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU To manage notifications about this bug go to: https://bugs.laun
[Kernel-packages] [Bug 1803878] UdevDb.txt
apport information ** Attachment added: "UdevDb.txt" https://bugs.launchpad.net/bugs/1803878/+attachment/5213972/+files/UdevDb.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803878 Title: Keyborad and Touchpad ob Fujitsu Lifebook E546 don't work with Kernel 4.15.0-39 Status in linux package in Ubuntu: Incomplete Bug description: With Kernel 4.15.0-38 instead of Kernel 4.15.0-39 keyboard and touchpad (ELANtech) work well. With 39 Version the touchpad doesn't work at all, the keyboard gets only every 2nd fingertip and on the other hand multiplicates every 3rd letter. --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/
[Kernel-packages] [Bug 1803878] AlsaInfo.txt
apport information ** Attachment added: "AlsaInfo.txt" https://bugs.launchpad.net/bugs/1803878/+attachment/5213960/+files/AlsaInfo.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803878 Title: Keyborad and Touchpad ob Fujitsu Lifebook E546 don't work with Kernel 4.15.0-39 Status in linux package in Ubuntu: Incomplete Bug description: With Kernel 4.15.0-38 instead of Kernel 4.15.0-39 keyboard and touchpad (ELANtech) work well. With 39 Version the touchpad doesn't work at all, the keyboard gets only every 2nd fingertip and on the other hand multiplicates every 3rd letter. --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU To manage notifications about this bug go to: https://bugs.launchpad.net/ub
[Kernel-packages] [Bug 1803878] Lspci.txt
apport information ** Attachment added: "Lspci.txt" https://bugs.launchpad.net/bugs/1803878/+attachment/5213964/+files/Lspci.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803878 Title: Keyborad and Touchpad ob Fujitsu Lifebook E546 don't work with Kernel 4.15.0-39 Status in linux package in Ubuntu: Incomplete Bug description: With Kernel 4.15.0-38 instead of Kernel 4.15.0-39 keyboard and touchpad (ELANtech) work well. With 39 Version the touchpad doesn't work at all, the keyboard gets only every 2nd fingertip and on the other hand multiplicates every 3rd letter. --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+s
[Kernel-packages] [Bug 1803878] CRDA.txt
apport information ** Attachment added: "CRDA.txt" https://bugs.launchpad.net/bugs/1803878/+attachment/5213961/+files/CRDA.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803878 Title: Keyborad and Touchpad ob Fujitsu Lifebook E546 don't work with Kernel 4.15.0-39 Status in linux package in Ubuntu: Incomplete Bug description: With Kernel 4.15.0-38 instead of Kernel 4.15.0-39 keyboard and touchpad (ELANtech) work well. With 39 Version the touchpad doesn't work at all, the keyboard gets only every 2nd fingertip and on the other hand multiplicates every 3rd letter. --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+sou
[Kernel-packages] [Bug 1803878] Lspci.txt
apport information ** Attachment added: "Lspci.txt" https://bugs.launchpad.net/bugs/1803878/+attachment/5213950/+files/Lspci.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803878 Title: Keyborad and Touchpad ob Fujitsu Lifebook E546 don't work with Kernel 4.15.0-39 Status in linux package in Ubuntu: Incomplete Bug description: With Kernel 4.15.0-38 instead of Kernel 4.15.0-39 keyboard and touchpad (ELANtech) work well. With 39 Version the touchpad doesn't work at all, the keyboard gets only every 2nd fingertip and on the other hand multiplicates every 3rd letter. --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+s
[Kernel-packages] [Bug 1803878] ProcEnviron.txt
apport information ** Attachment added: "ProcEnviron.txt" https://bugs.launchpad.net/bugs/1803878/+attachment/5213953/+files/ProcEnviron.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1803878 Title: Keyborad and Touchpad ob Fujitsu Lifebook E546 don't work with Kernel 4.15.0-39 Status in linux package in Ubuntu: Incomplete Bug description: With Kernel 4.15.0-38 instead of Kernel 4.15.0-39 keyboard and touchpad (ELANtech) work well. With 39 Version the touchpad doesn't work at all, the keyboard gets only every 2nd fingertip and on the other hand multiplicates every 3rd letter. --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU --- ProblemType: Bug ApportVersion: 2.20.9-0ubuntu7.5 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC0: thomas 1429 F pulseaudio CurrentDesktop: X-Cinnamon DistroRelease: Linux Mint 19 HibernationDevice: RESUME=UUID=02072c6e-4718-472f-ab7d-017f22b79545 InstallationDate: Installed on 2018-10-27 (21 days ago) InstallationMedia: Linux Mint 19 "Tara" - Release amd64 20180717 Lsusb: Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 003: ID 04f2:b413 Chicony Electronics Co., Ltd Bus 001 Device 002: ID 8087:0a2b Intel Corp. Bus 001 Device 004: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: FUJITSU LIFEBOOK E546 Package: linux (not installed) ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.15.0-38-generic root=UUID=74e82e2a-b706-4a07-bf49-ce7d97648cbf ro rootflags=subvol=@ quiet splash vt.handoff=1 ProcVersionSignature: Ubuntu 4.15.0-38.41-generic 4.15.18 RelatedPackageVersions: linux-restricted-modules-4.15.0-38-generic N/A linux-backports-modules-4.15.0-38-generic N/A linux-firmware 1.173.1 Tags: tara Uname: Linux 4.15.0-38-generic x86_64 UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: adm backup cdrom dip lp lpadmin plugdev sambashare ssh sudo users vboxusers _MarkForUpload: True dmi.bios.date: 07/15/2016 dmi.bios.vendor: FUJITSU // Insyde Software Corp. dmi.bios.version: Version 1.20 dmi.board.name: FJNB291 dmi.board.vendor: FUJITSU dmi.board.version: E3 dmi.chassis.type: 10 dmi.chassis.vendor: FUJITSU dmi.chassis.version: LIFEBOOK E546 dmi.modalias: dmi:bvnFUJITSU//InsydeSoftwareCorp.:bvrVersion1.20:bd07/15/2016:svnFUJITSU:pnLIFEBOOKE546:pvr10601736731:rvnFUJITSU:rnFJNB291:rvrE3:cvnFUJITSU:ct10:cvrLIFEBOOKE546: dmi.product.family: LIFEBOOK-FTS dmi.product.name: LIFEBOOK E546 dmi.product.version: 10601736731 dmi.sys.vendor: FUJITSU To manage notifications about this bug go to: https://bugs.launchpad.