[Kernel-packages] [Bug 1842320] Re: Can't boot: "error: out of memory." immediately after the grub menu

2022-10-12 Thread sudodus
Another workaround might be to use Ubuntu's own compressed image with a
preinstalled Ubuntu Server (although not officially released) according
to the following link

https://ubuntuforums.org/showthread.php?t=2474692

Scroll down to read also the following posts, that describe how to
install Lubuntu. In the same way you can install Ubuntu Desktop as well
as all the community flavours.

-- 
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/1842320

Title:
  Can't boot: "error: out of memory." immediately after the grub menu

Status in grub:
  Unknown
Status in OEM Priority Project:
  Triaged
Status in grub2-signed package in Ubuntu:
  Triaged
Status in initramfs-tools package in Ubuntu:
  Won't Fix
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  [Impact]

   * In some cases, if the users’ initramfs grow bigger, then it’ll
  likely not be able to be loaded by grub2.

   * Some real cases from OEM projects:

  In many built-in 4k monitor laptops with nvidia drivers, the u-d-c
  puts the nvidia*.ko to initramfs which grows the initramfs to ~120M.
  Also the gfxpayload=auto will remain to use 4K resolution since it’s
  what EFI POST passed.

  In this case, the grub isn't able to load initramfs because the
  grub_memalign() won't be able to get suitable memory for the larger
  file:

  ```
  #0 grub_memalign (align=1, size=592214020) at ../../../grub-core/kern/mm.c:376
  #1 0x7dd7b074 in grub_malloc (size=592214020) at 
../../../grub-core/kern/mm.c:408
  #2 0x7dd7a2c8 in grub_verifiers_open (io=0x7bc02d80, type=131076)
  at ../../../grub-core/kern/verifiers.c:150
  #3 0x7dd801d4 in grub_file_open (name=0x7bc02f00 
"/boot/initrd.img-5.17.0-1011-oem",
  type=131076) at ../../../grub-core/kern/file.c:121
  #4 0x7bcd5a30 in ?? ()
  #5 0x7fe21247 in ?? ()
  #6 0x7bc030c8 in ?? ()
  #7 0x00017fe21238 in ?? ()
  #8 0x7bcd5320 in ?? ()
  #9 0x7fe21250 in ?? ()
  #10 0x in ?? ()
  ```

  Based on grub_mm_dump, we can see the memory fragment (some parts seem
  likely be used because of 4K resolution?) and doesn’t have available
  contiguous memory for larger file as:

  ```
  grub_real_malloc(...)
  ...
  if (cur->size >= n + extra)
  ```

  Based on UEFI Specification Section 7.2[1] and UEFI driver writers’
  guide 4.2.3[2], we can ask 32bits+ on AllocatePages().

  As most X86_64 platforms should support 64 bits addressing, we should
  extend GRUB_EFI_MAX_USABLE_ADDRESS to 64 bits to get more available
  memory.

   * When users grown the initramfs, then probably will get initramfs
  not found which really annoyed and impact the user experience (system
  not able to boot).

  [Test Plan]

   * detailed instructions how to reproduce the bug:

  1. Any method to grow the initramfs, such as install nvidia-driver.

  2. If developers would like to reproduce, then could dd if=/dev/random
  of=... bs=1M count=500, something like:

  ```
  $ cat /usr/share/initramfs-tools/hooks/zzz-touch-a-file
  #!/bin/sh

  PREREQ=""

  prereqs()
  {
  echo "$PREREQ"
  }

  case $1 in
  # get pre-requisites
  prereqs)
  prereqs
  exit 0
  ;;
  esac

  . /usr/share/initramfs-tools/hook-functions
  dd if=/dev/random of=${DESTDIR}/test-500M bs=1M count=500
  ```

  And then update-initramfs

   * After applying my patches, the issue is gone.

   * I did also test my test grubx64.efi in:

  1. X86_64 qemu with
  1.1. 60M initramfs + 5.15.0-37-generic kernel
  1.2. 565M initramfs + 5.17.0-1011-oem kernel

  2. Amd64 HP mobile workstation with
  2.1. 65M initramfs + 5.15.0-39-generic kernel
  2.2. 771M initramfs + 5.17.0-1011-oem kernel

  All working well.

  [Where problems could occur]

  * The changes almost in i386/efi, thus the impact will be in the i386 / 
x86_64 EFI system.
  The other change is to modify the “grub-core/kern/efi/mm.c” but I use the 
original addressing for “arm/arm64/ia64/riscv32/riscv64”.
  Thus it should not impact them.

  * There is a “#if defined(__x86_64__)” which intent to limit the >
  32bits code in i386 system and also

  ```
   #if defined (__code_model_large__)
  -#define GRUB_EFI_MAX_USABLE_ADDRESS 0x
  +#define GRUB_EFI_MAX_USABLE_ADDRESS __UINTPTR_MAX__
  +#define GRUB_EFI_MAX_ALLOCATION_ADDRESS 0x7fff
   #else
   #define GRUB_EFI_MAX_USABLE_ADDRESS 0x7fff
  +#define GRUB_EFI_MAX_ALLOCATION_ADDRESS 0x3fff
   #endif
  ```

  If everything works as expected, then i386 should working good.

  If not lucky, based on “UEFI writers’ guide”[2], the i386 will get >
  4GB memory region and never be able to access.

  [Other Info]

   * Upstream grub2 bug #61058
  https://savannah.gnu.org/bugs/index.php?61058

   * Test PPA: https://launchpad.net/~os369510/+archive/ubuntu/lp1842320

   * Test grubx64.efi:
  https://people.canonical.com/~jeremysu/lp1842320/g

[Kernel-packages] [Bug 1842320] Re: Out of Memory on boot with 5.2.0 kernel

2022-05-22 Thread sudodus
If you have problems to boot live systems (from USB), I think it can be
solved with mkusb

https://help.ubuntu.com/community/mkusb

because it makes the live system use GFXMODE set to 800x600 except when
cloning. So select 'live-only' and in the next menu 'dus-iso2usb' ...

Please report the result here, whatever it is (success or failure), if
you try with mkusb.

-o-

But of course, mkusb does not edit /etc/initramfs-tools/initramfs.conf,
so that will still be necessary in some computers until this bug is
squashed.

-- 
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/1842320

Title:
  Out of Memory on boot with 5.2.0 kernel

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Upgraded from 19.04 to current 19.10 using "do-release-upgrade -d".
  Can still boot using the previous 5.0.0-25-generic kernel, but the
  5.2.0-15-generic fails to start.

  On selecting Ubuntu from Grub, the message "error: out of memory." is
  immediately shown. Pressing a key attempts to start boot-up but fails
  to mount root fs.

  Machine is HP Spectre X360 with 8GB RAM. Under kernel 5.0.0, free
  shows the following (run from Gnome terminal):

    totalusedfree  shared  buff/cache   
available
  Mem:7906564 1761196 3833240 1020216 2312128 
4849224
  Swap:   1003516   0 1003516

  Kernel packages installed:

  linux-generic  5.2.0.15.16 amd64
  linux-headers-5.2.0-15 5.2.0-15.16 all
  linux-headers-5.2.0-15-generic 5.2.0-15.16 amd64
  linux-headers-generic  5.2.0.15.16 amd64
  linux-image-5.0.0-25-generic   5.0.0-25.26 amd64
  linux-image-5.2.0-15-generic   5.2.0-15.16+signed1 amd64
  linux-image-generic5.2.0.15.16 amd64
  linux-modules-5.0.0-25-generic 5.0.0-25.26 amd64
  linux-modules-5.2.0-15-generic 5.2.0-15.16 amd64
  linux-modules-extra-5.0.0-25-generic   5.0.0-25.26 amd64
  linux-modules-extra-5.2.0-15-generic   5.2.0-15.16 amd64

  Photo of kernel panic attached.

  NVMe drive partition layout (GPT):

  Device   StartEnd   Sectors   Size Type
  /dev/nvme0n1p120481050623   1048576   512M EFI System
  /dev/nvme0n1p2 10506242549759   1499136   732M Linux filesystem
  /dev/nvme0n1p3 2549760 1000214527 997664768 475.7G Linux filesystem

  $ sudo pvs
    PV  VGFmt  Attr PSizePFree
    /dev/mapper/nvme0n1p3_crypt ubuntu-vg lvm2 a--  <475.71g0

  $ sudo lvs
    LV VGAttr   LSize   Pool Origin Data%  Meta%  Move Log 
Cpy%Sync Convert
    root   ubuntu-vg -wi-ao 474.75g
    swap_1 ubuntu-vg -wi-ao 980.00m

  Partition 3 is LUKS encrypted. Root LV is ext4.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu7
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  gmckeown   1647 F pulseaudio
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 19.10
  InstallationDate: Installed on 2019-08-15 (18 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 003: ID 8087:0a2b Intel Corp. 
   Bus 001 Device 002: ID 04f2:b593 Chicony Electronics Co., Ltd HP Wide Vision 
FHD Camera
   Bus 001 Device 004: ID 046d:c52b Logitech, Inc. Unifying Receiver
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: HP HP Spectre x360 Convertible 13-ae0xx
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.0.0-25-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash
  ProcVersionSignature: Ubuntu 5.0.0-25.26-generic 5.0.18
  RelatedPackageVersions:
   linux-restricted-modules-5.0.0-25-generic N/A
   linux-backports-modules-5.0.0-25-generic  N/A
   linux-firmware1.181
  Tags:  eoan
  Uname: Linux 5.0.0-25-generic x86_64
  UpgradeStatus: Upgraded to eoan on 2019-09-02 (0 days ago)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 05/17/2019
  dmi.bios.vendor: AMI
  dmi.bios.version: F.25
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 83B9
  dmi.board.vendor: HP
  dmi.board.version: 56.43
  dmi.chassis.type: 31
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAMI:bvrF.25:bd05/17/2019:svnHP:pnHPSpectrex360Convertible13-ae0xx:pvr:rvnHP:rn83B9:rvr56.43:cvnHP:ct31:cvrChassisVersion:
  dmi.product.family: 103C_5335KV HP Spectre
  dmi.product.name: HP Spectre x360 Convertible 13-ae0xx
  dmi.product.sku: 2QH38EA#ABU
  dmi.sys.vendor: HP

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1842320

[Kernel-packages] [Bug 1886769] Re: [ 0.000000] Initramfs unpacking failed: Decoding failed

2020-07-08 Thread sudodus
Do you think this bug is somehow related to the following bug?

https://bugs.launchpad.net/bugs/1886148

For example, are there problems to boot into a live system from a USB
drive in a real system, or booted from a virtual hard disk drive with
the image in a virtual machine? (I know that it boots in VirtualBox from
the iso file when seen as an optical (CD/DVD) drive.)

-- 
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/1886769

Title:
  [ 0.00] Initramfs unpacking failed: Decoding failed

Status in grub2 package in Ubuntu:
  New
Status in linux package in Ubuntu:
  Confirmed
Status in syslinux package in Ubuntu:
  New

Bug description:
  Steps to reproduce:
  1. Download MATE Groovy daily (sha256sum = 
7d2fdad36b8fcf0409aa0a484755e5fc5ef3798fd256eeebbde905a71ad474b7 )
  2. Insert ISO into VirtualBox with EFI enabled
  3. Boot VM

  Expected results:
  * VM boots normally

  Actual results:
  * VM hangs during early boot with message

    [ 0.00] Initramfs unpacking failed: Decoding failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1886769/+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 1848333] Re: wifi problem delays boot in live mode

2019-10-17 Thread sudodus
Maybe this bug is located in casper (like 1848404)

https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1848404

-- 
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/1848333

Title:
  wifi problem delays boot in live mode

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  This problem is rather new. It did not affect Lubuntu Eoan zsynced 9
  days ago (Oct 6).

  Now there is a delay of 1 min 30 sec during booting, and I think there
  is something wrong with the recognition of the wifi hardware or maybe
  matching of driver and hardware. It happens in 'this' computer, a
  middle-aged Toshiba laptop with a generation 3 Intel i5 cpu and also
  in a Dell Latitude E7240 with a generation 4 Intel i5 cpu and I guess
  another wifi chip.

  In both cases both ethernet and wifi works. I see available wifi
  routers and can connect (when I have the password).

  I tested also with the Kubuntu and Xubuntu eoan iso files, and the
  same delay happened there.

  I think the drivers are OK, but something in the logic for recognition
  of them might be bad.

  ProblemType: Bug
  DistroRelease: Ubuntu 19.10
  Package: linux-image-5.3.0-18-generic 5.3.0-18.19+1
  ProcVersionSignature: Ubuntu 5.3.0-18.19-generic 5.3.1
  Uname: Linux 5.3.0-18-generic x86_64
  ApportVersion: 2.20.11-0ubuntu8
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lubuntu2316 F pulseaudio
  CasperVersion: 1.426
  CurrentDesktop: LXQt
  Date: Wed Oct 16 11:36:22 2019
  LiveMediaBuild: Lubuntu 19.10 "Eoan Ermine" - Release amd64 (20191015)
  MachineType: TOSHIBA SATELLITE PRO C850-19W
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/casper/vmlinuz 
file=/cdrom/preseed/username.seed persistent ---
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-18-generic N/A
   linux-backports-modules-5.3.0-18-generic  N/A
   linux-firmware1.183
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/24/2012
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: 6.10
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: PLCSF8
  dmi.board.vendor: Intel
  dmi.board.version: Type2 - Board Version
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: OEM Chassis Manufacturer
  dmi.chassis.version: OEM Chassis Version
  dmi.modalias: 
dmi:bvnInsydeCorp.:bvr6.10:bd09/24/2012:svnTOSHIBA:pnSATELLITEPROC850-19W:pvrPSCBXE-00C00VN5:rvnIntel:rnPLCSF8:rvrType2-BoardVersion:cvnOEMChassisManufacturer:ct10:cvrOEMChassisVersion:
  dmi.product.family: Type1Family
  dmi.product.name: SATELLITE PRO C850-19W
  dmi.product.sku: PSCBXE
  dmi.product.version: PSCBXE-00C00VN5
  dmi.sys.vendor: TOSHIBA

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1848333/+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 1848333] Re: wifi problem delays boot in live mode

2019-10-17 Thread sudodus
** Description changed:

  This problem is rather new. It did not affect Lubuntu Eoan zsynced 9
  days ago (Oct 6).
  
  Now there is a delay of 1 min 30 sec during booting, and I think there
  is something wrong with the recognition of the wifi hardware or maybe
  matching of driver and hardware. It happens in 'this' computer, a
  middle-aged Toshiba laptop with a generation 3 Intel i5 cpu and also in
  a Dell Latitude E7240 with a generation 4 Intel i5 cpu and I guess
  another wifi chip.
  
  In both cases both ethernet and wifi works. I see available wifi routers
  and can connect (when I have the password).
  
- I tested also with the Xubuntu eoan iso file, and the same delay
- happened there.
+ I tested also with the Kubuntu and Xubuntu eoan iso files, and the same
+ delay happened there.
  
  I think the drivers are OK, but something in the logic for recognition
  of them might be bad.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 19.10
  Package: linux-image-5.3.0-18-generic 5.3.0-18.19+1
  ProcVersionSignature: Ubuntu 5.3.0-18.19-generic 5.3.1
  Uname: Linux 5.3.0-18-generic x86_64
  ApportVersion: 2.20.11-0ubuntu8
  Architecture: amd64
  AudioDevicesInUse:
-  USERPID ACCESS COMMAND
-  /dev/snd/controlC0:  lubuntu2316 F pulseaudio
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  lubuntu2316 F pulseaudio
  CasperVersion: 1.426
  CurrentDesktop: LXQt
  Date: Wed Oct 16 11:36:22 2019
  LiveMediaBuild: Lubuntu 19.10 "Eoan Ermine" - Release amd64 (20191015)
  MachineType: TOSHIBA SATELLITE PRO C850-19W
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/casper/vmlinuz 
file=/cdrom/preseed/username.seed persistent ---
  RelatedPackageVersions:
-  linux-restricted-modules-5.3.0-18-generic N/A
-  linux-backports-modules-5.3.0-18-generic  N/A
-  linux-firmware1.183
+  linux-restricted-modules-5.3.0-18-generic N/A
+  linux-backports-modules-5.3.0-18-generic  N/A
+  linux-firmware1.183
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/24/2012
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: 6.10
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: PLCSF8
  dmi.board.vendor: Intel
  dmi.board.version: Type2 - Board Version
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: OEM Chassis Manufacturer
  dmi.chassis.version: OEM Chassis Version
  dmi.modalias: 
dmi:bvnInsydeCorp.:bvr6.10:bd09/24/2012:svnTOSHIBA:pnSATELLITEPROC850-19W:pvrPSCBXE-00C00VN5:rvnIntel:rnPLCSF8:rvrType2-BoardVersion:cvnOEMChassisManufacturer:ct10:cvrOEMChassisVersion:
  dmi.product.family: Type1Family
  dmi.product.name: SATELLITE PRO C850-19W
  dmi.product.sku: PSCBXE
  dmi.product.version: PSCBXE-00C00VN5
  dmi.sys.vendor: TOSHIBA

-- 
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/1848333

Title:
  wifi problem delays boot in live mode

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  This problem is rather new. It did not affect Lubuntu Eoan zsynced 9
  days ago (Oct 6).

  Now there is a delay of 1 min 30 sec during booting, and I think there
  is something wrong with the recognition of the wifi hardware or maybe
  matching of driver and hardware. It happens in 'this' computer, a
  middle-aged Toshiba laptop with a generation 3 Intel i5 cpu and also
  in a Dell Latitude E7240 with a generation 4 Intel i5 cpu and I guess
  another wifi chip.

  In both cases both ethernet and wifi works. I see available wifi
  routers and can connect (when I have the password).

  I tested also with the Kubuntu and Xubuntu eoan iso files, and the
  same delay happened there.

  I think the drivers are OK, but something in the logic for recognition
  of them might be bad.

  ProblemType: Bug
  DistroRelease: Ubuntu 19.10
  Package: linux-image-5.3.0-18-generic 5.3.0-18.19+1
  ProcVersionSignature: Ubuntu 5.3.0-18.19-generic 5.3.1
  Uname: Linux 5.3.0-18-generic x86_64
  ApportVersion: 2.20.11-0ubuntu8
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lubuntu2316 F pulseaudio
  CasperVersion: 1.426
  CurrentDesktop: LXQt
  Date: Wed Oct 16 11:36:22 2019
  LiveMediaBuild: Lubuntu 19.10 "Eoan Ermine" - Release amd64 (20191015)
  MachineType: TOSHIBA SATELLITE PRO C850-19W
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/casper/vmlinuz 
file=/cdrom/preseed/username.seed persistent ---
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-18-generic N/A
   linux-backports-modules-5.3.0-18-generic  N/A
   linux-firmware1.183
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/24/2012
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: 6.10
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.

[Kernel-packages] [Bug 1848333] Re: wifi problem delays boot in live mode

2019-10-17 Thread sudodus
attached photo showing the waiting

** Attachment added: "lubuntu-waiting-90s.jpg"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1848333/+attachment/5297779/+files/lubuntu-waiting-90s.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/1848333

Title:
  wifi problem delays boot in live mode

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  This problem is rather new. It did not affect Lubuntu Eoan zsynced 9
  days ago (Oct 6).

  Now there is a delay of 1 min 30 sec during booting, and I think there
  is something wrong with the recognition of the wifi hardware or maybe
  matching of driver and hardware. It happens in 'this' computer, a
  middle-aged Toshiba laptop with a generation 3 Intel i5 cpu and also
  in a Dell Latitude E7240 with a generation 4 Intel i5 cpu and I guess
  another wifi chip.

  In both cases both ethernet and wifi works. I see available wifi
  routers and can connect (when I have the password).

  I tested also with the Xubuntu eoan iso file, and the same delay
  happened there.

  I think the drivers are OK, but something in the logic for recognition
  of them might be bad.

  ProblemType: Bug
  DistroRelease: Ubuntu 19.10
  Package: linux-image-5.3.0-18-generic 5.3.0-18.19+1
  ProcVersionSignature: Ubuntu 5.3.0-18.19-generic 5.3.1
  Uname: Linux 5.3.0-18-generic x86_64
  ApportVersion: 2.20.11-0ubuntu8
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lubuntu2316 F pulseaudio
  CasperVersion: 1.426
  CurrentDesktop: LXQt
  Date: Wed Oct 16 11:36:22 2019
  LiveMediaBuild: Lubuntu 19.10 "Eoan Ermine" - Release amd64 (20191015)
  MachineType: TOSHIBA SATELLITE PRO C850-19W
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/casper/vmlinuz 
file=/cdrom/preseed/username.seed persistent ---
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-18-generic N/A
   linux-backports-modules-5.3.0-18-generic  N/A
   linux-firmware1.183
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/24/2012
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: 6.10
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: PLCSF8
  dmi.board.vendor: Intel
  dmi.board.version: Type2 - Board Version
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: OEM Chassis Manufacturer
  dmi.chassis.version: OEM Chassis Version
  dmi.modalias: 
dmi:bvnInsydeCorp.:bvr6.10:bd09/24/2012:svnTOSHIBA:pnSATELLITEPROC850-19W:pvrPSCBXE-00C00VN5:rvnIntel:rnPLCSF8:rvrType2-BoardVersion:cvnOEMChassisManufacturer:ct10:cvrOEMChassisVersion:
  dmi.product.family: Type1Family
  dmi.product.name: SATELLITE PRO C850-19W
  dmi.product.sku: PSCBXE
  dmi.product.version: PSCBXE-00C00VN5
  dmi.sys.vendor: TOSHIBA

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1848333/+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 1848333] Re: wifi problem delays boot in live mode

2019-10-16 Thread sudodus
I had also an Ubuntu Eoan iso file from Sept 25 and got a new one now.
Both boot fast, but do not behave in the same way. The current Ubuntu
sends a notify message to the desktop:

"Network service discovery disabled
Your current network has a .local domain, which is not recommen..."

This notice is not sent to the desktop by the Ubuntu Eoan iso file from
Sept 25.

I want to mention this, but am not sure it is related to what I think is
a bug in Lubuntu and Xubuntu.

-- 
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/1848333

Title:
  wifi problem delays boot in live mode

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  This problem is rather new. It did not affect Lubuntu Eoan zsynced 9
  days ago (Oct 6).

  Now there is a delay of 1 min 30 sec during booting, and I think there
  is something wrong with the recognition of the wifi hardware or maybe
  matching of driver and hardware. It happens in 'this' computer, a
  middle-aged Toshiba laptop with a generation 3 Intel i5 cpu and also
  in a Dell Latitude E7240 with a generation 4 Intel i5 cpu and I guess
  another wifi chip.

  In both cases both ethernet and wifi works. I see available wifi
  routers and can connect (when I have the password).

  I tested also with the Xubuntu eoan iso file, and the same delay
  happened there.

  I think the drivers are OK, but something in the logic for recognition
  of them might be bad.

  ProblemType: Bug
  DistroRelease: Ubuntu 19.10
  Package: linux-image-5.3.0-18-generic 5.3.0-18.19+1
  ProcVersionSignature: Ubuntu 5.3.0-18.19-generic 5.3.1
  Uname: Linux 5.3.0-18-generic x86_64
  ApportVersion: 2.20.11-0ubuntu8
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lubuntu2316 F pulseaudio
  CasperVersion: 1.426
  CurrentDesktop: LXQt
  Date: Wed Oct 16 11:36:22 2019
  LiveMediaBuild: Lubuntu 19.10 "Eoan Ermine" - Release amd64 (20191015)
  MachineType: TOSHIBA SATELLITE PRO C850-19W
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/casper/vmlinuz 
file=/cdrom/preseed/username.seed persistent ---
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-18-generic N/A
   linux-backports-modules-5.3.0-18-generic  N/A
   linux-firmware1.183
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/24/2012
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: 6.10
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: PLCSF8
  dmi.board.vendor: Intel
  dmi.board.version: Type2 - Board Version
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: OEM Chassis Manufacturer
  dmi.chassis.version: OEM Chassis Version
  dmi.modalias: 
dmi:bvnInsydeCorp.:bvr6.10:bd09/24/2012:svnTOSHIBA:pnSATELLITEPROC850-19W:pvrPSCBXE-00C00VN5:rvnIntel:rnPLCSF8:rvrType2-BoardVersion:cvnOEMChassisManufacturer:ct10:cvrOEMChassisVersion:
  dmi.product.family: Type1Family
  dmi.product.name: SATELLITE PRO C850-19W
  dmi.product.sku: PSCBXE
  dmi.product.version: PSCBXE-00C00VN5
  dmi.sys.vendor: TOSHIBA

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1848333/+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 1848333] Re: wifi problem delays boot in live mode

2019-10-16 Thread sudodus
attached what I think are relevant lines from 'syslog'

** Attachment added: "relevant lines from 'syslog'"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1848333/+attachment/5297468/+files/temp.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/1848333

Title:
  wifi problem delays boot in live mode

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  This problem is rather new. It did not affect Lubuntu Eoan zsynced 9
  days ago (Oct 6).

  Now there is a delay of 1 min 30 sec during booting, and I think there
  is something wrong with the recognition of the wifi hardware or maybe
  matching of driver and hardware. It happens in 'this' computer, a
  middle-aged Toshiba laptop with a generation 3 Intel i5 cpu and also
  in a Dell Latitude E7240 with a generation 4 Intel i5 cpu and I guess
  another wifi chip.

  In both cases both ethernet and wifi works. I see available wifi
  routers and can connect (when I have the password).

  I tested also with the Xubuntu eoan iso file, and the same delay
  happened there.

  I think the drivers are OK, but something in the logic for recognition
  of them might be bad.

  ProblemType: Bug
  DistroRelease: Ubuntu 19.10
  Package: linux-image-5.3.0-18-generic 5.3.0-18.19+1
  ProcVersionSignature: Ubuntu 5.3.0-18.19-generic 5.3.1
  Uname: Linux 5.3.0-18-generic x86_64
  ApportVersion: 2.20.11-0ubuntu8
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lubuntu2316 F pulseaudio
  CasperVersion: 1.426
  CurrentDesktop: LXQt
  Date: Wed Oct 16 11:36:22 2019
  LiveMediaBuild: Lubuntu 19.10 "Eoan Ermine" - Release amd64 (20191015)
  MachineType: TOSHIBA SATELLITE PRO C850-19W
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/casper/vmlinuz 
file=/cdrom/preseed/username.seed persistent ---
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-18-generic N/A
   linux-backports-modules-5.3.0-18-generic  N/A
   linux-firmware1.183
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/24/2012
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: 6.10
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: PLCSF8
  dmi.board.vendor: Intel
  dmi.board.version: Type2 - Board Version
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: OEM Chassis Manufacturer
  dmi.chassis.version: OEM Chassis Version
  dmi.modalias: 
dmi:bvnInsydeCorp.:bvr6.10:bd09/24/2012:svnTOSHIBA:pnSATELLITEPROC850-19W:pvrPSCBXE-00C00VN5:rvnIntel:rnPLCSF8:rvrType2-BoardVersion:cvnOEMChassisManufacturer:ct10:cvrOEMChassisVersion:
  dmi.product.family: Type1Family
  dmi.product.name: SATELLITE PRO C850-19W
  dmi.product.sku: PSCBXE
  dmi.product.version: PSCBXE-00C00VN5
  dmi.sys.vendor: TOSHIBA

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1848333/+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 1848333] [NEW] wifi problem delays boot in live mode

2019-10-16 Thread sudodus
Public bug reported:

This problem is rather new. It did not affect Lubuntu Eoan zsynced 9
days ago (Oct 6).

Now there is a delay of 1 min 30 sec during booting, and I think there
is something wrong with the recognition of the wifi hardware or maybe
matching of driver and hardware. It happens in 'this' computer, a
middle-aged Toshiba laptop with a generation 3 Intel i5 cpu and also in
a Dell Latitude E7240 with a generation 4 Intel i5 cpu and I guess
another wifi chip.

In both cases both ethernet and wifi works. I see available wifi routers
and can connect (when I have the password).

I tested also with the Xubuntu eoan iso file, and the same delay
happened there.

I think the drivers are OK, but something in the logic for recognition
of them might be bad.

ProblemType: Bug
DistroRelease: Ubuntu 19.10
Package: linux-image-5.3.0-18-generic 5.3.0-18.19+1
ProcVersionSignature: Ubuntu 5.3.0-18.19-generic 5.3.1
Uname: Linux 5.3.0-18-generic x86_64
ApportVersion: 2.20.11-0ubuntu8
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  lubuntu2316 F pulseaudio
CasperVersion: 1.426
CurrentDesktop: LXQt
Date: Wed Oct 16 11:36:22 2019
LiveMediaBuild: Lubuntu 19.10 "Eoan Ermine" - Release amd64 (20191015)
MachineType: TOSHIBA SATELLITE PRO C850-19W
ProcFB: 0 i915drmfb
ProcKernelCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/username.seed 
persistent ---
RelatedPackageVersions:
 linux-restricted-modules-5.3.0-18-generic N/A
 linux-backports-modules-5.3.0-18-generic  N/A
 linux-firmware1.183
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 09/24/2012
dmi.bios.vendor: Insyde Corp.
dmi.bios.version: 6.10
dmi.board.asset.tag: Type2 - Board Asset Tag
dmi.board.name: PLCSF8
dmi.board.vendor: Intel
dmi.board.version: Type2 - Board Version
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: OEM Chassis Manufacturer
dmi.chassis.version: OEM Chassis Version
dmi.modalias: 
dmi:bvnInsydeCorp.:bvr6.10:bd09/24/2012:svnTOSHIBA:pnSATELLITEPROC850-19W:pvrPSCBXE-00C00VN5:rvnIntel:rnPLCSF8:rvrType2-BoardVersion:cvnOEMChassisManufacturer:ct10:cvrOEMChassisVersion:
dmi.product.family: Type1Family
dmi.product.name: SATELLITE PRO C850-19W
dmi.product.sku: PSCBXE
dmi.product.version: PSCBXE-00C00VN5
dmi.sys.vendor: TOSHIBA

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: Confirmed


** Tags: amd64 apport-bug eoan iso-testing

-- 
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/1848333

Title:
  wifi problem delays boot in live mode

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  This problem is rather new. It did not affect Lubuntu Eoan zsynced 9
  days ago (Oct 6).

  Now there is a delay of 1 min 30 sec during booting, and I think there
  is something wrong with the recognition of the wifi hardware or maybe
  matching of driver and hardware. It happens in 'this' computer, a
  middle-aged Toshiba laptop with a generation 3 Intel i5 cpu and also
  in a Dell Latitude E7240 with a generation 4 Intel i5 cpu and I guess
  another wifi chip.

  In both cases both ethernet and wifi works. I see available wifi
  routers and can connect (when I have the password).

  I tested also with the Xubuntu eoan iso file, and the same delay
  happened there.

  I think the drivers are OK, but something in the logic for recognition
  of them might be bad.

  ProblemType: Bug
  DistroRelease: Ubuntu 19.10
  Package: linux-image-5.3.0-18-generic 5.3.0-18.19+1
  ProcVersionSignature: Ubuntu 5.3.0-18.19-generic 5.3.1
  Uname: Linux 5.3.0-18-generic x86_64
  ApportVersion: 2.20.11-0ubuntu8
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lubuntu2316 F pulseaudio
  CasperVersion: 1.426
  CurrentDesktop: LXQt
  Date: Wed Oct 16 11:36:22 2019
  LiveMediaBuild: Lubuntu 19.10 "Eoan Ermine" - Release amd64 (20191015)
  MachineType: TOSHIBA SATELLITE PRO C850-19W
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/casper/vmlinuz 
file=/cdrom/preseed/username.seed persistent ---
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-18-generic N/A
   linux-backports-modules-5.3.0-18-generic  N/A
   linux-firmware1.183
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/24/2012
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: 6.10
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: PLCSF8
  dmi.board.vendor: Intel
  dmi.board.version: Type2 - Board Version
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: OEM Chassis Manufacturer
  dmi.chassis.version: OEM Chassis Version
  dmi.modalias: 
dmi:bvnInsydeCorp.:bvr6.10:bd09/24/2012:svnTOSHIBA:pnSATELLITEPROC850-19W:pvrPSCBXE-00C00

[Kernel-packages] [Bug 1794922] Re: lubuntu 18.10 x86 (32bit) image fails to load "ehci-pci 0000:00:a.7: dma_direct_map_sg: overflow 0x000000016e3f3000+2048 of device mask ffffffff" repeats

2018-10-22 Thread sudodus
More testing, this time also with Xubuntu 18.10, 32 bit.

Testing in my Dell laptop

https://www.cnet.com/products/dell-precision-mobile-
workstation-m4800-15-6-core-i7-4810mq-8-gb-ram-256-gb-ssd-english/specs/

Lubuntu 18.10, 32 bit:

The persistent live USB drive (by mkusb) boots and runs without any
problems (like the Toshiba laptop.)

The *cloned* live USB drive (with 'nomodeset' and without 'quiet
splash') boots and gets stuck after the message

[OK] Started Update UTMP about System Runlevel Changes.

Xubuntu 18.10, 32 bit:

Both the *cloned* and the persistent live USB drive (by mkusb) boot and
run without any problems.

-- 
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/1794922

Title:
  lubuntu 18.10 x86 (32bit) image fails to load "ehci-pci :00:a.7:
  dma_direct_map_sg: overflow 0x00016e3f3000+2048 of device mask
  " repeats

Status in linux package in Ubuntu:
  Confirmed
Status in linux package in Debian:
  Unknown

Bug description:
  -- Background --
  Testing the x86 (32bit) ISO image on various machines.

  After zsync download, the thumb-drive is tested ("check disk for
  defects") & passes; and worked fine on two systems today (dell d610 &
  hp dx6120), however

  -- Issue --

  dell 755 (desktop) & hp dc7700 (small form factor) it just sits at
  lubuntu plymouth screen.

  switching to messages, it's just the following repeating

  // on dell 755
  "ehci-pci :00:1a.7: dma_direct_map_sg: overflow 0x00016e3f3000+2048 
of device mask "

  // on hp dc7700
  "ehci-pci :00:1a.7: dma_direct_map_sg: overflow 0x000162317000+2048 
of device mask "

  NOTE:  I can't copy/paste from systems, as it never completes boot; I
  left it >30mins (on 755) & it just kept repeating message. I've
  manually typed it; so typo's could have been made.

  A discussion on #lubuntu-devel provided a possible cause (Thank you
  Walter!) -

  ---
   guiverc: lyorian: 
http://debian.2.n7.nabble.com/Bug-908924-dma-direct-map-sg-overflow-on-USB-access-after-upgrade-to-kernel-4-18-td4387757.html
   seems like it's a usb issue of some kind with 4.18
  ---

  This fits because whilst I do my testing mostly on d610 & t43 (no
  issues today), I'd tested Lubuntu 18.10 before on the dell 755 with no
  issues.  My last test was also long enough ago to be on 4.17 kernel
  (suspicion)

  ---
  // on hp 8200 elite sff (i5-2400, 8gb, nvidia quadro 600)
  [ 99.99] ehci-pci :00:1d.0:dma_direct_map_sg: overflow 
0x000223ad7000+2048 of device mask  
  errors on booting 'live' (see #16) for real
  BUT
  the same ISO works fine on same box when a virtual machine (Virtual box on a 
GNU/Linux host and "Type: Linux Version: Ubuntu (32-bit)" virtual machine)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1794922/+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 1794922] Re: lubuntu 18.10 x86 (32bit) image fails to load "ehci-pci 0000:00:a.7: dma_direct_map_sg: overflow 0x000000016e3f3000+2048 of device mask ffffffff" repeats

2018-10-22 Thread sudodus
More testing, this time also with Xubuntu 18.10, 32 bit.

1. Testing in my Dell laptop

https://www.cnet.com/products/dell-precision-mobile-
workstation-m4800-15-6-core-i7-4810mq-8-gb-ram-256-gb-ssd-english/specs/

Lubuntu 18.10, 32 bit:

The persistent live USB drive (by mkusb) boots and runs without any
problems (like the Toshiba laptop.)

The *cloned* live USB drive (with 'nomodeset' and without 'quiet
splash') boots and gets stuck after the message

[OK] Started Update UTMP about System Runlevel Changes.

Xubuntu 18.10, 32 bit:

Both the *cloned* and the persistent live USB drive (by mkusb) boot and
run without any problems (like the Toshiba laptop.)

-- 
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/1794922

Title:
  lubuntu 18.10 x86 (32bit) image fails to load "ehci-pci :00:a.7:
  dma_direct_map_sg: overflow 0x00016e3f3000+2048 of device mask
  " repeats

Status in linux package in Ubuntu:
  Confirmed
Status in linux package in Debian:
  Unknown

Bug description:
  -- Background --
  Testing the x86 (32bit) ISO image on various machines.

  After zsync download, the thumb-drive is tested ("check disk for
  defects") & passes; and worked fine on two systems today (dell d610 &
  hp dx6120), however

  -- Issue --

  dell 755 (desktop) & hp dc7700 (small form factor) it just sits at
  lubuntu plymouth screen.

  switching to messages, it's just the following repeating

  // on dell 755
  "ehci-pci :00:1a.7: dma_direct_map_sg: overflow 0x00016e3f3000+2048 
of device mask "

  // on hp dc7700
  "ehci-pci :00:1a.7: dma_direct_map_sg: overflow 0x000162317000+2048 
of device mask "

  NOTE:  I can't copy/paste from systems, as it never completes boot; I
  left it >30mins (on 755) & it just kept repeating message. I've
  manually typed it; so typo's could have been made.

  A discussion on #lubuntu-devel provided a possible cause (Thank you
  Walter!) -

  ---
   guiverc: lyorian: 
http://debian.2.n7.nabble.com/Bug-908924-dma-direct-map-sg-overflow-on-USB-access-after-upgrade-to-kernel-4-18-td4387757.html
   seems like it's a usb issue of some kind with 4.18
  ---

  This fits because whilst I do my testing mostly on d610 & t43 (no
  issues today), I'd tested Lubuntu 18.10 before on the dell 755 with no
  issues.  My last test was also long enough ago to be on 4.17 kernel
  (suspicion)

  ---
  // on hp 8200 elite sff (i5-2400, 8gb, nvidia quadro 600)
  [ 99.99] ehci-pci :00:1d.0:dma_direct_map_sg: overflow 
0x000223ad7000+2048 of device mask  
  errors on booting 'live' (see #16) for real
  BUT
  the same ISO works fine on same box when a virtual machine (Virtual box on a 
GNU/Linux host and "Type: Linux Version: Ubuntu (32-bit)" virtual machine)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1794922/+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 1794922] Re: lubuntu 18.10 x86 (32bit) image fails to load "ehci-pci 0000:00:a.7: dma_direct_map_sg: overflow 0x000000016e3f3000+2048 of device mask ffffffff" repeats

2018-10-22 Thread sudodus
More testing, this time also with Xubuntu 18.10, 32 bit.

1. Testing in my Toshiba laptop (link in my previous comment)

I needed the boot option nomodeset to get 'more than an underscore' on
the screen. Then the boot process of a *cloned* USB drive as well as a
persistent live USB drive (by mkusb) ended at spamming messages of EHCI-
pci overflow.

So there is a difference between Lubuntu and Xubuntu: A persistent live
Lubuntu 18.10 (by mkusb) works without any tweaks in the Toshiba, but
the corresponding Xubuntu does not work. It seems to me that Lubuntu is
not stuck by the EHCI bug; it boots via grub in this 64-bit computer.

Using nomodeset with a *cloned* Lubuntu USB drive, there was some
spamming of EHCI-pci overflow, but after a few seconds to booting
continued and later on it got stuck at

/init: line 7: can't open /dev/sr0: No medium found

2. Testing in my Intel NUC

https://www-ssl.intel.com/content/www/us/en/nuc/nuc-kit-nuc6i3syh.html

Xubuntu 18.10, 32 bit needs the boot option nomodeset to get 'more than
an underscore' on the screen also in this computer. But then it boots
happily and works like it should, both from a *cloned* USB drive and a
persistent live USB drive (by mkusb).

Lubuntu 18.10, 32 bit, a *cloned* USB drive as well as a persistent live
USB drive (by mkusb), booted with the boot option nomodeset did not spam
of EHCI-pci overflow, but got stuck after writing

[OK] Started Update UTMP about System Runlevel Changes.

Summary

So the results are somewhat opposite in the Intel NUC compared to the
Toshiba laptop: Xubuntu can work in the NUC and Lubuntu can work in the
Toshiba. The performance of the 32-bit versions of 18.10 are flaky in
64-bit computers. I suspect that there are several bugs, and the EHCI-
pci overflow is only one of them.

-- 
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/1794922

Title:
  lubuntu 18.10 x86 (32bit) image fails to load "ehci-pci :00:a.7:
  dma_direct_map_sg: overflow 0x00016e3f3000+2048 of device mask
  " repeats

Status in linux package in Ubuntu:
  Confirmed
Status in linux package in Debian:
  Unknown

Bug description:
  -- Background --
  Testing the x86 (32bit) ISO image on various machines.

  After zsync download, the thumb-drive is tested ("check disk for
  defects") & passes; and worked fine on two systems today (dell d610 &
  hp dx6120), however

  -- Issue --

  dell 755 (desktop) & hp dc7700 (small form factor) it just sits at
  lubuntu plymouth screen.

  switching to messages, it's just the following repeating

  // on dell 755
  "ehci-pci :00:1a.7: dma_direct_map_sg: overflow 0x00016e3f3000+2048 
of device mask "

  // on hp dc7700
  "ehci-pci :00:1a.7: dma_direct_map_sg: overflow 0x000162317000+2048 
of device mask "

  NOTE:  I can't copy/paste from systems, as it never completes boot; I
  left it >30mins (on 755) & it just kept repeating message. I've
  manually typed it; so typo's could have been made.

  A discussion on #lubuntu-devel provided a possible cause (Thank you
  Walter!) -

  ---
   guiverc: lyorian: 
http://debian.2.n7.nabble.com/Bug-908924-dma-direct-map-sg-overflow-on-USB-access-after-upgrade-to-kernel-4-18-td4387757.html
   seems like it's a usb issue of some kind with 4.18
  ---

  This fits because whilst I do my testing mostly on d610 & t43 (no
  issues today), I'd tested Lubuntu 18.10 before on the dell 755 with no
  issues.  My last test was also long enough ago to be on 4.17 kernel
  (suspicion)

  ---
  // on hp 8200 elite sff (i5-2400, 8gb, nvidia quadro 600)
  [ 99.99] ehci-pci :00:1d.0:dma_direct_map_sg: overflow 
0x000223ad7000+2048 of device mask  
  errors on booting 'live' (see #16) for real
  BUT
  the same ISO works fine on same box when a virtual machine (Virtual box on a 
GNU/Linux host and "Type: Linux Version: Ubuntu (32-bit)" virtual machine)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1794922/+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 1794922] Re: lubuntu 18.10 x86 (32bit) image fails to load "ehci-pci 0000:00:a.7: dma_direct_map_sg: overflow 0x000000016e3f3000+2048 of device mask ffffffff" repeats

2018-10-22 Thread sudodus
I *think* that this bug affects me too:

I am able to boot Lubuntu 18.10 in my Toshiba laptop with 64-bit
architecture both in UEFI and BIOS mode.

http://www.toshiba.se/laptops/satellite-pro/c850/satellite-pro-c850-19w/

I used mkusb to create a persistent live drive (using default settings).
Maybe your problem depends on the tool you use to create the live drive,
or maybe it depends on the particular 64-bit computer, maybe there is
another problem.

---
lubuntu@lubuntu:~$ test -d /sys/firmware/efi/ && echo efi || echo bios
bios
lubuntu@lubuntu:~$ grep 'model name' /proc/cpuinfo 
model name  : Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz
model name  : Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz
model name  : Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz
model name  : Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz
lubuntu@lubuntu:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 18.10
Release:18.10
Codename:   cosmic
lubuntu@lubuntu:~$ df -h
Filesystem  Size  Used Avail Use% Mounted on
udev1.9G 0  1.9G   0% /dev
tmpfs   392M  1.4M  391M   1% /run
/dev/sdb4   1.6G  1.6G 0 100% /cdrom
/dev/loop0  1.6G  1.6G 0 100% /rofs
/cow6.3G   64M  5.9G   2% /
tmpfs   2.0G  6.4M  2.0G   1% /dev/shm
tmpfs   5.0M  4.0K  5.0M   1% /run/lock
tmpfs   2.0G 0  2.0G   0% /sys/fs/cgroup
tmpfs   2.0G  4.0K  2.0G   1% /tmp
tmpfs   392M  8.0K  392M   1% /run/user/999
/dev/sdb5   6.3G   64M  5.9G   2% /media/lubuntu/casper-rw
/dev/sdb1   6.4G   34M  6.4G   1% /media/lubuntu/usbdata
lubuntu@lubuntu:~$ uname -a
Linux lubuntu 4.18.0-10-generic #11-Ubuntu SMP Thu Oct 11 15:07:11 UTC 2018 
i686 i686 i686 GNU/Linux
lubuntu@lubuntu:~$ 
---

I tried again, this time *cloning* with mkusb from the iso file to a USB
pendrive, and it failed in my Toshiba laptop with 64-bit architecture
both in BIOS mode.

The syslinux boot was activated. It booted, but left me with Busybox and
the prompt

(initramfs)

Need I tell you, that both the cloned system and the persistent live
system boot successfully in my old IBM Thinkpad T41 (using forcepae to
make the ancient Pentium M CPU happy).

Persistent live drives by mkusb boot via grub both in UEFI and BIOS
mode. So it seems there is a problem to boot via syslinux in 64-bit
computers, a problem, that we did not solve before the release.

You can work around it by booting via grub also in BIOS mode. This can
be fixed in a convenient way, when you create a persistent live drive
with mkusb.

-- 
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/1794922

Title:
  lubuntu 18.10 x86 (32bit) image fails to load "ehci-pci :00:a.7:
  dma_direct_map_sg: overflow 0x00016e3f3000+2048 of device mask
  " repeats

Status in linux package in Ubuntu:
  Confirmed
Status in linux package in Debian:
  Unknown

Bug description:
  -- Background --
  Testing the x86 (32bit) ISO image on various machines.

  After zsync download, the thumb-drive is tested ("check disk for
  defects") & passes; and worked fine on two systems today (dell d610 &
  hp dx6120), however

  -- Issue --

  dell 755 (desktop) & hp dc7700 (small form factor) it just sits at
  lubuntu plymouth screen.

  switching to messages, it's just the following repeating

  // on dell 755
  "ehci-pci :00:1a.7: dma_direct_map_sg: overflow 0x00016e3f3000+2048 
of device mask "

  // on hp dc7700
  "ehci-pci :00:1a.7: dma_direct_map_sg: overflow 0x000162317000+2048 
of device mask "

  NOTE:  I can't copy/paste from systems, as it never completes boot; I
  left it >30mins (on 755) & it just kept repeating message. I've
  manually typed it; so typo's could have been made.

  A discussion on #lubuntu-devel provided a possible cause (Thank you
  Walter!) -

  ---
   guiverc: lyorian: 
http://debian.2.n7.nabble.com/Bug-908924-dma-direct-map-sg-overflow-on-USB-access-after-upgrade-to-kernel-4-18-td4387757.html
   seems like it's a usb issue of some kind with 4.18
  ---

  This fits because whilst I do my testing mostly on d610 & t43 (no
  issues today), I'd tested Lubuntu 18.10 before on the dell 755 with no
  issues.  My last test was also long enough ago to be on 4.17 kernel
  (suspicion)

  ---
  // on hp 8200 elite sff (i5-2400, 8gb, nvidia quadro 600)
  [ 99.99] ehci-pci :00:1d.0:dma_direct_map_sg: overflow 
0x000223ad7000+2048 of device mask  
  errors on booting 'live' (see #16) for real
  BUT
  the same ISO works fine on same box when a virtual machine (Virtual box on a 
GNU/Linux host and "Type: Linux Version: Ubuntu (32-bit)" virtual machine)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1794922/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-p

[Kernel-packages] [Bug 1596281] Re: the target drive is not found when connected via USB 3 while installing Lubuntu alternate

2016-06-30 Thread sudodus
Both.

I discovered it testing Xenial, but it appears also today, when I'm
testing Yakkety.

You may edit the tags accordingly. (I usually avoid editing tags and
leave it to people more involved in the administration.)

-- 
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/1596281

Title:
  the target drive is not found when connected via USB 3 while
  installing Lubuntu alternate

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  While trying to install from the Lubuntu 16.04 LTS alternate amd64
  daily iso file, the target drive is not found when connected via USB
  3.

  This happens with an SSD connected via USB 3. The corresponding
  desktop iso file works, and the released Lubuntu 16.04 LTS alternate
  amd64 worked.

  This problematic iso file can install into the same SSD, when
  connected internally (connected via SATA).

  I am writing this bug report booted from Lubuntu 16.04 desktop i364
  daily, and I will attach the output of some command lines to
  illustrate how the SSD is recognized (and should be recognized also
  but the alternate installer).

  I think the the bug is located in partman, or some related tool, that
  should identify connected drives.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-27-generic 4.4.0-27.46
  ProcVersionSignature: Ubuntu 4.4.0-27.46-generic 4.4.13
  Uname: Linux 4.4.0-27-generic i686
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lubuntu1700 F lxpanel
  CasperVersion: 1.376
  CurrentDesktop: LXDE
  Date: Sun Jun 26 09:38:09 2016
  LiveMediaBuild: Lubuntu 16.04 LTS "Xenial Xerus" - Release i386 (20160624)
  MachineType: TOSHIBA SATELLITE PRO C850-19W
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=sv_SE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: file=/cdrom/preseed/username.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- debian-installer/language=sv 
keyboard-configuration/layoutcode?=se
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-27-generic N/A
   linux-backports-modules-4.4.0-27-generic  N/A
   linux-firmware1.157.2
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/24/2012
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: 6.10
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: PLCSF8
  dmi.board.vendor: Intel
  dmi.board.version: Type2 - Board Version
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: OEM Chassis Manufacturer
  dmi.chassis.version: OEM Chassis Version
  dmi.modalias: 
dmi:bvnInsydeCorp.:bvr6.10:bd09/24/2012:svnTOSHIBA:pnSATELLITEPROC850-19W:pvrPSCBXE-00C00VN5:rvnIntel:rnPLCSF8:rvrType2-BoardVersion:cvnOEMChassisManufacturer:ct10:cvrOEMChassisVersion:
  dmi.product.name: SATELLITE PRO C850-19W
  dmi.product.version: PSCBXE-00C00VN5
  dmi.sys.vendor: TOSHIBA

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1596281/+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 1596281] Re: the target drive is not found when connected via USB 3 while installing Lubuntu alternate

2016-06-30 Thread sudodus
@ Joseph Salisbury (jsalisbury),

I have been trying to think.

- I don't think it helps with a new kernel, because Lubuntu desktop of
the corresponding daily-live iso file works (can identify the drive via
that USB 3 adapter). See post #4.

- It would be very hard for me to create an alternate iso file with the
ultimate upstream kernel.

I still think that the bug is located in partman, or some related tool,
that should identify connected drives. Of course I may be wrong, and I
will continue testing the current daily alternate iso files. I can also
try Ubuntu Server. This way I will be getting new kernel versions ...

The bug is still there with the current Yakkety Alpha 1 iso file dated
June 27

yakkety-alternate-i386.iso

-o-

Anyway, I will write a new comment, when I have new information about
this bug.

-- 
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/1596281

Title:
  the target drive is not found when connected via USB 3 while
  installing Lubuntu alternate

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  While trying to install from the Lubuntu 16.04 LTS alternate amd64
  daily iso file, the target drive is not found when connected via USB
  3.

  This happens with an SSD connected via USB 3. The corresponding
  desktop iso file works, and the released Lubuntu 16.04 LTS alternate
  amd64 worked.

  This problematic iso file can install into the same SSD, when
  connected internally (connected via SATA).

  I am writing this bug report booted from Lubuntu 16.04 desktop i364
  daily, and I will attach the output of some command lines to
  illustrate how the SSD is recognized (and should be recognized also
  but the alternate installer).

  I think the the bug is located in partman, or some related tool, that
  should identify connected drives.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-27-generic 4.4.0-27.46
  ProcVersionSignature: Ubuntu 4.4.0-27.46-generic 4.4.13
  Uname: Linux 4.4.0-27-generic i686
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lubuntu1700 F lxpanel
  CasperVersion: 1.376
  CurrentDesktop: LXDE
  Date: Sun Jun 26 09:38:09 2016
  LiveMediaBuild: Lubuntu 16.04 LTS "Xenial Xerus" - Release i386 (20160624)
  MachineType: TOSHIBA SATELLITE PRO C850-19W
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=sv_SE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: file=/cdrom/preseed/username.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- debian-installer/language=sv 
keyboard-configuration/layoutcode?=se
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-27-generic N/A
   linux-backports-modules-4.4.0-27-generic  N/A
   linux-firmware1.157.2
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/24/2012
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: 6.10
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: PLCSF8
  dmi.board.vendor: Intel
  dmi.board.version: Type2 - Board Version
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: OEM Chassis Manufacturer
  dmi.chassis.version: OEM Chassis Version
  dmi.modalias: 
dmi:bvnInsydeCorp.:bvr6.10:bd09/24/2012:svnTOSHIBA:pnSATELLITEPROC850-19W:pvrPSCBXE-00C00VN5:rvnIntel:rnPLCSF8:rvrType2-BoardVersion:cvnOEMChassisManufacturer:ct10:cvrOEMChassisVersion:
  dmi.product.name: SATELLITE PRO C850-19W
  dmi.product.version: PSCBXE-00C00VN5
  dmi.sys.vendor: TOSHIBA

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1596281/+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 1596281] Re: the target drive is not found when connected via USB 3 while installing Lubuntu alternate

2016-06-30 Thread sudodus
@ Joseph Salisbury (jsalisbury),

I have been trying to think.

- I don't think it helps with a new kernel, because Lubuntu desktop of
the corresponding daily-live iso file works (can identify the drive via
that USB 3 adapter). See post #4.

- It would be very hard for me to create an alternate iso file with the
ultimate upstream kernel.

I still think that the bug is located in partman, or some related tool,
that should identify connected drives. Of course I may be wrong, and I
will continue testing the current daily alternate iso files. I can also
try Ubuntu Server. This way I will be getting new kernel versions ...

Anyway, I will write a new comment, when I have new information about
this bug.

-- 
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/1596281

Title:
  the target drive is not found when connected via USB 3 while
  installing Lubuntu alternate

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  While trying to install from the Lubuntu 16.04 LTS alternate amd64
  daily iso file, the target drive is not found when connected via USB
  3.

  This happens with an SSD connected via USB 3. The corresponding
  desktop iso file works, and the released Lubuntu 16.04 LTS alternate
  amd64 worked.

  This problematic iso file can install into the same SSD, when
  connected internally (connected via SATA).

  I am writing this bug report booted from Lubuntu 16.04 desktop i364
  daily, and I will attach the output of some command lines to
  illustrate how the SSD is recognized (and should be recognized also
  but the alternate installer).

  I think the the bug is located in partman, or some related tool, that
  should identify connected drives.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-27-generic 4.4.0-27.46
  ProcVersionSignature: Ubuntu 4.4.0-27.46-generic 4.4.13
  Uname: Linux 4.4.0-27-generic i686
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lubuntu1700 F lxpanel
  CasperVersion: 1.376
  CurrentDesktop: LXDE
  Date: Sun Jun 26 09:38:09 2016
  LiveMediaBuild: Lubuntu 16.04 LTS "Xenial Xerus" - Release i386 (20160624)
  MachineType: TOSHIBA SATELLITE PRO C850-19W
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=sv_SE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: file=/cdrom/preseed/username.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- debian-installer/language=sv 
keyboard-configuration/layoutcode?=se
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-27-generic N/A
   linux-backports-modules-4.4.0-27-generic  N/A
   linux-firmware1.157.2
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/24/2012
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: 6.10
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: PLCSF8
  dmi.board.vendor: Intel
  dmi.board.version: Type2 - Board Version
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: OEM Chassis Manufacturer
  dmi.chassis.version: OEM Chassis Version
  dmi.modalias: 
dmi:bvnInsydeCorp.:bvr6.10:bd09/24/2012:svnTOSHIBA:pnSATELLITEPROC850-19W:pvrPSCBXE-00C00VN5:rvnIntel:rnPLCSF8:rvrType2-BoardVersion:cvnOEMChassisManufacturer:ct10:cvrOEMChassisVersion:
  dmi.product.name: SATELLITE PRO C850-19W
  dmi.product.version: PSCBXE-00C00VN5
  dmi.sys.vendor: TOSHIBA

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1596281/+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 1596281] Re: the target drive is not found when connected via USB 3 while installing Lubuntu alternate

2016-06-29 Thread sudodus
I'll try, but I am a total newbie concerning new or non-standard
kernels, so I'm not sure it will work for me :-P

-- 
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/1596281

Title:
  the target drive is not found when connected via USB 3 while
  installing Lubuntu alternate

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  While trying to install from the Lubuntu 16.04 LTS alternate amd64
  daily iso file, the target drive is not found when connected via USB
  3.

  This happens with an SSD connected via USB 3. The corresponding
  desktop iso file works, and the released Lubuntu 16.04 LTS alternate
  amd64 worked.

  This problematic iso file can install into the same SSD, when
  connected internally (connected via SATA).

  I am writing this bug report booted from Lubuntu 16.04 desktop i364
  daily, and I will attach the output of some command lines to
  illustrate how the SSD is recognized (and should be recognized also
  but the alternate installer).

  I think the the bug is located in partman, or some related tool, that
  should identify connected drives.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-27-generic 4.4.0-27.46
  ProcVersionSignature: Ubuntu 4.4.0-27.46-generic 4.4.13
  Uname: Linux 4.4.0-27-generic i686
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lubuntu1700 F lxpanel
  CasperVersion: 1.376
  CurrentDesktop: LXDE
  Date: Sun Jun 26 09:38:09 2016
  LiveMediaBuild: Lubuntu 16.04 LTS "Xenial Xerus" - Release i386 (20160624)
  MachineType: TOSHIBA SATELLITE PRO C850-19W
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=sv_SE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: file=/cdrom/preseed/username.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- debian-installer/language=sv 
keyboard-configuration/layoutcode?=se
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-27-generic N/A
   linux-backports-modules-4.4.0-27-generic  N/A
   linux-firmware1.157.2
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/24/2012
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: 6.10
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: PLCSF8
  dmi.board.vendor: Intel
  dmi.board.version: Type2 - Board Version
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: OEM Chassis Manufacturer
  dmi.chassis.version: OEM Chassis Version
  dmi.modalias: 
dmi:bvnInsydeCorp.:bvr6.10:bd09/24/2012:svnTOSHIBA:pnSATELLITEPROC850-19W:pvrPSCBXE-00C00VN5:rvnIntel:rnPLCSF8:rvrType2-BoardVersion:cvnOEMChassisManufacturer:ct10:cvrOEMChassisVersion:
  dmi.product.name: SATELLITE PRO C850-19W
  dmi.product.version: PSCBXE-00C00VN5
  dmi.sys.vendor: TOSHIBA

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1596281/+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 1596281] Re: the target drive is not found when connected via USB 3 while installing Lubuntu alternate

2016-06-26 Thread sudodus
I continued testing the problem with

- the released version lubuntu-16.04-alternate-amd64.iso

- another adapter/box to connect the SSD via USB 3.

And this is the result:

This (new) adapter, Deltaco USB 3.0 to SATA II cable fails also with the
released version, so it is an old bug.

An (older) AKASA box for 2.5" drives to USB3 and eSATA works via USB 3
(with the released version as well as with the current daily iso file).

-o-

Both the new adapter and the old box are recognized during boot, Lubuntu
boots from them, and are recognized by the desktop live system and its
installer. So this bug seems specific for the debian installer and the
particular hardware in the Deltaco adapter (shown as Asmedia by lsusb)

'Bus 004 Device 002: ID 174c:55aa ASMedia Technology Inc. ASM1051E SATA
6Gb/s bridge, ASM1053E SATA 6Gb/s bridge, ASM1153 SATA 3Gb/s bridge'

-- 
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/1596281

Title:
  the target drive is not found when connected via USB 3 while
  installing Lubuntu alternate

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  While trying to install from the Lubuntu 16.04 LTS alternate amd64
  daily iso file, the target drive is not found when connected via USB
  3.

  This happens with an SSD connected via USB 3. The corresponding
  desktop iso file works, and the released Lubuntu 16.04 LTS alternate
  amd64 worked.

  This problematic iso file can install into the same SSD, when
  connected internally (connected via SATA).

  I am writing this bug report booted from Lubuntu 16.04 desktop i364
  daily, and I will attach the output of some command lines to
  illustrate how the SSD is recognized (and should be recognized also
  but the alternate installer).

  I think the the bug is located in partman, or some related tool, that
  should identify connected drives.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-27-generic 4.4.0-27.46
  ProcVersionSignature: Ubuntu 4.4.0-27.46-generic 4.4.13
  Uname: Linux 4.4.0-27-generic i686
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lubuntu1700 F lxpanel
  CasperVersion: 1.376
  CurrentDesktop: LXDE
  Date: Sun Jun 26 09:38:09 2016
  LiveMediaBuild: Lubuntu 16.04 LTS "Xenial Xerus" - Release i386 (20160624)
  MachineType: TOSHIBA SATELLITE PRO C850-19W
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=sv_SE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: file=/cdrom/preseed/username.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- debian-installer/language=sv 
keyboard-configuration/layoutcode?=se
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-27-generic N/A
   linux-backports-modules-4.4.0-27-generic  N/A
   linux-firmware1.157.2
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/24/2012
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: 6.10
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: PLCSF8
  dmi.board.vendor: Intel
  dmi.board.version: Type2 - Board Version
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: OEM Chassis Manufacturer
  dmi.chassis.version: OEM Chassis Version
  dmi.modalias: 
dmi:bvnInsydeCorp.:bvr6.10:bd09/24/2012:svnTOSHIBA:pnSATELLITEPROC850-19W:pvrPSCBXE-00C00VN5:rvnIntel:rnPLCSF8:rvrType2-BoardVersion:cvnOEMChassisManufacturer:ct10:cvrOEMChassisVersion:
  dmi.product.name: SATELLITE PRO C850-19W
  dmi.product.version: PSCBXE-00C00VN5
  dmi.sys.vendor: TOSHIBA

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1596281/+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 1596281] Re: the target drive is not found when connected via USB 3 while installing Lubuntu alternate

2016-06-26 Thread sudodus
** Summary changed:

- the target drive is not found when connected via USB 3
+ the target drive is not found when connected via USB 3 while installing 
Lubuntu alternate

-- 
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/1596281

Title:
  the target drive is not found when connected via USB 3 while
  installing Lubuntu alternate

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  While trying to install from the Lubuntu 16.04 LTS alternate amd64
  daily iso file, the target drive is not found when connected via USB
  3.

  This happens with an SSD connected via USB 3. The corresponding
  desktop iso file works, and the released Lubuntu 16.04 LTS alternate
  amd64 worked.

  This problematic iso file can install into the same SSD, when
  connected internally (connected via SATA).

  I am writing this bug report booted from Lubuntu 16.04 desktop i364
  daily, and I will attach the output of some command lines to
  illustrate how the SSD is recognized (and should be recognized also
  but the alternate installer).

  I think the the bug is located in partman, or some related tool, that
  should identify connected drives.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-27-generic 4.4.0-27.46
  ProcVersionSignature: Ubuntu 4.4.0-27.46-generic 4.4.13
  Uname: Linux 4.4.0-27-generic i686
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lubuntu1700 F lxpanel
  CasperVersion: 1.376
  CurrentDesktop: LXDE
  Date: Sun Jun 26 09:38:09 2016
  LiveMediaBuild: Lubuntu 16.04 LTS "Xenial Xerus" - Release i386 (20160624)
  MachineType: TOSHIBA SATELLITE PRO C850-19W
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=sv_SE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: file=/cdrom/preseed/username.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- debian-installer/language=sv 
keyboard-configuration/layoutcode?=se
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-27-generic N/A
   linux-backports-modules-4.4.0-27-generic  N/A
   linux-firmware1.157.2
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/24/2012
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: 6.10
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: PLCSF8
  dmi.board.vendor: Intel
  dmi.board.version: Type2 - Board Version
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: OEM Chassis Manufacturer
  dmi.chassis.version: OEM Chassis Version
  dmi.modalias: 
dmi:bvnInsydeCorp.:bvr6.10:bd09/24/2012:svnTOSHIBA:pnSATELLITEPROC850-19W:pvrPSCBXE-00C00VN5:rvnIntel:rnPLCSF8:rvrType2-BoardVersion:cvnOEMChassisManufacturer:ct10:cvrOEMChassisVersion:
  dmi.product.name: SATELLITE PRO C850-19W
  dmi.product.version: PSCBXE-00C00VN5
  dmi.sys.vendor: TOSHIBA

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1596281/+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 1596281] Re: the target drive is not found when connected via USB 3

2016-06-26 Thread sudodus
Commands illustrating how the target drive is recognized by the desktop
system.

** Attachment added: "commands.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1596281/+attachment/4690472/+files/commands.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/1596281

Title:
  the target drive is not found when connected via USB 3 while
  installing Lubuntu alternate

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  While trying to install from the Lubuntu 16.04 LTS alternate amd64
  daily iso file, the target drive is not found when connected via USB
  3.

  This happens with an SSD connected via USB 3. The corresponding
  desktop iso file works, and the released Lubuntu 16.04 LTS alternate
  amd64 worked.

  This problematic iso file can install into the same SSD, when
  connected internally (connected via SATA).

  I am writing this bug report booted from Lubuntu 16.04 desktop i364
  daily, and I will attach the output of some command lines to
  illustrate how the SSD is recognized (and should be recognized also
  but the alternate installer).

  I think the the bug is located in partman, or some related tool, that
  should identify connected drives.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-27-generic 4.4.0-27.46
  ProcVersionSignature: Ubuntu 4.4.0-27.46-generic 4.4.13
  Uname: Linux 4.4.0-27-generic i686
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lubuntu1700 F lxpanel
  CasperVersion: 1.376
  CurrentDesktop: LXDE
  Date: Sun Jun 26 09:38:09 2016
  LiveMediaBuild: Lubuntu 16.04 LTS "Xenial Xerus" - Release i386 (20160624)
  MachineType: TOSHIBA SATELLITE PRO C850-19W
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=sv_SE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: file=/cdrom/preseed/username.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- debian-installer/language=sv 
keyboard-configuration/layoutcode?=se
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-27-generic N/A
   linux-backports-modules-4.4.0-27-generic  N/A
   linux-firmware1.157.2
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/24/2012
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: 6.10
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: PLCSF8
  dmi.board.vendor: Intel
  dmi.board.version: Type2 - Board Version
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: OEM Chassis Manufacturer
  dmi.chassis.version: OEM Chassis Version
  dmi.modalias: 
dmi:bvnInsydeCorp.:bvr6.10:bd09/24/2012:svnTOSHIBA:pnSATELLITEPROC850-19W:pvrPSCBXE-00C00VN5:rvnIntel:rnPLCSF8:rvrType2-BoardVersion:cvnOEMChassisManufacturer:ct10:cvrOEMChassisVersion:
  dmi.product.name: SATELLITE PRO C850-19W
  dmi.product.version: PSCBXE-00C00VN5
  dmi.sys.vendor: TOSHIBA

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1596281/+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 1596281] [NEW] the target drive is not found when connected via USB 3 while installing Lubuntu alternate

2016-06-26 Thread sudodus
Public bug reported:

While trying to install from the Lubuntu 16.04 LTS alternate amd64 daily
iso file, the target drive is not found when connected via USB 3.

This happens with an SSD connected via USB 3. The corresponding desktop
iso file works, and the released Lubuntu 16.04 LTS alternate amd64
worked.

This problematic iso file can install into the same SSD, when connected
internally (connected via SATA).

I am writing this bug report booted from Lubuntu 16.04 desktop i364
daily, and I will attach the output of some command lines to illustrate
how the SSD is recognized (and should be recognized also but the
alternate installer).

I think the the bug is located in partman, or some related tool, that
should identify connected drives.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: linux-image-4.4.0-27-generic 4.4.0-27.46
ProcVersionSignature: Ubuntu 4.4.0-27.46-generic 4.4.13
Uname: Linux 4.4.0-27-generic i686
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  lubuntu1700 F lxpanel
CasperVersion: 1.376
CurrentDesktop: LXDE
Date: Sun Jun 26 09:38:09 2016
LiveMediaBuild: Lubuntu 16.04 LTS "Xenial Xerus" - Release i386 (20160624)
MachineType: TOSHIBA SATELLITE PRO C850-19W
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=sv_SE.UTF-8
 SHELL=/bin/bash
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: file=/cdrom/preseed/username.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- debian-installer/language=sv 
keyboard-configuration/layoutcode?=se
RelatedPackageVersions:
 linux-restricted-modules-4.4.0-27-generic N/A
 linux-backports-modules-4.4.0-27-generic  N/A
 linux-firmware1.157.2
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 09/24/2012
dmi.bios.vendor: Insyde Corp.
dmi.bios.version: 6.10
dmi.board.asset.tag: Type2 - Board Asset Tag
dmi.board.name: PLCSF8
dmi.board.vendor: Intel
dmi.board.version: Type2 - Board Version
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: OEM Chassis Manufacturer
dmi.chassis.version: OEM Chassis Version
dmi.modalias: 
dmi:bvnInsydeCorp.:bvr6.10:bd09/24/2012:svnTOSHIBA:pnSATELLITEPROC850-19W:pvrPSCBXE-00C00VN5:rvnIntel:rnPLCSF8:rvrType2-BoardVersion:cvnOEMChassisManufacturer:ct10:cvrOEMChassisVersion:
dmi.product.name: SATELLITE PRO C850-19W
dmi.product.version: PSCBXE-00C00VN5
dmi.sys.vendor: TOSHIBA

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: Confirmed


** Tags: apport-bug i386 package-from-proposed 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/1596281

Title:
  the target drive is not found when connected via USB 3 while
  installing Lubuntu alternate

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  While trying to install from the Lubuntu 16.04 LTS alternate amd64
  daily iso file, the target drive is not found when connected via USB
  3.

  This happens with an SSD connected via USB 3. The corresponding
  desktop iso file works, and the released Lubuntu 16.04 LTS alternate
  amd64 worked.

  This problematic iso file can install into the same SSD, when
  connected internally (connected via SATA).

  I am writing this bug report booted from Lubuntu 16.04 desktop i364
  daily, and I will attach the output of some command lines to
  illustrate how the SSD is recognized (and should be recognized also
  but the alternate installer).

  I think the the bug is located in partman, or some related tool, that
  should identify connected drives.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-27-generic 4.4.0-27.46
  ProcVersionSignature: Ubuntu 4.4.0-27.46-generic 4.4.13
  Uname: Linux 4.4.0-27-generic i686
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lubuntu1700 F lxpanel
  CasperVersion: 1.376
  CurrentDesktop: LXDE
  Date: Sun Jun 26 09:38:09 2016
  LiveMediaBuild: Lubuntu 16.04 LTS "Xenial Xerus" - Release i386 (20160624)
  MachineType: TOSHIBA SATELLITE PRO C850-19W
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=sv_SE.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: file=/cdrom/preseed/username.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- debian-installer/language=sv 
keyboard-configuration/layoutcode?=se
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-27-generic N/A
   linux-backports-modules-4.4.0-27-generic  N/A
   linux-firmware1.157.2
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/24/2012
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: 6.10
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.

[Kernel-packages] [Bug 1552985] Re: [Dell Inspiron 14 3000 Series] System hangs on poweroff

2016-05-28 Thread sudodus
+1 for Lubuntu 16.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/1552985

Title:
  [Dell Inspiron 14 3000 Series] System hangs on poweroff

Status in linux package in Ubuntu:
  Expired

Bug description:
  Xubuntu 14.04.4 LTS
  Linux 3.13.0-79-generic #123-Ubuntu SMP Fri Feb 19 14:27:58 UTC 2016 x86_64 
x86_64 x86_64 GNU/Linux

  When shutting down the system, it gets stuck on the Xubuntu splash
  screen. I have to press the power button for a while to have it shut
  down.

  This is a dual boot system: Windows 10 and Xubuntu 14.04. I updated BIOS 
version to A10 a couple of days ago. It hanged when trying to shut down from 
both Windows and Xubuntu.
  After installing the firmware update from 
http://www.dell.com/support/article/mx/es/mxbsdt1/SLN300281/EN, the computer 
shuts down correctly from Windows, but still gets stuck when trying to shut 
down from Xubuntu, no matter if using the "Shutdown" button or running 
"shutdown -h now" or "poweroff" from a terminal.

  I found a similar bug here:
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1341925?comments=all,
  but the solution mentioned there did not work for me, also, I don't
  have any problems when rebooting the computer, just when trying to
  shut down.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: linux-image-3.13.0-79-generic 3.13.0-79.123
  ProcVersionSignature: Ubuntu 3.13.0-79.123-generic 3.13.11-ckt33
  Uname: Linux 3.13.0-79-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  jorge  2347 F pulseaudio
   /dev/snd/controlC1:  jorge  2347 F pulseaudio
  CurrentDesktop: XFCE
  Date: Thu Mar  3 18:43:20 2016
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2014-11-18 (471 days ago)
  InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140723)
  MachineType: Dell Inc. Inspiron 3442
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-79-generic.efi.signed 
root=UUID=bc5b1ae8-a10c-4705-afc7-3cf3c2538883 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.13.0-79-generic N/A
   linux-backports-modules-3.13.0-79-generic  N/A
   linux-firmware 1.127.20
  SourcePackage: linux
  StagingDrivers: rts5139
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/03/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A10
  dmi.board.name: 0260GN
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A10
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: Not Specified
  dmi.modalias: 
dmi:bvnDellInc.:bvrA10:bd11/03/2015:svnDellInc.:pnInspiron3442:pvrNotSpecified:rvnDellInc.:rn0260GN:rvrA10:cvnDellInc.:ct8:cvrNotSpecified:
  dmi.product.name: Inspiron 3442
  dmi.product.version: Not Specified
  dmi.sys.vendor: Dell Inc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1552985/+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 1359689] Re: cryptsetup password prompt not shown

2016-04-18 Thread sudodus
This bug is still alive in Lubuntu Xenial final.

-- 
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/1359689

Title:
  cryptsetup password prompt not shown

Status in linux package in Ubuntu:
  Triaged
Status in linux source package in Utopic:
  Won't Fix
Status in linux source package in Vivid:
  Triaged
Status in plymouth package in Debian:
  Fix Released

Bug description:
  Currently in utopic the following happens when booting an encrypted
  setup:

  Press enter in grub, after a while screen freezes (or turns completely
  black) and stays like that. When I press the down key, I can see the
  password prompt. When I press the up key again, I get to the graphical
  password prompt.

  This is demonstrated in the following screencast:
  https://drive.google.com/file/d/0B7EMvd1LJKgZREJocHBueEhpa2s/edit?usp=sharing

  Maybe this is related to the version of plymouth utopic currently uses, a 
similar debian bug report seems to be resolved with a newer version 0.9.0-6, 
see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=752752.
  --- 
  ApportVersion: 2.14.6-0ubuntu2
  Architecture: amd64
  DistroRelease: Ubuntu 14.10
  InstallationDate: Installed on 2014-08-21 (0 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Alpha amd64 (20140821)
  Package: plymouth 0.9.0-0ubuntu3
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 3.16.0-9.14-generic 3.16.1
  Tags:  utopic
  Uname: Linux 3.16.0-9-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:
   
  _MarkForUpload: True
  --- 
  ApportVersion: 2.14.6-0ubuntu2
  Architecture: amd64
  DefaultPlymouth: /lib/plymouth/themes/ubuntu-logo/ubuntu-logo.plymouth
  DistroRelease: Ubuntu 14.10
  InstallationDate: Installed on 2014-08-21 (0 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Alpha amd64 (20140821)
  MachineType: Dell Inc. Precision M4600
  Package: plymouth 0.9.0-0ubuntu3
  PackageArchitecture: amd64
  ProcCmdLine: BOOT_IMAGE=/vmlinuz-3.16.0-9-generic 
root=/dev/mapper/VG--Ubuntu-LV--Ubuntu--ROOT ro rootflags=subvol=@ 
cryptopts=target=Ubuntu,source=/dev/disk/by-uuid/6fc200da-aa04-4e73-b6a7-a2326f0b6204,lvm=VG-Ubuntu
 quiet splash vt.handoff=7
  ProcFB: 0 nouveaufb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.16.0-9-generic 
root=/dev/mapper/VG--Ubuntu-LV--Ubuntu--ROOT ro rootflags=subvol=@ 
cryptopts=target=Ubuntu,source=/dev/disk/by-uuid/6fc200da-aa04-4e73-b6a7-a2326f0b6204,lvm=VG-Ubuntu
 quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.16.0-9.14-generic 3.16.1
  Tags:  utopic
  TextPlymouth: /lib/plymouth/themes/ubuntu-text/ubuntu-text.plymouth
  Uname: Linux 3.16.0-9-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:
   
  _MarkForUpload: True
  dmi.bios.date: 03/10/2013
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A14
  dmi.board.vendor: Dell Inc.
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA14:bd03/10/2013:svnDellInc.:pnPrecisionM4600:pvr01:rvnDellInc.:rn:rvr:cvnDellInc.:ct9:cvr:
  dmi.product.name: Precision M4600
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1359689/+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 1562391] Re: Live session hangs at poweroff or reboot

2016-03-27 Thread sudodus
It seems to me that this bug affects systems booted via syslinux, but
not systems booted via grub.

See this comment to a related bug report,

https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1552985/comments/17

-- 
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/1562391

Title:
  Live session hangs at poweroff or reboot

Status in linux package in Ubuntu:
  Invalid

Bug description:
  Both 32 and 64-bit versions of Lubuntu daily ISO do not poweoff or
  reboot when requested so Power button must be used to terminate
  session.

  This may be similar to bug #1552985 but a new bug reported at the
  request of Christopher Penalver.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-15-generic 4.4.0-15.31
  ProcVersionSignature: Ubuntu 4.4.0-15.31-generic 4.4.6
  Uname: Linux 4.4.0-15-generic i686
  ApportVersion: 2.20-0ubuntu3
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lubuntu1614 F lxpanel
  CasperVersion: 1.369
  CurrentDesktop: LXDE
  Date: Sat Mar 26 20:25:28 2016
  LiveMediaBuild: Lubuntu 16.04 LTS "Xenial Xerus" - Beta i386 (20160326)
  MachineType: TOSHIBA SATELLITE C50-B
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: file=/cdrom/preseed/username.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- keyboard-configuration/layoutcode=gb
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-15-generic N/A
   linux-backports-modules-4.4.0-15-generic  N/A
   linux-firmware1.157
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/25/2014
  dmi.bios.vendor: TOSHIBA
  dmi.bios.version: 1.40
  dmi.board.asset.tag: *
  dmi.board.name: ZBWAA
  dmi.board.vendor: TOSHIBA
  dmi.board.version: 1.00
  dmi.chassis.asset.tag: *
  dmi.chassis.type: 10
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnTOSHIBA:bvr1.40:bd07/25/2014:svnTOSHIBA:pnSATELLITEC50-B:pvrPSCMLE-04901DEN:rvnTOSHIBA:rnZBWAA:rvr1.00:cvnToBeFilledByO.E.M.:ct10:cvrToBeFilledByO.E.M.:
  dmi.product.name: SATELLITE C50-B
  dmi.product.version: PSCMLE-04901DEN
  dmi.sys.vendor: TOSHIBA

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1562391/+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 1552985] Re: [Dell Inspiron 14 3000 Series] System hangs on poweroff

2016-03-27 Thread sudodus
Booted via grub-n-iso shutdown works for me, but not when the pendrive
was created by cloning the current Lubuntu Xenial i386 daily iso file,

xenial-desktop-i386.iso

Today I tested with USB-creator-gtk 0.3.2 and mkusb, but can get the
same result with other cloning tools, e.g. gnome-disks, dd.

In other words, my live drive is affected when booted from a cloned
system, but not from a grub-n-iso system made from the same iso file. I
suspect that this bug is the same or closely related to the bug that
also affects virtual machines,

https://bugs.launchpad.net/ubuntu/+source/casper/+bug/966480

It is described as a race condition by Chris Bainbridge:

https://bugs.launchpad.net/ubuntu/+source/casper/+bug/966480/comments/58

-o-

Details: I tested this in a laptop bought 2013 (that I am often using
for iso testing),

http://www.toshiba.se/laptops/satellite-pro/c850/satellite-pro-c850-19w/

and in a desktop computer with the following motherboard bought 2008,

http://www.asus.com/Motherboards/M2NVM_DVI/

A Sandisk Cruzer blade 4 GB USB drive cloned to a 'live-only' system
with USB-creator-gtk 0.3.2 and mkusb is affected by this bug in both
those computers.

The same USB drive made into a grub-n-iso system with the same Lubuntu
daily iso file according to the link

http://ubuntuforums.org/showthread.php?t=2259682&p=13302278#post13302278

or made into a persistent live drive with mkusb according to this link

https://help.ubuntu.com/community/mkusb/persistent

can be shut down or rebooted properly (so these systems booted via grub
are not affected).

PS.

Until this bug  is squashed (and in other cases where a linux system is
unresponsive)I recommend

SysRq + r e i s u b

described in the following link

https://en.wikipedia.org/wiki/Magic_SysRq_key

DS.

-- 
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/1552985

Title:
  [Dell Inspiron 14 3000 Series] System hangs on poweroff

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Xubuntu 14.04.4 LTS
  Linux 3.13.0-79-generic #123-Ubuntu SMP Fri Feb 19 14:27:58 UTC 2016 x86_64 
x86_64 x86_64 GNU/Linux

  When shutting down the system, it gets stuck on the Xubuntu splash
  screen. I have to press the power button for a while to have it shut
  down.

  This is a dual boot system: Windows 10 and Xubuntu 14.04. I updated BIOS 
version to A10 a couple of days ago. It hanged when trying to shut down from 
both Windows and Xubuntu.
  After installing the firmware update from 
http://www.dell.com/support/article/mx/es/mxbsdt1/SLN300281/EN, the computer 
shuts down correctly from Windows, but still gets stuck when trying to shut 
down from Xubuntu, no matter if using the "Shutdown" button or running 
"shutdown -h now" or "poweroff" from a terminal.

  I found a similar bug here:
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1341925?comments=all,
  but the solution mentioned there did not work for me, also, I don't
  have any problems when rebooting the computer, just when trying to
  shut down.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: linux-image-3.13.0-79-generic 3.13.0-79.123
  ProcVersionSignature: Ubuntu 3.13.0-79.123-generic 3.13.11-ckt33
  Uname: Linux 3.13.0-79-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  jorge  2347 F pulseaudio
   /dev/snd/controlC1:  jorge  2347 F pulseaudio
  CurrentDesktop: XFCE
  Date: Thu Mar  3 18:43:20 2016
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2014-11-18 (471 days ago)
  InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140723)
  MachineType: Dell Inc. Inspiron 3442
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-79-generic.efi.signed 
root=UUID=bc5b1ae8-a10c-4705-afc7-3cf3c2538883 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.13.0-79-generic N/A
   linux-backports-modules-3.13.0-79-generic  N/A
   linux-firmware 1.127.20
  SourcePackage: linux
  StagingDrivers: rts5139
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/03/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A10
  dmi.board.name: 0260GN
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A10
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: Not Specified
  dmi.modalias: 
dmi:bvnDellInc.:bvrA10:bd11/03/2015:svnDellInc.:pnInspiron3442:pvrNotSpecified:rvnDellInc.:rn0260GN:rvrA10:cvnDellInc.:ct8:cvrNotSpecified:
  dmi.product.name: Inspiron 3442
  dmi.product.version: Not Specified
  dmi.sys.vendor: Dell Inc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1552985/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Po

[Kernel-packages] [Bug 1552985] Re: [Dell Inspiron 14 3000 Series] System hangs on poweroff

2016-03-27 Thread sudodus
I have seen indications that it makes a difference which tool or method
was used to create the USB boot drive. So please tell us which tool was
used when this bug appeared, as if you get different results when trying
to shut down, when the USB drive was created with different tools or
methods.

-- 
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/1552985

Title:
  [Dell Inspiron 14 3000 Series] System hangs on poweroff

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Xubuntu 14.04.4 LTS
  Linux 3.13.0-79-generic #123-Ubuntu SMP Fri Feb 19 14:27:58 UTC 2016 x86_64 
x86_64 x86_64 GNU/Linux

  When shutting down the system, it gets stuck on the Xubuntu splash
  screen. I have to press the power button for a while to have it shut
  down.

  This is a dual boot system: Windows 10 and Xubuntu 14.04. I updated BIOS 
version to A10 a couple of days ago. It hanged when trying to shut down from 
both Windows and Xubuntu.
  After installing the firmware update from 
http://www.dell.com/support/article/mx/es/mxbsdt1/SLN300281/EN, the computer 
shuts down correctly from Windows, but still gets stuck when trying to shut 
down from Xubuntu, no matter if using the "Shutdown" button or running 
"shutdown -h now" or "poweroff" from a terminal.

  I found a similar bug here:
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1341925?comments=all,
  but the solution mentioned there did not work for me, also, I don't
  have any problems when rebooting the computer, just when trying to
  shut down.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: linux-image-3.13.0-79-generic 3.13.0-79.123
  ProcVersionSignature: Ubuntu 3.13.0-79.123-generic 3.13.11-ckt33
  Uname: Linux 3.13.0-79-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  jorge  2347 F pulseaudio
   /dev/snd/controlC1:  jorge  2347 F pulseaudio
  CurrentDesktop: XFCE
  Date: Thu Mar  3 18:43:20 2016
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2014-11-18 (471 days ago)
  InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140723)
  MachineType: Dell Inc. Inspiron 3442
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-79-generic.efi.signed 
root=UUID=bc5b1ae8-a10c-4705-afc7-3cf3c2538883 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.13.0-79-generic N/A
   linux-backports-modules-3.13.0-79-generic  N/A
   linux-firmware 1.127.20
  SourcePackage: linux
  StagingDrivers: rts5139
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/03/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A10
  dmi.board.name: 0260GN
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A10
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: Not Specified
  dmi.modalias: 
dmi:bvnDellInc.:bvrA10:bd11/03/2015:svnDellInc.:pnInspiron3442:pvrNotSpecified:rvnDellInc.:rn0260GN:rvrA10:cvnDellInc.:ct8:cvrNotSpecified:
  dmi.product.name: Inspiron 3442
  dmi.product.version: Not Specified
  dmi.sys.vendor: Dell Inc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1552985/+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 1562391] Re: Live session hangs at poweroff or reboot

2016-03-27 Thread sudodus
I have seen indications that it makes a difference which tool or method
was used to create the USB boot drive. So please tell us which tool was
used when this bug appeared, as if you get different results when trying
to shut down, when the USB drive was created with different tools or
methods.

-- 
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/1562391

Title:
  Live session hangs at poweroff or reboot

Status in linux package in Ubuntu:
  Invalid

Bug description:
  Both 32 and 64-bit versions of Lubuntu daily ISO do not poweoff or
  reboot when requested so Power button must be used to terminate
  session.

  This may be similar to bug #1552985 but a new bug reported at the
  request of Christopher Penalver.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-15-generic 4.4.0-15.31
  ProcVersionSignature: Ubuntu 4.4.0-15.31-generic 4.4.6
  Uname: Linux 4.4.0-15-generic i686
  ApportVersion: 2.20-0ubuntu3
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lubuntu1614 F lxpanel
  CasperVersion: 1.369
  CurrentDesktop: LXDE
  Date: Sat Mar 26 20:25:28 2016
  LiveMediaBuild: Lubuntu 16.04 LTS "Xenial Xerus" - Beta i386 (20160326)
  MachineType: TOSHIBA SATELLITE C50-B
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: file=/cdrom/preseed/username.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- keyboard-configuration/layoutcode=gb
  RelatedPackageVersions:
   linux-restricted-modules-4.4.0-15-generic N/A
   linux-backports-modules-4.4.0-15-generic  N/A
   linux-firmware1.157
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/25/2014
  dmi.bios.vendor: TOSHIBA
  dmi.bios.version: 1.40
  dmi.board.asset.tag: *
  dmi.board.name: ZBWAA
  dmi.board.vendor: TOSHIBA
  dmi.board.version: 1.00
  dmi.chassis.asset.tag: *
  dmi.chassis.type: 10
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnTOSHIBA:bvr1.40:bd07/25/2014:svnTOSHIBA:pnSATELLITEC50-B:pvrPSCMLE-04901DEN:rvnTOSHIBA:rnZBWAA:rvr1.00:cvnToBeFilledByO.E.M.:ct10:cvrToBeFilledByO.E.M.:
  dmi.product.name: SATELLITE C50-B
  dmi.product.version: PSCMLE-04901DEN
  dmi.sys.vendor: TOSHIBA

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1562391/+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 1359689] Re: cryptsetup password prompt not shown

2016-03-24 Thread sudodus
This problem is still there in Lubuntu desktop, which means the desktop
iso file with the graphical user interface.

The problem appears on desktop computers as well as on laptop computers,
and I think it is caused by problems with plymouth (which displays
nothing, no logo, no dots, (and no passphrase if disk encryption is
selected).

The problem is that the passphrase is not displayed, but it is still
possible to type it and finish with the Enter key. That brings you to
the login screen of the installed Lubuntu system.

-- 
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/1359689

Title:
  cryptsetup password prompt not shown

Status in linux package in Ubuntu:
  Triaged
Status in linux source package in Utopic:
  Won't Fix
Status in linux source package in Vivid:
  Triaged
Status in plymouth package in Debian:
  Fix Released

Bug description:
  Currently in utopic the following happens when booting an encrypted
  setup:

  Press enter in grub, after a while screen freezes (or turns completely
  black) and stays like that. When I press the down key, I can see the
  password prompt. When I press the up key again, I get to the graphical
  password prompt.

  This is demonstrated in the following screencast:
  https://drive.google.com/file/d/0B7EMvd1LJKgZREJocHBueEhpa2s/edit?usp=sharing

  Maybe this is related to the version of plymouth utopic currently uses, a 
similar debian bug report seems to be resolved with a newer version 0.9.0-6, 
see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=752752.
  --- 
  ApportVersion: 2.14.6-0ubuntu2
  Architecture: amd64
  DistroRelease: Ubuntu 14.10
  InstallationDate: Installed on 2014-08-21 (0 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Alpha amd64 (20140821)
  Package: plymouth 0.9.0-0ubuntu3
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 3.16.0-9.14-generic 3.16.1
  Tags:  utopic
  Uname: Linux 3.16.0-9-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:
   
  _MarkForUpload: True
  --- 
  ApportVersion: 2.14.6-0ubuntu2
  Architecture: amd64
  DefaultPlymouth: /lib/plymouth/themes/ubuntu-logo/ubuntu-logo.plymouth
  DistroRelease: Ubuntu 14.10
  InstallationDate: Installed on 2014-08-21 (0 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Alpha amd64 (20140821)
  MachineType: Dell Inc. Precision M4600
  Package: plymouth 0.9.0-0ubuntu3
  PackageArchitecture: amd64
  ProcCmdLine: BOOT_IMAGE=/vmlinuz-3.16.0-9-generic 
root=/dev/mapper/VG--Ubuntu-LV--Ubuntu--ROOT ro rootflags=subvol=@ 
cryptopts=target=Ubuntu,source=/dev/disk/by-uuid/6fc200da-aa04-4e73-b6a7-a2326f0b6204,lvm=VG-Ubuntu
 quiet splash vt.handoff=7
  ProcFB: 0 nouveaufb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.16.0-9-generic 
root=/dev/mapper/VG--Ubuntu-LV--Ubuntu--ROOT ro rootflags=subvol=@ 
cryptopts=target=Ubuntu,source=/dev/disk/by-uuid/6fc200da-aa04-4e73-b6a7-a2326f0b6204,lvm=VG-Ubuntu
 quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.16.0-9.14-generic 3.16.1
  Tags:  utopic
  TextPlymouth: /lib/plymouth/themes/ubuntu-text/ubuntu-text.plymouth
  Uname: Linux 3.16.0-9-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:
   
  _MarkForUpload: True
  dmi.bios.date: 03/10/2013
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A14
  dmi.board.vendor: Dell Inc.
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA14:bd03/10/2013:svnDellInc.:pnPrecisionM4600:pvr01:rvnDellInc.:rn:rvr:cvnDellInc.:ct9:cvr:
  dmi.product.name: Precision M4600
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1359689/+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 1305480] Re: BUG: pcmC0D0p:0, pos = 16390, buffer size = 16384, period size = 1024

2016-03-10 Thread sudodus
I see.

-- 
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/1305480

Title:
  BUG: pcmC0D0p:0, pos = 16390, buffer size = 16384, period size = 1024

Status in linux package in Ubuntu:
  Fix Released
Status in linux source package in Trusty:
  Fix Released
Status in linux source package in Utopic:
  Fix Released

Bug description:
  This bug annoys me a lot. There are about 100 'System Problem
  Detected' windows at logon. After the logon it appears occasionally.

  ProblemType: KernelOops
  DistroRelease: Ubuntu 14.04
  Package: linux-image-3.13.0-23-generic 3.13.0-23.45
  ProcVersionSignature: Ubuntu 3.13.0-23.45-generic 3.13.8
  Uname: Linux 3.13.0-23-generic x86_64
  Annotation: Your system might become unstable now and might need to be 
restarted.
  ApportVersion: 2.14.1-0ubuntu1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  dbaskakov   2975 F pulseaudio
   /dev/snd/pcmC0D0p:   dbaskakov   2975 F...m pulseaudio
  Date: Thu Apr 10 10:36:33 2014
  Failure: oops
  HibernationDevice: RESUME=UUID=243c6575-07ba-42cb-99bd-c8a5122fb1fa
  InstallationDate: Installed on 2014-04-04 (5 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Beta amd64 (20140326)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: System manufacturer System Product Name
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-23-generic 
root=UUID=411ab871-da55-4951-a933-1a9ea5710267 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: kerneloops-daemon 0.12+git20090217-3ubuntu8
  RfKill:
   
  SourcePackage: linux
  Title: BUG: pcmC0D0p:0, pos = 16390, buffer size = 16384, period size = 1024
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/30/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1401
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: F1A55-M LX
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev X.0x
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1401:bd09/30/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnF1A55-MLX:rvrRevX.0x:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1305480/+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 1555487] Re: snd_au8820 0000:01:04.0: BUG: , pos = 16388, buffer size = 16384, period size = 1024

2016-03-10 Thread sudodus
I have tried,

$ uname -a
Linux xenial32 4.5.0-040500rc7-generic #201603061830 SMP Sun Mar 6 23:43:15 UTC 
2016 i686 i686 i686 GNU/Linux

but it is the same (this kernel does not solve the problem). Instead, I
suspect another bug. Please look at

https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1305480

comment #13

-o-

I don't know how to add a tag

** Tags added: kernel-bug-exists-upstream

-- 
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/1555487

Title:
  snd_au8820 :01:04.0: BUG: , pos = 16388, buffer size = 16384,
  period size = 1024

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  This bug does *not* affect precise and *not* trusty. Sorry if that was
  not clear in the original comment.

  It only affects *xenial*
  --
  Directly at login after reboot I had many prompts to send a bug report about 
kernel oops. I tried to count them. think this report is responding to the 26th 
prompt to send a bug report, and a few seconds later there was one more prompt 
to send a bug report.

  I think it is a duplicate of the bug report #1551041
  --

  Before this reboot and login, I had started to suspect than the Aureal
  sound card is starting to fail, so I rebooted into

  1. The old Precise system with the 3.2.0-97-generic-pae kernel

  2. The newer Trusty system with the 3.13.0-79-generic kernel
  --
  $ uname -a
  Linux xw8400 3.13.0-79-generic #123-Ubuntu SMP Fri Feb 19 14:27:58 UTC 2016 
x86_64 x86_64 x86_64 GNU/Linux
  --
  Both of these systems work well. There is no sign of failure of the Aureal 
sound card, and there are no kernel oops in precise and trusty.

  ProblemType: KernelOops
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-11-generic 4.4.0-11.26
  ProcVersionSignature: Ubuntu 4.4.0-11.26-generic 4.4.4
  Uname: Linux 4.4.0-11-generic i686
  NonfreeKernelModules: nvidia
  Annotation: Your system might become unstable now and might need to be 
restarted.
  ApportVersion: 2.20-0ubuntu3
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  olle   2206 F pulseaudio
   /dev/snd/controlC1:  olle   2206 F pulseaudio
  Date: Thu Mar 10 08:11:00 2016
  Failure: oops
  HibernationDevice: RESUME=UUID=03bed9e9-e39b-4107-8cd6-c2612af9a6aa
  InstallationDate: Installed on 2016-02-28 (10 days ago)
  InstallationMedia: Lubuntu 16.04 LTS "Xenial Xerus" - Alpha i386 (20160226)
  MachineType: Hewlett-Packard HP xw8400 Workstation
  ProcFB:

  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-11-generic 
root=UUID=2160f8ed-4aa3-4243-b5d6-f87c1967e253 ro quiet splash
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: kerneloops-daemon 0.12+git20090217-3ubuntu9
  RfKill:

  SourcePackage: linux
  Title: snd_au8820 :01:04.0: BUG: , pos = 16388, buffer size = 16384, 
period size = 1024
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/09/2009
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 786D5 v02.37
  dmi.board.name: 0A08h
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: NA
  dmi.chassis.asset.tag: CZC722497N
  dmi.chassis.type: 6
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786D5v02.37:bd07/09/2009:svnHewlett-Packard:pnHPxw8400Workstation:pvr:rvnHewlett-Packard:rn0A08h:rvrNA:cvnHewlett-Packard:ct6:cvr:
  dmi.product.name: HP xw8400 Workstation
  dmi.sys.vendor: Hewlett-Packard

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1555487/+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 1555487] Re: snd_au8820 0000:01:04.0: BUG: , pos = 16388, buffer size = 16384, period size = 1024

2016-03-10 Thread sudodus
OK, I think I managed to add the tag 'kernel-bug-exists-upstream'

-- 
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/1555487

Title:
  snd_au8820 :01:04.0: BUG: , pos = 16388, buffer size = 16384,
  period size = 1024

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  This bug does *not* affect precise and *not* trusty. Sorry if that was
  not clear in the original comment.

  It only affects *xenial*
  --
  Directly at login after reboot I had many prompts to send a bug report about 
kernel oops. I tried to count them. think this report is responding to the 26th 
prompt to send a bug report, and a few seconds later there was one more prompt 
to send a bug report.

  I think it is a duplicate of the bug report #1551041
  --

  Before this reboot and login, I had started to suspect than the Aureal
  sound card is starting to fail, so I rebooted into

  1. The old Precise system with the 3.2.0-97-generic-pae kernel

  2. The newer Trusty system with the 3.13.0-79-generic kernel
  --
  $ uname -a
  Linux xw8400 3.13.0-79-generic #123-Ubuntu SMP Fri Feb 19 14:27:58 UTC 2016 
x86_64 x86_64 x86_64 GNU/Linux
  --
  Both of these systems work well. There is no sign of failure of the Aureal 
sound card, and there are no kernel oops in precise and trusty.

  ProblemType: KernelOops
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-11-generic 4.4.0-11.26
  ProcVersionSignature: Ubuntu 4.4.0-11.26-generic 4.4.4
  Uname: Linux 4.4.0-11-generic i686
  NonfreeKernelModules: nvidia
  Annotation: Your system might become unstable now and might need to be 
restarted.
  ApportVersion: 2.20-0ubuntu3
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  olle   2206 F pulseaudio
   /dev/snd/controlC1:  olle   2206 F pulseaudio
  Date: Thu Mar 10 08:11:00 2016
  Failure: oops
  HibernationDevice: RESUME=UUID=03bed9e9-e39b-4107-8cd6-c2612af9a6aa
  InstallationDate: Installed on 2016-02-28 (10 days ago)
  InstallationMedia: Lubuntu 16.04 LTS "Xenial Xerus" - Alpha i386 (20160226)
  MachineType: Hewlett-Packard HP xw8400 Workstation
  ProcFB:

  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-11-generic 
root=UUID=2160f8ed-4aa3-4243-b5d6-f87c1967e253 ro quiet splash
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: kerneloops-daemon 0.12+git20090217-3ubuntu9
  RfKill:

  SourcePackage: linux
  Title: snd_au8820 :01:04.0: BUG: , pos = 16388, buffer size = 16384, 
period size = 1024
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/09/2009
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 786D5 v02.37
  dmi.board.name: 0A08h
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: NA
  dmi.chassis.asset.tag: CZC722497N
  dmi.chassis.type: 6
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786D5v02.37:bd07/09/2009:svnHewlett-Packard:pnHPxw8400Workstation:pvr:rvnHewlett-Packard:rn0A08h:rvrNA:cvnHewlett-Packard:ct6:cvr:
  dmi.product.name: HP xw8400 Workstation
  dmi.sys.vendor: Hewlett-Packard

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1555487/+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 1305480] Re: BUG: pcmC0D0p:0, pos = 16390, buffer size = 16384, period size = 1024

2016-03-10 Thread sudodus
Bug #1551041 affects my hp xw8400 workstation when running 32-bit
*Xenial*. Raymond (superquad-vortex2) has helped me identify the
problem, and he found, that it is probably caused by what you describe
in the following link,

https://git.kernel.org/cgit/linux/kernel/git/tiwai/sound.git/commit/sound/core/pcm_lib.c?id=00d90154404ae6218730068d25bf2faad3186631

that is *this bug*

ALSA: pcm: 'BUG:' message unnecessarily triggers kerneloops
BugLink: http://bugs.launchpad.net/bugs/1305480

The kerneloops-daemon scans dmesg for common crash signatures, among
which is 'BUG:'. The message emitted by the PCM library is really a
warning, so the most expedient thing to do seems to be to change the
string.

See also the Bug report #1551041,

snd_au8820 :01:04.0: BUG: , pos = 16386, buffer size = 16384, period
size = 1024

https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1551041

-- 
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/1305480

Title:
  BUG: pcmC0D0p:0, pos = 16390, buffer size = 16384, period size = 1024

Status in linux package in Ubuntu:
  Fix Released
Status in linux source package in Trusty:
  Fix Released
Status in linux source package in Utopic:
  Fix Released

Bug description:
  This bug annoys me a lot. There are about 100 'System Problem
  Detected' windows at logon. After the logon it appears occasionally.

  ProblemType: KernelOops
  DistroRelease: Ubuntu 14.04
  Package: linux-image-3.13.0-23-generic 3.13.0-23.45
  ProcVersionSignature: Ubuntu 3.13.0-23.45-generic 3.13.8
  Uname: Linux 3.13.0-23-generic x86_64
  Annotation: Your system might become unstable now and might need to be 
restarted.
  ApportVersion: 2.14.1-0ubuntu1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  dbaskakov   2975 F pulseaudio
   /dev/snd/pcmC0D0p:   dbaskakov   2975 F...m pulseaudio
  Date: Thu Apr 10 10:36:33 2014
  Failure: oops
  HibernationDevice: RESUME=UUID=243c6575-07ba-42cb-99bd-c8a5122fb1fa
  InstallationDate: Installed on 2014-04-04 (5 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Beta amd64 (20140326)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: System manufacturer System Product Name
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-23-generic 
root=UUID=411ab871-da55-4951-a933-1a9ea5710267 ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: kerneloops-daemon 0.12+git20090217-3ubuntu8
  RfKill:
   
  SourcePackage: linux
  Title: BUG: pcmC0D0p:0, pos = 16390, buffer size = 16384, period size = 1024
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/30/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1401
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: F1A55-M LX
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev X.0x
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1401:bd09/30/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnF1A55-MLX:rvrRevX.0x:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1305480/+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 1555487] Re: snd_au8820 0000:01:04.0: BUG: , pos = 16388, buffer size = 16384, period size = 1024

2016-03-10 Thread sudodus
This bug does *not* affect precise and *not* trusty. Sorry if that was
not clear in the original comment.

It only affects *xenial*

** Description changed:

- Directly at login after reboot I had many prompts to send a bug report
- about kernel oops. I tried to count them. think this report is
- responding to the 26th prompt to send a bug report, and a few seconds
- later there was one more prompt to send a bug report.
+ This bug does *not* affect precise and *not* trusty. Sorry if that was
+ not clear in the original comment.
+ 
+ It only affects *xenial*
+ --
+ Directly at login after reboot I had many prompts to send a bug report about 
kernel oops. I tried to count them. think this report is responding to the 26th 
prompt to send a bug report, and a few seconds later there was one more prompt 
to send a bug report.
  
  I think it is a duplicate of the bug report #1551041
  --
  
  Before this reboot and login, I had started to suspect than the Aureal
  sound card is starting to fail, so I rebooted into
  
  1. The old Precise system with the 3.2.0-97-generic-pae kernel
  
  2. The newer Trusty system with the 3.13.0-79-generic kernel
  --
  $ uname -a
  Linux xw8400 3.13.0-79-generic #123-Ubuntu SMP Fri Feb 19 14:27:58 UTC 2016 
x86_64 x86_64 x86_64 GNU/Linux
  --
  Both of these systems work well. There is no sign of failure of the Aureal 
sound card, and there are no kernel oops.
  
  ProblemType: KernelOops
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-11-generic 4.4.0-11.26
  ProcVersionSignature: Ubuntu 4.4.0-11.26-generic 4.4.4
  Uname: Linux 4.4.0-11-generic i686
  NonfreeKernelModules: nvidia
  Annotation: Your system might become unstable now and might need to be 
restarted.
  ApportVersion: 2.20-0ubuntu3
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  olle   2206 F pulseaudio
   /dev/snd/controlC1:  olle   2206 F pulseaudio
  Date: Thu Mar 10 08:11:00 2016
  Failure: oops
  HibernationDevice: RESUME=UUID=03bed9e9-e39b-4107-8cd6-c2612af9a6aa
  InstallationDate: Installed on 2016-02-28 (10 days ago)
  InstallationMedia: Lubuntu 16.04 LTS "Xenial Xerus" - Alpha i386 (20160226)
  MachineType: Hewlett-Packard HP xw8400 Workstation
  ProcFB:
  
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-11-generic 
root=UUID=2160f8ed-4aa3-4243-b5d6-f87c1967e253 ro quiet splash
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: kerneloops-daemon 0.12+git20090217-3ubuntu9
  RfKill:
  
  SourcePackage: linux
  Title: snd_au8820 :01:04.0: BUG: , pos = 16388, buffer size = 16384, 
period size = 1024
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/09/2009
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 786D5 v02.37
  dmi.board.name: 0A08h
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: NA
  dmi.chassis.asset.tag: CZC722497N
  dmi.chassis.type: 6
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786D5v02.37:bd07/09/2009:svnHewlett-Packard:pnHPxw8400Workstation:pvr:rvnHewlett-Packard:rn0A08h:rvrNA:cvnHewlett-Packard:ct6:cvr:
  dmi.product.name: HP xw8400 Workstation
  dmi.sys.vendor: Hewlett-Packard

** Description changed:

  This bug does *not* affect precise and *not* trusty. Sorry if that was
  not clear in the original comment.
  
  It only affects *xenial*
  --
  Directly at login after reboot I had many prompts to send a bug report about 
kernel oops. I tried to count them. think this report is responding to the 26th 
prompt to send a bug report, and a few seconds later there was one more prompt 
to send a bug report.
  
  I think it is a duplicate of the bug report #1551041
  --
  
  Before this reboot and login, I had started to suspect than the Aureal
  sound card is starting to fail, so I rebooted into
  
  1. The old Precise system with the 3.2.0-97-generic-pae kernel
  
  2. The newer Trusty system with the 3.13.0-79-generic kernel
  --
  $ uname -a
  Linux xw8400 3.13.0-79-generic #123-Ubuntu SMP Fri Feb 19 14:27:58 UTC 2016 
x86_64 x86_64 x86_64 GNU/Linux
  --
- Both of these systems work well. There is no sign of failure of the Aureal 
sound card, and there are no kernel oops.
+ Both of these systems work well. There is no sign of failure of the Aureal 
sound card, and there are no kernel oops in precise and trusty.
  
  ProblemType: KernelOops
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-11-generic 4.4.0-11.26
  ProcVersionSignature: Ubuntu 4.4.0-11.26-generic 4.4.4
  Uname: Linux 4.4.0-11-generic i686
  NonfreeKernelModules: nvidia
  Annotation: Your system might become unstable now and might need to be 
restarted.
  ApportVersion: 2.20-0ubuntu3
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  olle   2206 F pulseaudio
   /dev/snd/controlC1:  olle  

[Kernel-packages] [Bug 1555487] [NEW] snd_au8820 0000:01:04.0: BUG: , pos = 16388, buffer size = 16384, period size = 1024

2016-03-10 Thread sudodus
Public bug reported:

Directly at login after reboot I had many prompts to send a bug report
about kernel oops. I tried to count them. think this report is
responding to the 26th prompt to send a bug report, and a few seconds
later there was one more prompt to send a bug report.

I think it is a duplicate of the bug report #1551041
--

Before this reboot and login, I had started to suspect than the Aureal
sound card is starting to fail, so I rebooted into

1. The old Precise system with the 3.2.0-97-generic-pae kernel

2. The newer Trusty system with the 3.13.0-79-generic kernel
--
$ uname -a
Linux xw8400 3.13.0-79-generic #123-Ubuntu SMP Fri Feb 19 14:27:58 UTC 2016 
x86_64 x86_64 x86_64 GNU/Linux
--
Both of these systems work well. There is no sign of failure of the Aureal 
sound card, and there are no kernel oops.

ProblemType: KernelOops
DistroRelease: Ubuntu 16.04
Package: linux-image-4.4.0-11-generic 4.4.0-11.26
ProcVersionSignature: Ubuntu 4.4.0-11.26-generic 4.4.4
Uname: Linux 4.4.0-11-generic i686
NonfreeKernelModules: nvidia
Annotation: Your system might become unstable now and might need to be 
restarted.
ApportVersion: 2.20-0ubuntu3
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  olle   2206 F pulseaudio
 /dev/snd/controlC1:  olle   2206 F pulseaudio
Date: Thu Mar 10 08:11:00 2016
Failure: oops
HibernationDevice: RESUME=UUID=03bed9e9-e39b-4107-8cd6-c2612af9a6aa
InstallationDate: Installed on 2016-02-28 (10 days ago)
InstallationMedia: Lubuntu 16.04 LTS "Xenial Xerus" - Alpha i386 (20160226)
MachineType: Hewlett-Packard HP xw8400 Workstation
ProcFB:

ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-11-generic 
root=UUID=2160f8ed-4aa3-4243-b5d6-f87c1967e253 ro quiet splash
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: kerneloops-daemon 0.12+git20090217-3ubuntu9
RfKill:

SourcePackage: linux
Title: snd_au8820 :01:04.0: BUG: , pos = 16388, buffer size = 16384, period 
size = 1024
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/09/2009
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: 786D5 v02.37
dmi.board.name: 0A08h
dmi.board.vendor: Hewlett-Packard
dmi.board.version: NA
dmi.chassis.asset.tag: CZC722497N
dmi.chassis.type: 6
dmi.chassis.vendor: Hewlett-Packard
dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786D5v02.37:bd07/09/2009:svnHewlett-Packard:pnHPxw8400Workstation:pvr:rvnHewlett-Packard:rn0A08h:rvrNA:cvnHewlett-Packard:ct6:cvr:
dmi.product.name: HP xw8400 Workstation
dmi.sys.vendor: Hewlett-Packard

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-kerneloops i386 kernel-oops xenial

** Description changed:

  Directly at login after reboot I had many prompts to send a bug report
  about kernel oops. I tried to count them. think this report is
  responding to the 26th prompt to send a bug report, and a few seconds
  later there was one more prompt to send a bug report.
  
  I think it is a duplicate of the bug report #1551041
  --
  
  Before this reboot and login, I had started to suspect than the Aureal
  sound card is starting to fail, so I rebooted into
  
  1. The old Precise system with the 3.2.0-97-generic-pae kernel
  
- 2. The newer Trusty system with the 4.4.0-11-generic kernel
+ 2. The newer Trusty system with the 3.13.0-79-generic kernel
  --
  $ uname -a
  Linux xw8400 3.13.0-79-generic #123-Ubuntu SMP Fri Feb 19 14:27:58 UTC 2016 
x86_64 x86_64 x86_64 GNU/Linux
  --
  Both of these systems work well. There is no sign of failure of the Aureal 
sound card, and there are no kernel oops.
  
  ProblemType: KernelOops
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-11-generic 4.4.0-11.26
  ProcVersionSignature: Ubuntu 4.4.0-11.26-generic 4.4.4
  Uname: Linux 4.4.0-11-generic i686
  NonfreeKernelModules: nvidia
  Annotation: Your system might become unstable now and might need to be 
restarted.
  ApportVersion: 2.20-0ubuntu3
  Architecture: i386
  AudioDevicesInUse:
-  USERPID ACCESS COMMAND
-  /dev/snd/controlC0:  olle   2206 F pulseaudio
-  /dev/snd/controlC1:  olle   2206 F pulseaudio
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  olle   2206 F pulseaudio
+  /dev/snd/controlC1:  olle   2206 F pulseaudio
  Date: Thu Mar 10 08:11:00 2016
  Failure: oops
  HibernationDevice: RESUME=UUID=03bed9e9-e39b-4107-8cd6-c2612af9a6aa
  InstallationDate: Installed on 2016-02-28 (10 days ago)
  InstallationMedia: Lubuntu 16.04 LTS "Xenial Xerus" - Alpha i386 (20160226)
  MachineType: Hewlett-Packard HP xw8400 Workstation
  ProcFB:
-  
+ 
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-11-generic 
root=UUID=2160f8ed-4aa3-4243-b5d6-f87c1967e253 ro quiet splash
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daem

[Kernel-packages] [Bug 1554980] [NEW] snd_au8820 0000:01:04.0: BUG: , pos = 16388, buffer size = 16384, period size = 1024

2016-03-09 Thread sudodus
Public bug reported:

Probably a duplicate of Bug #1551041.

I upgraded to a new kernel today and it works well. No kernel oops
during normal operation.

I started a virtual machine in VirtualBox - still no kernel oops. I
closed the virtual machine, and then there was a kernel oops, and this
report was prompted.

But I notice no other problem (than prompting the bug report).

ProblemType: KernelOops
DistroRelease: Ubuntu 16.04
Package: linux-image-4.4.0-11-generic 4.4.0-11.26
ProcVersionSignature: Ubuntu 4.4.0-11.26-generic 4.4.4
Uname: Linux 4.4.0-11-generic i686
NonfreeKernelModules: nvidia
Annotation: Your system might become unstable now and might need to be 
restarted.
ApportVersion: 2.20-0ubuntu3
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  olle   2128 F pulseaudio
 /dev/snd/controlC0:  olle   2128 F pulseaudio
Date: Wed Mar  9 09:56:47 2016
Failure: oops
HibernationDevice: RESUME=UUID=03bed9e9-e39b-4107-8cd6-c2612af9a6aa
InstallationDate: Installed on 2016-02-28 (9 days ago)
InstallationMedia: Lubuntu 16.04 LTS "Xenial Xerus" - Alpha i386 (20160226)
MachineType: Hewlett-Packard HP xw8400 Workstation
OopsText:
 snd_au8820 :01:04.0: BUG: , pos = 16388, buffer size = 16384, period size 
= 1024
 device enp31s0 left promiscuous mode
 vboxnetflt: 0 out of 46 packets were not sent (directed to host)
ProcFB:

ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-11-generic 
root=UUID=2160f8ed-4aa3-4243-b5d6-f87c1967e253 ro quiet splash
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: kerneloops-daemon 0.12+git20090217-3ubuntu9
RfKill:

SourcePackage: linux
Title: snd_au8820 :01:04.0: BUG: , pos = 16388, buffer size = 16384, period 
size = 1024
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/09/2009
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: 786D5 v02.37
dmi.board.name: 0A08h
dmi.board.vendor: Hewlett-Packard
dmi.board.version: NA
dmi.chassis.asset.tag: CZC722497N
dmi.chassis.type: 6
dmi.chassis.vendor: Hewlett-Packard
dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786D5v02.37:bd07/09/2009:svnHewlett-Packard:pnHPxw8400Workstation:pvr:rvnHewlett-Packard:rn0A08h:rvrNA:cvnHewlett-Packard:ct6:cvr:
dmi.product.name: HP xw8400 Workstation
dmi.sys.vendor: Hewlett-Packard

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-kerneloops i386 kernel-oops xenial

** Description changed:

  Probably a duplicate of Bug #1551041.
  
  I upgraded to a new kernel today and it works well. No kernel oops
  during normal operation.
  
  I started a virtual machine in VirtualBox - still no kernel oops. I
- closed the virtual machine, and then there was as kernel oops.
+ closed the virtual machine, and then there was a kernel oops, and this
+ report was prompted.
  
  But I notice no other problem (than prompting the bug report).
  
  ProblemType: KernelOops
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-11-generic 4.4.0-11.26
  ProcVersionSignature: Ubuntu 4.4.0-11.26-generic 4.4.4
  Uname: Linux 4.4.0-11-generic i686
  NonfreeKernelModules: nvidia
  Annotation: Your system might become unstable now and might need to be 
restarted.
  ApportVersion: 2.20-0ubuntu3
  Architecture: i386
  AudioDevicesInUse:
-  USERPID ACCESS COMMAND
-  /dev/snd/controlC1:  olle   2128 F pulseaudio
-  /dev/snd/controlC0:  olle   2128 F pulseaudio
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC1:  olle   2128 F pulseaudio
+  /dev/snd/controlC0:  olle   2128 F pulseaudio
  Date: Wed Mar  9 09:56:47 2016
  Failure: oops
  HibernationDevice: RESUME=UUID=03bed9e9-e39b-4107-8cd6-c2612af9a6aa
  InstallationDate: Installed on 2016-02-28 (9 days ago)
  InstallationMedia: Lubuntu 16.04 LTS "Xenial Xerus" - Alpha i386 (20160226)
  MachineType: Hewlett-Packard HP xw8400 Workstation
  OopsText:
-  snd_au8820 :01:04.0: BUG: , pos = 16388, buffer size = 16384, period 
size = 1024
-  device enp31s0 left promiscuous mode
-  vboxnetflt: 0 out of 46 packets were not sent (directed to host)
+  snd_au8820 :01:04.0: BUG: , pos = 16388, buffer size = 16384, period 
size = 1024
+  device enp31s0 left promiscuous mode
+  vboxnetflt: 0 out of 46 packets were not sent (directed to host)
  ProcFB:
-  
+ 
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-11-generic 
root=UUID=2160f8ed-4aa3-4243-b5d6-f87c1967e253 ro quiet splash
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: kerneloops-daemon 0.12+git20090217-3ubuntu9
  RfKill:
-  
+ 
  SourcePackage: linux
  Title: snd_au8820 :01:04.0: BUG: , pos = 16388, buffer size = 16384, 
period size = 1024
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/09/2009
  dmi.bios

[Kernel-packages] [Bug 1551041] Re: snd_au8820 0000:01:04.0: BUG: , pos = 16386, buffer size = 16384, period size = 1024

2016-03-09 Thread sudodus
I upgraded to a new kernel today and it works well. No kernel oops
during normal operation.

I started a virtual machine in VirtualBox - still no kernel oops. I
closed the virtual machine, and then there was a kernel oops, bug report
#1554980

But I notice no other problem (than prompting the bug report). I'm still
thinking like this: 'If it ain't broke, don't fix it' and I hesitate to
tamper with the BIOS.

-- 
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/1551041

Title:
  snd_au8820 :01:04.0: BUG: , pos = 16386, buffer size = 16384,
  period size = 1024

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Kernel oops in a new installed system, that I configuring ...

  ProblemType: KernelOops
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-8-generic 4.4.0-8.23
  ProcVersionSignature: Ubuntu 4.4.0-8.23-generic 4.4.2
  Uname: Linux 4.4.0-8-generic i686
  NonfreeKernelModules: nvidia
  Annotation: Your system might become unstable now and might need to be 
restarted.
  ApportVersion: 2.20-0ubuntu3
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  olle   1606 F pulseaudio
   /dev/snd/controlC0:  olle   1606 F pulseaudio
  Date: Mon Feb 29 00:00:56 2016
  Failure: oops
  HibernationDevice: RESUME=UUID=03bed9e9-e39b-4107-8cd6-c2612af9a6aa
  InstallationDate: Installed on 2016-02-28 (0 days ago)
  InstallationMedia: Lubuntu 16.04 LTS "Xenial Xerus" - Alpha i386 (20160226)
  IwConfig:
   enp31s0   no wireless extensions.
   
   lono wireless extensions.
  MachineType: Hewlett-Packard HP xw8400 Workstation
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-8-generic 
root=UUID=2160f8ed-4aa3-4243-b5d6-f87c1967e253 ro quiet splash
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: kerneloops-daemon 0.12+git20090217-3ubuntu9
  RfKill:
   
  SourcePackage: linux
  Title: snd_au8820 :01:04.0: BUG: , pos = 16386, buffer size = 16384, 
period size = 1024
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/09/2009
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 786D5 v02.37
  dmi.board.name: 0A08h
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: NA
  dmi.chassis.asset.tag: CZC722497N
  dmi.chassis.type: 6
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786D5v02.37:bd07/09/2009:svnHewlett-Packard:pnHPxw8400Workstation:pvr:rvnHewlett-Packard:rn0A08h:rvrNA:cvnHewlett-Packard:ct6:cvr:
  dmi.product.name: HP xw8400 Workstation
  dmi.sys.vendor: Hewlett-Packard

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1551041/+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 1551041] Re: snd_au8820 0000:01:04.0: BUG: , pos = 16386, buffer size = 16384, period size = 1024

2016-03-08 Thread sudodus
Thank you for working with this bug :-)

But I must admit, that I don't understand what is the problem. Except
from the automatic prompting for bug reports, I do not notice any
problem. The computer run happily like it has been running with older
versions of Lubuntu and Xubuntu.

And since I see no problem, I am scared of flashing a new BIOS. I have
no UPS, so with bad luck, I think I could brick my old workstation.

I know (I read the wiki page) that I should be brave and flash the BIOS,
but ...

Please explain the bug, and what I would improve by getting rid of it
:-)

-- 
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/1551041

Title:
  snd_au8820 :01:04.0: BUG: , pos = 16386, buffer size = 16384,
  period size = 1024

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Kernel oops in a new installed system, that I configuring ...

  ProblemType: KernelOops
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-8-generic 4.4.0-8.23
  ProcVersionSignature: Ubuntu 4.4.0-8.23-generic 4.4.2
  Uname: Linux 4.4.0-8-generic i686
  NonfreeKernelModules: nvidia
  Annotation: Your system might become unstable now and might need to be 
restarted.
  ApportVersion: 2.20-0ubuntu3
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  olle   1606 F pulseaudio
   /dev/snd/controlC0:  olle   1606 F pulseaudio
  Date: Mon Feb 29 00:00:56 2016
  Failure: oops
  HibernationDevice: RESUME=UUID=03bed9e9-e39b-4107-8cd6-c2612af9a6aa
  InstallationDate: Installed on 2016-02-28 (0 days ago)
  InstallationMedia: Lubuntu 16.04 LTS "Xenial Xerus" - Alpha i386 (20160226)
  IwConfig:
   enp31s0   no wireless extensions.
   
   lono wireless extensions.
  MachineType: Hewlett-Packard HP xw8400 Workstation
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-8-generic 
root=UUID=2160f8ed-4aa3-4243-b5d6-f87c1967e253 ro quiet splash
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: kerneloops-daemon 0.12+git20090217-3ubuntu9
  RfKill:
   
  SourcePackage: linux
  Title: snd_au8820 :01:04.0: BUG: , pos = 16386, buffer size = 16384, 
period size = 1024
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/09/2009
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 786D5 v02.37
  dmi.board.name: 0A08h
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: NA
  dmi.chassis.asset.tag: CZC722497N
  dmi.chassis.type: 6
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786D5v02.37:bd07/09/2009:svnHewlett-Packard:pnHPxw8400Workstation:pvr:rvnHewlett-Packard:rn0A08h:rvrNA:cvnHewlett-Packard:ct6:cvr:
  dmi.product.name: HP xw8400 Workstation
  dmi.sys.vendor: Hewlett-Packard

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1551041/+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 1553354] [NEW] snd_au8820 0000:01:04.0: BUG: , pos = 16384, buffer size = 16384, period size = 1024

2016-03-04 Thread sudodus
Public bug reported:

This time the bug appeared directly after login

ProblemType: KernelOops
DistroRelease: Ubuntu 16.04
Package: linux-image-4.4.0-9-generic 4.4.0-9.24
ProcVersionSignature: Ubuntu 4.4.0-9.24-generic 4.4.3
Uname: Linux 4.4.0-9-generic i686
NonfreeKernelModules: nvidia
Annotation: Your system might become unstable now and might need to be 
restarted.
ApportVersion: 2.20-0ubuntu3
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  olle   2255 F pulseaudio
 /dev/snd/controlC1:  olle   2255 F pulseaudio
Date: Fri Mar  4 14:22:48 2016
Failure: oops
HibernationDevice: RESUME=UUID=03bed9e9-e39b-4107-8cd6-c2612af9a6aa
InstallationDate: Installed on 2016-02-28 (5 days ago)
InstallationMedia: Lubuntu 16.04 LTS "Xenial Xerus" - Alpha i386 (20160226)
MachineType: Hewlett-Packard HP xw8400 Workstation
ProcFB:
 
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-9-generic 
root=UUID=2160f8ed-4aa3-4243-b5d6-f87c1967e253 ro quiet splash
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: kerneloops-daemon 0.12+git20090217-3ubuntu9
RfKill:
 
SourcePackage: linux
Title: snd_au8820 :01:04.0: BUG: , pos = 16384, buffer size = 16384, period 
size = 1024
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/09/2009
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: 786D5 v02.37
dmi.board.name: 0A08h
dmi.board.vendor: Hewlett-Packard
dmi.board.version: NA
dmi.chassis.asset.tag: CZC722497N
dmi.chassis.type: 6
dmi.chassis.vendor: Hewlett-Packard
dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786D5v02.37:bd07/09/2009:svnHewlett-Packard:pnHPxw8400Workstation:pvr:rvnHewlett-Packard:rn0A08h:rvrNA:cvnHewlett-Packard:ct6:cvr:
dmi.product.name: HP xw8400 Workstation
dmi.sys.vendor: Hewlett-Packard

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-kerneloops i386 kernel-oops 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/1553354

Title:
  snd_au8820 :01:04.0: BUG: , pos = 16384, buffer size = 16384,
  period size = 1024

Status in linux package in Ubuntu:
  New

Bug description:
  This time the bug appeared directly after login

  ProblemType: KernelOops
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-9-generic 4.4.0-9.24
  ProcVersionSignature: Ubuntu 4.4.0-9.24-generic 4.4.3
  Uname: Linux 4.4.0-9-generic i686
  NonfreeKernelModules: nvidia
  Annotation: Your system might become unstable now and might need to be 
restarted.
  ApportVersion: 2.20-0ubuntu3
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  olle   2255 F pulseaudio
   /dev/snd/controlC1:  olle   2255 F pulseaudio
  Date: Fri Mar  4 14:22:48 2016
  Failure: oops
  HibernationDevice: RESUME=UUID=03bed9e9-e39b-4107-8cd6-c2612af9a6aa
  InstallationDate: Installed on 2016-02-28 (5 days ago)
  InstallationMedia: Lubuntu 16.04 LTS "Xenial Xerus" - Alpha i386 (20160226)
  MachineType: Hewlett-Packard HP xw8400 Workstation
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-9-generic 
root=UUID=2160f8ed-4aa3-4243-b5d6-f87c1967e253 ro quiet splash
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: kerneloops-daemon 0.12+git20090217-3ubuntu9
  RfKill:
   
  SourcePackage: linux
  Title: snd_au8820 :01:04.0: BUG: , pos = 16384, buffer size = 16384, 
period size = 1024
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/09/2009
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 786D5 v02.37
  dmi.board.name: 0A08h
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: NA
  dmi.chassis.asset.tag: CZC722497N
  dmi.chassis.type: 6
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786D5v02.37:bd07/09/2009:svnHewlett-Packard:pnHPxw8400Workstation:pvr:rvnHewlett-Packard:rn0A08h:rvrNA:cvnHewlett-Packard:ct6:cvr:
  dmi.product.name: HP xw8400 Workstation
  dmi.sys.vendor: Hewlett-Packard

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1553354/+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 1553191] [NEW] snd_au8820 0000:01:04.0: BUG: , pos = 16384, buffer size = 16384, period size = 1024

2016-03-04 Thread sudodus
Public bug reported:

This occurred after upgrading to the following kernel

$ uname -a
Linux xenial32 4.4.0-9-generic #24-Ubuntu SMP Mon Feb 29 19:30:41 UTC 2016 i686 
i686 i686 GNU/Linux

and it was triggered by starting a virtual machine with VirtualBox.

ProblemType: KernelOops
DistroRelease: Ubuntu 16.04
Package: linux-image-4.4.0-9-generic 4.4.0-9.24
ProcVersionSignature: Ubuntu 4.4.0-9.24-generic 4.4.3
Uname: Linux 4.4.0-9-generic i686
NonfreeKernelModules: nvidia
Annotation: Your system might become unstable now and might need to be 
restarted.
ApportVersion: 2.20-0ubuntu3
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  olle   2122 F pulseaudio
 /dev/snd/pcmC1D0c:   olle   2122 F...m pulseaudio
 /dev/snd/pcmC1D0p:   olle   2122 F...m pulseaudio
 /dev/snd/controlC1:  olle   2122 F pulseaudio
Date: Fri Mar  4 14:21:48 2016
Failure: oops
HibernationDevice: RESUME=UUID=03bed9e9-e39b-4107-8cd6-c2612af9a6aa
InstallationDate: Installed on 2016-02-28 (4 days ago)
InstallationMedia: Lubuntu 16.04 LTS "Xenial Xerus" - Alpha i386 (20160226)
MachineType: Hewlett-Packard HP xw8400 Workstation
OopsText:
 snd_au8820 :01:04.0: BUG: , pos = 16384, buffer size = 16384, period size 
= 1024
 snd_au8820 :01:04.0: BUG: , pos = 16384, buffer size = 16384, period size 
= 1024
ProcFB:
 
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-9-generic 
root=UUID=2160f8ed-4aa3-4243-b5d6-f87c1967e253 ro quiet splash
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: kerneloops-daemon 0.12+git20090217-3ubuntu9
RfKill:
 
SourcePackage: linux
Title: snd_au8820 :01:04.0: BUG: , pos = 16384, buffer size = 16384, period 
size = 1024
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/09/2009
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: 786D5 v02.37
dmi.board.name: 0A08h
dmi.board.vendor: Hewlett-Packard
dmi.board.version: NA
dmi.chassis.asset.tag: CZC722497N
dmi.chassis.type: 6
dmi.chassis.vendor: Hewlett-Packard
dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786D5v02.37:bd07/09/2009:svnHewlett-Packard:pnHPxw8400Workstation:pvr:rvnHewlett-Packard:rn0A08h:rvrNA:cvnHewlett-Packard:ct6:cvr:
dmi.product.name: HP xw8400 Workstation
dmi.sys.vendor: Hewlett-Packard

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: Confirmed


** Tags: apport-kerneloops i386 kernel-oops 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/1553191

Title:
  snd_au8820 :01:04.0: BUG: , pos = 16384, buffer size = 16384,
  period size = 1024

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  This occurred after upgrading to the following kernel

  $ uname -a
  Linux xenial32 4.4.0-9-generic #24-Ubuntu SMP Mon Feb 29 19:30:41 UTC 2016 
i686 i686 i686 GNU/Linux

  and it was triggered by starting a virtual machine with VirtualBox.

  ProblemType: KernelOops
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-9-generic 4.4.0-9.24
  ProcVersionSignature: Ubuntu 4.4.0-9.24-generic 4.4.3
  Uname: Linux 4.4.0-9-generic i686
  NonfreeKernelModules: nvidia
  Annotation: Your system might become unstable now and might need to be 
restarted.
  ApportVersion: 2.20-0ubuntu3
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  olle   2122 F pulseaudio
   /dev/snd/pcmC1D0c:   olle   2122 F...m pulseaudio
   /dev/snd/pcmC1D0p:   olle   2122 F...m pulseaudio
   /dev/snd/controlC1:  olle   2122 F pulseaudio
  Date: Fri Mar  4 14:21:48 2016
  Failure: oops
  HibernationDevice: RESUME=UUID=03bed9e9-e39b-4107-8cd6-c2612af9a6aa
  InstallationDate: Installed on 2016-02-28 (4 days ago)
  InstallationMedia: Lubuntu 16.04 LTS "Xenial Xerus" - Alpha i386 (20160226)
  MachineType: Hewlett-Packard HP xw8400 Workstation
  OopsText:
   snd_au8820 :01:04.0: BUG: , pos = 16384, buffer size = 16384, period 
size = 1024
   snd_au8820 :01:04.0: BUG: , pos = 16384, buffer size = 16384, period 
size = 1024
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-9-generic 
root=UUID=2160f8ed-4aa3-4243-b5d6-f87c1967e253 ro quiet splash
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: kerneloops-daemon 0.12+git20090217-3ubuntu9
  RfKill:
   
  SourcePackage: linux
  Title: snd_au8820 :01:04.0: BUG: , pos = 16384, buffer size = 16384, 
period size = 1024
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/09/2009
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 786D5 v02.37
  dmi.board.name: 0A08h
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: NA
  dmi.chassis.asset.tag: CZC722497N
  dm

[Kernel-packages] [Bug 1551870] [NEW] snd_au8820 0000:01:04.0: BUG: , pos = 16386, buffer size = 16384, period size = 1024

2016-03-01 Thread sudodus
Public bug reported:

Occurred right after login, several very similar bug alerts happened,
this report is about one of them.

pos = 16384
pos = 16386
pos = 16388
...

ProblemType: KernelOops
DistroRelease: Ubuntu 16.04
Package: linux-image-4.4.0-8-generic 4.4.0-8.23
ProcVersionSignature: Ubuntu 4.4.0-8.23-generic 4.4.2
Uname: Linux 4.4.0-8-generic i686
NonfreeKernelModules: nvidia
Annotation: Your system might become unstable now and might need to be 
restarted.
ApportVersion: 2.20-0ubuntu3
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  olle   2146 F pulseaudio
 /dev/snd/controlC1:  olle   2146 F pulseaudio
Date: Tue Mar  1 09:44:40 2016
Failure: oops
HibernationDevice: RESUME=UUID=03bed9e9-e39b-4107-8cd6-c2612af9a6aa
InstallationDate: Installed on 2016-02-28 (1 days ago)
InstallationMedia: Lubuntu 16.04 LTS "Xenial Xerus" - Alpha i386 (20160226)
MachineType: Hewlett-Packard HP xw8400 Workstation
OopsText:
 snd_au8820 :01:04.0: BUG: , pos = 16386, buffer size = 16384, period size 
= 1024
 VBoxNetFlt: attached to 'enp31s0' / 00:1a:4b:54:34:1c
 device enp31s0 entered promiscuous mode
ProcFB:
 
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-8-generic 
root=UUID=2160f8ed-4aa3-4243-b5d6-f87c1967e253 ro quiet splash
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: kerneloops-daemon 0.12+git20090217-3ubuntu9
RfKill:
 
SourcePackage: linux
Title: snd_au8820 :01:04.0: BUG: , pos = 16386, buffer size = 16384, period 
size = 1024
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/09/2009
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: 786D5 v02.37
dmi.board.name: 0A08h
dmi.board.vendor: Hewlett-Packard
dmi.board.version: NA
dmi.chassis.asset.tag: CZC722497N
dmi.chassis.type: 6
dmi.chassis.vendor: Hewlett-Packard
dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786D5v02.37:bd07/09/2009:svnHewlett-Packard:pnHPxw8400Workstation:pvr:rvnHewlett-Packard:rn0A08h:rvrNA:cvnHewlett-Packard:ct6:cvr:
dmi.product.name: HP xw8400 Workstation
dmi.sys.vendor: Hewlett-Packard

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-kerneloops i386 kernel-oops 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/1551870

Title:
  snd_au8820 :01:04.0: BUG: , pos = 16386, buffer size = 16384,
  period size = 1024

Status in linux package in Ubuntu:
  New

Bug description:
  Occurred right after login, several very similar bug alerts happened,
  this report is about one of them.

  pos = 16384
  pos = 16386
  pos = 16388
  ...

  ProblemType: KernelOops
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-8-generic 4.4.0-8.23
  ProcVersionSignature: Ubuntu 4.4.0-8.23-generic 4.4.2
  Uname: Linux 4.4.0-8-generic i686
  NonfreeKernelModules: nvidia
  Annotation: Your system might become unstable now and might need to be 
restarted.
  ApportVersion: 2.20-0ubuntu3
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  olle   2146 F pulseaudio
   /dev/snd/controlC1:  olle   2146 F pulseaudio
  Date: Tue Mar  1 09:44:40 2016
  Failure: oops
  HibernationDevice: RESUME=UUID=03bed9e9-e39b-4107-8cd6-c2612af9a6aa
  InstallationDate: Installed on 2016-02-28 (1 days ago)
  InstallationMedia: Lubuntu 16.04 LTS "Xenial Xerus" - Alpha i386 (20160226)
  MachineType: Hewlett-Packard HP xw8400 Workstation
  OopsText:
   snd_au8820 :01:04.0: BUG: , pos = 16386, buffer size = 16384, period 
size = 1024
   VBoxNetFlt: attached to 'enp31s0' / 00:1a:4b:54:34:1c
   device enp31s0 entered promiscuous mode
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-8-generic 
root=UUID=2160f8ed-4aa3-4243-b5d6-f87c1967e253 ro quiet splash
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: kerneloops-daemon 0.12+git20090217-3ubuntu9
  RfKill:
   
  SourcePackage: linux
  Title: snd_au8820 :01:04.0: BUG: , pos = 16386, buffer size = 16384, 
period size = 1024
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/09/2009
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 786D5 v02.37
  dmi.board.name: 0A08h
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: NA
  dmi.chassis.asset.tag: CZC722497N
  dmi.chassis.type: 6
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786D5v02.37:bd07/09/2009:svnHewlett-Packard:pnHPxw8400Workstation:pvr:rvnHewlett-Packard:rn0A08h:rvrNA:cvnHewlett-Packard:ct6:cvr:
  dmi.product.name: HP xw8400 Workstation
  dmi.sys.vendor: Hewlett-Packard

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source

[Kernel-packages] [Bug 1551607] [NEW] snd_au8820 0000:01:04.0: BUG: , pos = 16387, buffer size = 16384, period size = 1024

2016-03-01 Thread sudodus
Public bug reported:

This is similar to a bug report a few minutes ago. This time I could
start a virtual machine in VirtualBox - there is the prompt to a bug
report, but thing work anyway.

ProblemType: KernelOops
DistroRelease: Ubuntu 16.04
Package: linux-image-4.4.0-8-generic 4.4.0-8.23
ProcVersionSignature: Ubuntu 4.4.0-8.23-generic 4.4.2
Uname: Linux 4.4.0-8-generic i686
NonfreeKernelModules: nvidia
Annotation: Your system might become unstable now and might need to be 
restarted.
ApportVersion: 2.20-0ubuntu3
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/pcmC1D0c:   olle   2092 F...m pulseaudio
 /dev/snd/controlC1:  olle   2092 F pulseaudio
 /dev/snd/controlC0:  olle   2092 F pulseaudio
Date: Tue Mar  1 09:25:21 2016
Failure: oops
HibernationDevice: RESUME=UUID=03bed9e9-e39b-4107-8cd6-c2612af9a6aa
InstallationDate: Installed on 2016-02-28 (1 days ago)
InstallationMedia: Lubuntu 16.04 LTS "Xenial Xerus" - Alpha i386 (20160226)
MachineType: Hewlett-Packard HP xw8400 Workstation
ProcFB:
 
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-8-generic 
root=UUID=2160f8ed-4aa3-4243-b5d6-f87c1967e253 ro quiet splash
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: kerneloops-daemon 0.12+git20090217-3ubuntu9
RfKill:
 
SourcePackage: linux
Title: snd_au8820 :01:04.0: BUG: , pos = 16387, buffer size = 16384, period 
size = 1024
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/09/2009
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: 786D5 v02.37
dmi.board.name: 0A08h
dmi.board.vendor: Hewlett-Packard
dmi.board.version: NA
dmi.chassis.asset.tag: CZC722497N
dmi.chassis.type: 6
dmi.chassis.vendor: Hewlett-Packard
dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786D5v02.37:bd07/09/2009:svnHewlett-Packard:pnHPxw8400Workstation:pvr:rvnHewlett-Packard:rn0A08h:rvrNA:cvnHewlett-Packard:ct6:cvr:
dmi.product.name: HP xw8400 Workstation
dmi.sys.vendor: Hewlett-Packard

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: Confirmed


** Tags: apport-kerneloops i386 kernel-oops 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/1551607

Title:
  snd_au8820 :01:04.0: BUG: , pos = 16387, buffer size = 16384,
  period size = 1024

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  This is similar to a bug report a few minutes ago. This time I could
  start a virtual machine in VirtualBox - there is the prompt to a bug
  report, but thing work anyway.

  ProblemType: KernelOops
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-8-generic 4.4.0-8.23
  ProcVersionSignature: Ubuntu 4.4.0-8.23-generic 4.4.2
  Uname: Linux 4.4.0-8-generic i686
  NonfreeKernelModules: nvidia
  Annotation: Your system might become unstable now and might need to be 
restarted.
  ApportVersion: 2.20-0ubuntu3
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC1D0c:   olle   2092 F...m pulseaudio
   /dev/snd/controlC1:  olle   2092 F pulseaudio
   /dev/snd/controlC0:  olle   2092 F pulseaudio
  Date: Tue Mar  1 09:25:21 2016
  Failure: oops
  HibernationDevice: RESUME=UUID=03bed9e9-e39b-4107-8cd6-c2612af9a6aa
  InstallationDate: Installed on 2016-02-28 (1 days ago)
  InstallationMedia: Lubuntu 16.04 LTS "Xenial Xerus" - Alpha i386 (20160226)
  MachineType: Hewlett-Packard HP xw8400 Workstation
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-8-generic 
root=UUID=2160f8ed-4aa3-4243-b5d6-f87c1967e253 ro quiet splash
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: kerneloops-daemon 0.12+git20090217-3ubuntu9
  RfKill:
   
  SourcePackage: linux
  Title: snd_au8820 :01:04.0: BUG: , pos = 16387, buffer size = 16384, 
period size = 1024
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/09/2009
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 786D5 v02.37
  dmi.board.name: 0A08h
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: NA
  dmi.chassis.asset.tag: CZC722497N
  dmi.chassis.type: 6
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786D5v02.37:bd07/09/2009:svnHewlett-Packard:pnHPxw8400Workstation:pvr:rvnHewlett-Packard:rn0A08h:rvrNA:cvnHewlett-Packard:ct6:cvr:
  dmi.product.name: HP xw8400 Workstation
  dmi.sys.vendor: Hewlett-Packard

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1551607/+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.launc

[Kernel-packages] [Bug 1551602] [NEW] snd_au8820 0000:01:04.0: BUG: , pos = 16387, buffer size = 16384, period size = 1024

2016-03-01 Thread sudodus
Public bug reported:

This happened when I tried to run VirtualBox

ProblemType: KernelOops
DistroRelease: Ubuntu 16.04
Package: linux-image-4.4.0-8-generic 4.4.0-8.23
ProcVersionSignature: Ubuntu 4.4.0-8.23-generic 4.4.2
Uname: Linux 4.4.0-8-generic i686
NonfreeKernelModules: nvidia
Annotation: Your system might become unstable now and might need to be 
restarted.
ApportVersion: 2.20-0ubuntu3
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  olle   2092 F pulseaudio
 /dev/snd/controlC0:  olle   2092 F pulseaudio
Date: Tue Mar  1 09:18:14 2016
Failure: oops
HibernationDevice: RESUME=UUID=03bed9e9-e39b-4107-8cd6-c2612af9a6aa
InstallationDate: Installed on 2016-02-28 (1 days ago)
InstallationMedia: Lubuntu 16.04 LTS "Xenial Xerus" - Alpha i386 (20160226)
MachineType: Hewlett-Packard HP xw8400 Workstation
ProcFB:
 
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-8-generic 
root=UUID=2160f8ed-4aa3-4243-b5d6-f87c1967e253 ro quiet splash
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: kerneloops-daemon 0.12+git20090217-3ubuntu9
RfKill:
 
SourcePackage: linux
Title: snd_au8820 :01:04.0: BUG: , pos = 16387, buffer size = 16384, period 
size = 1024
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/09/2009
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: 786D5 v02.37
dmi.board.name: 0A08h
dmi.board.vendor: Hewlett-Packard
dmi.board.version: NA
dmi.chassis.asset.tag: CZC722497N
dmi.chassis.type: 6
dmi.chassis.vendor: Hewlett-Packard
dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786D5v02.37:bd07/09/2009:svnHewlett-Packard:pnHPxw8400Workstation:pvr:rvnHewlett-Packard:rn0A08h:rvrNA:cvnHewlett-Packard:ct6:cvr:
dmi.product.name: HP xw8400 Workstation
dmi.sys.vendor: Hewlett-Packard

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: Confirmed


** Tags: apport-kerneloops i386 kernel-oops 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/1551602

Title:
  snd_au8820 :01:04.0: BUG: , pos = 16387, buffer size = 16384,
  period size = 1024

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  This happened when I tried to run VirtualBox

  ProblemType: KernelOops
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-8-generic 4.4.0-8.23
  ProcVersionSignature: Ubuntu 4.4.0-8.23-generic 4.4.2
  Uname: Linux 4.4.0-8-generic i686
  NonfreeKernelModules: nvidia
  Annotation: Your system might become unstable now and might need to be 
restarted.
  ApportVersion: 2.20-0ubuntu3
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  olle   2092 F pulseaudio
   /dev/snd/controlC0:  olle   2092 F pulseaudio
  Date: Tue Mar  1 09:18:14 2016
  Failure: oops
  HibernationDevice: RESUME=UUID=03bed9e9-e39b-4107-8cd6-c2612af9a6aa
  InstallationDate: Installed on 2016-02-28 (1 days ago)
  InstallationMedia: Lubuntu 16.04 LTS "Xenial Xerus" - Alpha i386 (20160226)
  MachineType: Hewlett-Packard HP xw8400 Workstation
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-8-generic 
root=UUID=2160f8ed-4aa3-4243-b5d6-f87c1967e253 ro quiet splash
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: kerneloops-daemon 0.12+git20090217-3ubuntu9
  RfKill:
   
  SourcePackage: linux
  Title: snd_au8820 :01:04.0: BUG: , pos = 16387, buffer size = 16384, 
period size = 1024
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/09/2009
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 786D5 v02.37
  dmi.board.name: 0A08h
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: NA
  dmi.chassis.asset.tag: CZC722497N
  dmi.chassis.type: 6
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786D5v02.37:bd07/09/2009:svnHewlett-Packard:pnHPxw8400Workstation:pvr:rvnHewlett-Packard:rn0A08h:rvrNA:cvnHewlett-Packard:ct6:cvr:
  dmi.product.name: HP xw8400 Workstation
  dmi.sys.vendor: Hewlett-Packard

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1551602/+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 1551041] [NEW] snd_au8820 0000:01:04.0: BUG: , pos = 16386, buffer size = 16384, period size = 1024

2016-02-28 Thread sudodus
Public bug reported:

Kernel oops in a new installed system, that I configuring ...

ProblemType: KernelOops
DistroRelease: Ubuntu 16.04
Package: linux-image-4.4.0-8-generic 4.4.0-8.23
ProcVersionSignature: Ubuntu 4.4.0-8.23-generic 4.4.2
Uname: Linux 4.4.0-8-generic i686
NonfreeKernelModules: nvidia
Annotation: Your system might become unstable now and might need to be 
restarted.
ApportVersion: 2.20-0ubuntu3
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  olle   1606 F pulseaudio
 /dev/snd/controlC0:  olle   1606 F pulseaudio
Date: Mon Feb 29 00:00:56 2016
Failure: oops
HibernationDevice: RESUME=UUID=03bed9e9-e39b-4107-8cd6-c2612af9a6aa
InstallationDate: Installed on 2016-02-28 (0 days ago)
InstallationMedia: Lubuntu 16.04 LTS "Xenial Xerus" - Alpha i386 (20160226)
IwConfig:
 enp31s0   no wireless extensions.
 
 lono wireless extensions.
MachineType: Hewlett-Packard HP xw8400 Workstation
ProcFB:
 
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-8-generic 
root=UUID=2160f8ed-4aa3-4243-b5d6-f87c1967e253 ro quiet splash
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: kerneloops-daemon 0.12+git20090217-3ubuntu9
RfKill:
 
SourcePackage: linux
Title: snd_au8820 :01:04.0: BUG: , pos = 16386, buffer size = 16384, period 
size = 1024
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/09/2009
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: 786D5 v02.37
dmi.board.name: 0A08h
dmi.board.vendor: Hewlett-Packard
dmi.board.version: NA
dmi.chassis.asset.tag: CZC722497N
dmi.chassis.type: 6
dmi.chassis.vendor: Hewlett-Packard
dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786D5v02.37:bd07/09/2009:svnHewlett-Packard:pnHPxw8400Workstation:pvr:rvnHewlett-Packard:rn0A08h:rvrNA:cvnHewlett-Packard:ct6:cvr:
dmi.product.name: HP xw8400 Workstation
dmi.sys.vendor: Hewlett-Packard

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: Confirmed


** Tags: apport-kerneloops i386 kernel-oops 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/1551041

Title:
  snd_au8820 :01:04.0: BUG: , pos = 16386, buffer size = 16384,
  period size = 1024

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Kernel oops in a new installed system, that I configuring ...

  ProblemType: KernelOops
  DistroRelease: Ubuntu 16.04
  Package: linux-image-4.4.0-8-generic 4.4.0-8.23
  ProcVersionSignature: Ubuntu 4.4.0-8.23-generic 4.4.2
  Uname: Linux 4.4.0-8-generic i686
  NonfreeKernelModules: nvidia
  Annotation: Your system might become unstable now and might need to be 
restarted.
  ApportVersion: 2.20-0ubuntu3
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  olle   1606 F pulseaudio
   /dev/snd/controlC0:  olle   1606 F pulseaudio
  Date: Mon Feb 29 00:00:56 2016
  Failure: oops
  HibernationDevice: RESUME=UUID=03bed9e9-e39b-4107-8cd6-c2612af9a6aa
  InstallationDate: Installed on 2016-02-28 (0 days ago)
  InstallationMedia: Lubuntu 16.04 LTS "Xenial Xerus" - Alpha i386 (20160226)
  IwConfig:
   enp31s0   no wireless extensions.
   
   lono wireless extensions.
  MachineType: Hewlett-Packard HP xw8400 Workstation
  ProcFB:
   
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-8-generic 
root=UUID=2160f8ed-4aa3-4243-b5d6-f87c1967e253 ro quiet splash
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: kerneloops-daemon 0.12+git20090217-3ubuntu9
  RfKill:
   
  SourcePackage: linux
  Title: snd_au8820 :01:04.0: BUG: , pos = 16386, buffer size = 16384, 
period size = 1024
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/09/2009
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 786D5 v02.37
  dmi.board.name: 0A08h
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: NA
  dmi.chassis.asset.tag: CZC722497N
  dmi.chassis.type: 6
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786D5v02.37:bd07/09/2009:svnHewlett-Packard:pnHPxw8400Workstation:pvr:rvnHewlett-Packard:rn0A08h:rvrNA:cvnHewlett-Packard:ct6:cvr:
  dmi.product.name: HP xw8400 Workstation
  dmi.sys.vendor: Hewlett-Packard

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1551041/+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 1422675] Re: No installable kernel was found in the defined APT sources

2015-02-22 Thread sudodus
** Description changed:

+ Edit:
+ 
+ This new syntax for boot options (alias this bug) affects also the
+ Ubuntu Server 14.04.2 LTS iso files. I tested the 32-bit version,
+ 
+ ubuntu-14.04.2-server-i386.iso
+ 
+ and it needed
+ 
+ ... forcepae -- forcepae
+ 
+ to work in my Thinkpad T42 with Pentium M.
+ 
+ Expect that there are other cases, where the boot option must be entered
+ twice!
+ 
+ I made the following wiki page to help users
+ 
+ https://help.ubuntu.com/community/BootOptions/before--after
+ _
+ 
  I tried to install from the Ubuntu Vivid 32-bit mini.iso into a computer
  with Pentium M
  
  http://www.cnet.com/laptops/lenovo-
  thinkpad-t42-2373/4507-3121_7-31155666.html
  
  and booted the installer with the forcepae boot option. This made the
  installer start and work until it should get the kernel. Then it stopped
  with the following message
  
  "No installable kernel was found in the defined APT sources ... Continue
  the installation without installing a kernel?"
  
  I checked if this is a PAE issue ... and yes, it is.
  
  Forcepae makes the installer work, but later on, during installation, it
  refuses to manage the [PAE] kernel. I tested, and it works in a computer
  with CPU with a built-in PAE flag. And the trusty mini.iso can install
  in the same computer with Pentium M, so this is a regression.
  
  At 'ctrl+alt+F4' it complains that the kernels found are not usable on
  486. But forcepae should allow it. And the same kernels work when
  installed with the corresponding daily Lubuntu Vivid desktop iso file.
  
  -o-
  
  This bug is reported from another computer, because I don't know how to
  report it from the mini.iso system. So you should disregard the
  collected data, that I might not be able to remove.
  
  ProblemType: Bug

-- 
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/1422675

Title:
  No installable kernel was found in the defined APT sources

Status in linux package in Ubuntu:
  Invalid

Bug description:
  Edit:

  This new syntax for boot options (alias this bug) affects also the
  Ubuntu Server 14.04.2 LTS iso files. I tested the 32-bit version,

  ubuntu-14.04.2-server-i386.iso

  and it needed

  ... forcepae -- forcepae

  to work in my Thinkpad T42 with Pentium M.

  Expect that there are other cases, where the boot option must be
  entered twice!

  I made the following wiki page to help users

  https://help.ubuntu.com/community/BootOptions/before--after
  _

  I tried to install from the Ubuntu Vivid 32-bit mini.iso into a
  computer with Pentium M

  http://www.cnet.com/laptops/lenovo-
  thinkpad-t42-2373/4507-3121_7-31155666.html

  and booted the installer with the forcepae boot option. This made the
  installer start and work until it should get the kernel. Then it
  stopped with the following message

  "No installable kernel was found in the defined APT sources ...
  Continue the installation without installing a kernel?"

  I checked if this is a PAE issue ... and yes, it is.

  Forcepae makes the installer work, but later on, during installation,
  it refuses to manage the [PAE] kernel. I tested, and it works in a
  computer with CPU with a built-in PAE flag. And the trusty mini.iso
  can install in the same computer with Pentium M, so this is a
  regression.

  At 'ctrl+alt+F4' it complains that the kernels found are not usable on
  486. But forcepae should allow it. And the same kernels work when
  installed with the corresponding daily Lubuntu Vivid desktop iso file.

  -o-

  This bug is reported from another computer, because I don't know how
  to report it from the mini.iso system. So you should disregard the
  collected data, that I might not be able to remove.

  ProblemType: Bug

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+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 1422675] Re: No installable kernel was found in the defined APT sources

2015-02-22 Thread sudodus
This new syntax for boot options (alias this bug) affects the Ubuntu
Server 14.04.2 LTS iso files. I tested the 32-bit version,

ubuntu-14.04.2-server-i386.iso

and it needed

... forcepae -- forcepae

to work in my Thinkpad T42 with Pentium M.

Expect that there are other cases, where the boot option must be entered
twice!

I made the following wiki page to help users

https://help.ubuntu.com/community/BootOptions/before--after

-- 
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/1422675

Title:
  No installable kernel was found in the defined APT sources

Status in linux package in Ubuntu:
  Invalid

Bug description:
  I tried to install from the Ubuntu Vivid 32-bit mini.iso into a
  computer with Pentium M

  http://www.cnet.com/laptops/lenovo-
  thinkpad-t42-2373/4507-3121_7-31155666.html

  and booted the installer with the forcepae boot option. This made the
  installer start and work until it should get the kernel. Then it
  stopped with the following message

  "No installable kernel was found in the defined APT sources ...
  Continue the installation without installing a kernel?"

  I checked if this is a PAE issue ... and yes, it is.

  Forcepae makes the installer work, but later on, during installation,
  it refuses to manage the [PAE] kernel. I tested, and it works in a
  computer with CPU with a built-in PAE flag. And the trusty mini.iso
  can install in the same computer with Pentium M, so this is a
  regression.

  At 'ctrl+alt+F4' it complains that the kernels found are not usable on
  486. But forcepae should allow it. And the same kernels work when
  installed with the corresponding daily Lubuntu Vivid desktop iso file.

  -o-

  This bug is reported from another computer, because I don't know how
  to report it from the mini.iso system. So you should disregard the
  collected data, that I might not be able to remove.

  ProblemType: Bug

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+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 1422675] Re: No installable kernel was found in the defined APT sources

2015-02-19 Thread sudodus
I tested Lubuntu trusty-alternate-i386.iso (14.04.2 LTS) in my IBM
Thinkpad T42 with Pentium M, and this bug is squashed here too with this
double boot option.

I clicked F6 and ESC to get to the boot line and changed the end of it
from

... quiet --

to

... quiet forcepae -- forcepae

But the other red bug (1417918) must be solved by other methods.

-o-

It is funny that the corresponding Lubuntu desktop installer works with
the single boot option

... quiet -- forcepae

-- 
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/1422675

Title:
  No installable kernel was found in the defined APT sources

Status in linux package in Ubuntu:
  Invalid

Bug description:
  I tried to install from the Ubuntu Vivid 32-bit mini.iso into a
  computer with Pentium M

  http://www.cnet.com/laptops/lenovo-
  thinkpad-t42-2373/4507-3121_7-31155666.html

  and booted the installer with the forcepae boot option. This made the
  installer start and work until it should get the kernel. Then it
  stopped with the following message

  "No installable kernel was found in the defined APT sources ...
  Continue the installation without installing a kernel?"

  I checked if this is a PAE issue ... and yes, it is.

  Forcepae makes the installer work, but later on, during installation,
  it refuses to manage the [PAE] kernel. I tested, and it works in a
  computer with CPU with a built-in PAE flag. And the trusty mini.iso
  can install in the same computer with Pentium M, so this is a
  regression.

  At 'ctrl+alt+F4' it complains that the kernels found are not usable on
  486. But forcepae should allow it. And the same kernels work when
  installed with the corresponding daily Lubuntu Vivid desktop iso file.

  -o-

  This bug is reported from another computer, because I don't know how
  to report it from the mini.iso system. So you should disregard the
  collected data, that I might not be able to remove.

  ProblemType: Bug

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+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 1422675] Re: No installable kernel was found in the defined APT sources

2015-02-19 Thread sudodus
I tested the Ubuntu Vivid daily 32-bit mini.iso (dated feb 9) in my IBM
Thinkpad T42 with Pentium M, and it works for me too with this double
boot option.

I clicked tab to get to the boot line.

I edited the boot line from

> linux vga=788 initrd=initrd.gz -- quiet

to

> linux vga=788 initrd=initrd.gz forcepae -- quiet forcepae

and the installation of a minimal text system worked for me.

Thank you very much for helping us to solve this problem, Chris :-)

-o-

Is this new usage of boot options general?

1. The entry before -- means that it will be used by the live system /
the installer

2. The entry after -- means that it will be carried to and used by the
installed system

-- 
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/1422675

Title:
  No installable kernel was found in the defined APT sources

Status in linux package in Ubuntu:
  Invalid

Bug description:
  I tried to install from the Ubuntu Vivid 32-bit mini.iso into a
  computer with Pentium M

  http://www.cnet.com/laptops/lenovo-
  thinkpad-t42-2373/4507-3121_7-31155666.html

  and booted the installer with the forcepae boot option. This made the
  installer start and work until it should get the kernel. Then it
  stopped with the following message

  "No installable kernel was found in the defined APT sources ...
  Continue the installation without installing a kernel?"

  I checked if this is a PAE issue ... and yes, it is.

  Forcepae makes the installer work, but later on, during installation,
  it refuses to manage the [PAE] kernel. I tested, and it works in a
  computer with CPU with a built-in PAE flag. And the trusty mini.iso
  can install in the same computer with Pentium M, so this is a
  regression.

  At 'ctrl+alt+F4' it complains that the kernels found are not usable on
  486. But forcepae should allow it. And the same kernels work when
  installed with the corresponding daily Lubuntu Vivid desktop iso file.

  -o-

  This bug is reported from another computer, because I don't know how
  to report it from the mini.iso system. So you should disregard the
  collected data, that I might not be able to remove.

  ProblemType: Bug

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+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 1422675] Re: No installable kernel was found in the defined APT sources

2015-02-18 Thread sudodus
I try to make it clear what works and what does not work with Pentium M and 
Celeron M processors that have PAE capability but lack the PAE flag.
_

These iso files work:

Ubuntu Trusty mini.iso (dated jan 30)
http://archive.ubuntu.com/ubuntu/dists/trusty-updates/main/installer-i386/current/images/netboot/mini.iso
http://archive.ubuntu.com/ubuntu/dists/trusty-updates/main/installer-i386/current/images/utopic-netboot/mini.iso

Lubuntu trusty-desktop-i386.iso (14.04.2 LTS release candidate dated feb 18 
01:08)
__

These iso files do not work:

Ubuntu Vivid mini.iso (dated feb 9)
http://archive.ubuntu.com/ubuntu/dists/vivid/main/installer-i386/20101020ubuntu363/images/netboot/mini.iso

Lubuntu trusty-alternate-i386.iso (14.04.2 LTS release candidate dated
feb 18 00:41)

-- 
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/1422675

Title:
  No installable kernel was found in the defined APT sources

Status in linux package in Ubuntu:
  Invalid

Bug description:
  I tried to install from the Ubuntu Vivid 32-bit mini.iso into a
  computer with Pentium M

  http://www.cnet.com/laptops/lenovo-
  thinkpad-t42-2373/4507-3121_7-31155666.html

  and booted the installer with the forcepae boot option. This made the
  installer start and work until it should get the kernel. Then it
  stopped with the following message

  "No installable kernel was found in the defined APT sources ...
  Continue the installation without installing a kernel?"

  I checked if this is a PAE issue ... and yes, it is.

  Forcepae makes the installer work, but later on, during installation,
  it refuses to manage the [PAE] kernel. I tested, and it works in a
  computer with CPU with a built-in PAE flag. And the trusty mini.iso
  can install in the same computer with Pentium M, so this is a
  regression.

  At 'ctrl+alt+F4' it complains that the kernels found are not usable on
  486. But forcepae should allow it. And the same kernels work when
  installed with the corresponding daily Lubuntu Vivid desktop iso file.

  -o-

  This bug is reported from another computer, because I don't know how
  to report it from the mini.iso system. So you should disregard the
  collected data, that I might not be able to remove.

  ProblemType: Bug

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+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 1422675] Re: No installable kernel was found in the defined APT sources

2015-02-17 Thread sudodus
I tried: Neither apport-collect nor apt-get are available in the
alternate installer, so I can't run it and I don't know how to install
it.

-- 
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/1422675

Title:
  No installable kernel was found in the defined APT sources

Status in linux package in Ubuntu:
  Invalid

Bug description:
  I tried to install from the Ubuntu Vivid 32-bit mini.iso into a
  computer with Pentium M

  http://www.cnet.com/laptops/lenovo-
  thinkpad-t42-2373/4507-3121_7-31155666.html

  and booted the installer with the forcepae boot option. This made the
  installer start and work until it should get the kernel. Then it
  stopped with the following message

  "No installable kernel was found in the defined APT sources ...
  Continue the installation without installing a kernel?"

  I checked if this is a PAE issue ... and yes, it is.

  Forcepae makes the installer work, but later on, during installation,
  it refuses to manage the [PAE] kernel. I tested, and it works in a
  computer with CPU with a built-in PAE flag. And the trusty mini.iso
  can install in the same computer with Pentium M, so this is a
  regression.

  At 'ctrl+alt+F4' it complains that the kernels found are not usable on
  486. But forcepae should allow it. And the same kernels work when
  installed with the corresponding daily Lubuntu Vivid desktop iso file.

  -o-

  This bug is reported from another computer, because I don't know how
  to report it from the mini.iso system. So you should disregard the
  collected data, that I might not be able to remove.

  ProblemType: Bug

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+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 1422675] Re: No installable kernel was found in the defined APT sources

2015-02-17 Thread sudodus
Someone managed to make you add the boot option forcepae, and it has
been used successfully until now.

Please fix what is probably a minor bug, to keep 14.04.x available for
computers with Pentium M and Celeron M processors !

-- 
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/1422675

Title:
  No installable kernel was found in the defined APT sources

Status in linux package in Ubuntu:
  Invalid

Bug description:
  I tried to install from the Ubuntu Vivid 32-bit mini.iso into a
  computer with Pentium M

  http://www.cnet.com/laptops/lenovo-
  thinkpad-t42-2373/4507-3121_7-31155666.html

  and booted the installer with the forcepae boot option. This made the
  installer start and work until it should get the kernel. Then it
  stopped with the following message

  "No installable kernel was found in the defined APT sources ...
  Continue the installation without installing a kernel?"

  I checked if this is a PAE issue ... and yes, it is.

  Forcepae makes the installer work, but later on, during installation,
  it refuses to manage the [PAE] kernel. I tested, and it works in a
  computer with CPU with a built-in PAE flag. And the trusty mini.iso
  can install in the same computer with Pentium M, so this is a
  regression.

  At 'ctrl+alt+F4' it complains that the kernels found are not usable on
  486. But forcepae should allow it. And the same kernels work when
  installed with the corresponding daily Lubuntu Vivid desktop iso file.

  -o-

  This bug is reported from another computer, because I don't know how
  to report it from the mini.iso system. So you should disregard the
  collected data, that I might not be able to remove.

  ProblemType: Bug

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+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 1422675] Re: No installable kernel was found in the defined APT sources

2015-02-17 Thread sudodus
This same problem occurs during iso-testing for the point version
14.04.2 LTS

lubuntu-trusty-alternate-i386.iso

-- 
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/1422675

Title:
  No installable kernel was found in the defined APT sources

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I tried to install from the Ubuntu Vivid 32-bit mini.iso into a
  computer with Pentium M

  http://www.cnet.com/laptops/lenovo-
  thinkpad-t42-2373/4507-3121_7-31155666.html

  and booted the installer with the forcepae boot option. This made the
  installer start and work until it should get the kernel. Then it
  stopped with the following message

  "No installable kernel was found in the defined APT sources ...
  Continue the installation without installing a kernel?"

  I checked if this is a PAE issue ... and yes, it is.

  Forcepae makes the installer work, but later on, during installation,
  it refuses to manage the [PAE] kernel. I tested, and it works in a
  computer with CPU with a built-in PAE flag. And the trusty mini.iso
  can install in the same computer with Pentium M, so this is a
  regression.

  At 'ctrl+alt+F4' it complains that the kernels found are not usable on
  486. But forcepae should allow it. And the same kernels work when
  installed with the corresponding daily Lubuntu Vivid desktop iso file.

  -o-

  This bug is reported from another computer, because I don't know how
  to report it from the mini.iso system. So you should disregard the
  collected data, that I might not be able to remove.

  ProblemType: Bug

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+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 1422675] Re: No installable kernel was found in the defined APT sources

2015-02-17 Thread sudodus
Sorry,

apport-collect 1422675

does not work in the mini.iso system :-(

** 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/1422675

Title:
  No installable kernel was found in the defined APT sources

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I tried to install from the Ubuntu Vivid 32-bit mini.iso into a
  computer with Pentium M

  http://www.cnet.com/laptops/lenovo-
  thinkpad-t42-2373/4507-3121_7-31155666.html

  and booted the installer with the forcepae boot option. This made the
  installer start and work until it should get the kernel. Then it
  stopped with the following message

  "No installable kernel was found in the defined APT sources ...
  Continue the installation without installing a kernel?"

  I checked if this is a PAE issue ... and yes, it is.

  Forcepae makes the installer work, but later on, during installation,
  it refuses to manage the [PAE] kernel. I tested, and it works in a
  computer with CPU with a built-in PAE flag. And the trusty mini.iso
  can install in the same computer with Pentium M, so this is a
  regression.

  At 'ctrl+alt+F4' it complains that the kernels found are not usable on
  486. But forcepae should allow it. And the same kernels work when
  installed with the corresponding daily Lubuntu Vivid desktop iso file.

  -o-

  This bug is reported from another computer, because I don't know how
  to report it from the mini.iso system. So you should disregard the
  collected data, that I might not be able to remove.

  ProblemType: Bug

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+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 1422675] [NEW] No installable kernel was found in the defined APT sources

2015-02-17 Thread sudodus
Public bug reported:

I tried to install from the Ubuntu Vivid 32-bit mini.iso into a computer
with Pentium M

http://www.cnet.com/laptops/lenovo-
thinkpad-t42-2373/4507-3121_7-31155666.html

and booted the installer with the forcepae boot option. This made the
installer start and work until it should get the kernel. Then it stopped
with the following message

"No installable kernel was found in the defined APT sources ... Continue
the installation without installing a kernel?"

I checked if this is a PAE issue ... and yes, it is.

Forcepae makes the installer work, but later on, during installation, it
refuses to manage the [PAE] kernel. I tested, and it works in a computer
with CPU with a built-in PAE flag. And the trusty mini.iso can install
in the same computer with Pentium M, so this is a regression.

At 'ctrl+alt+F4' it complains that the kernels found are not usable on
486. But forcepae should allow it. And the same kernels work when
installed with the corresponding daily Lubuntu Vivid desktop iso file.

-o-

This bug is reported from another computer, because I don't know how to
report it from the mini.iso system. So you should disregard the
collected data, that I might not be able to remove.

ProblemType: Bug

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 precise

** Attachment removed: "AcpiTables.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+attachment/4320891/+files/AcpiTables.txt

** Attachment removed: "AlsaDevices.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+attachment/4320892/+files/AlsaDevices.txt

** Attachment removed: "AplayDevices.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+attachment/4320893/+files/AplayDevices.txt

** Attachment removed: "ArecordDevices.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+attachment/4320894/+files/ArecordDevices.txt

** Attachment removed: "BootDmesg.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+attachment/4320895/+files/BootDmesg.txt

** Attachment removed: "Card0.Amixer.values.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+attachment/4320896/+files/Card0.Amixer.values.txt

** Attachment removed: "Card0.Codecs.codec97.0.ac97.0.0.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+attachment/4320897/+files/Card0.Codecs.codec97.0.ac97.0.0.txt

** Attachment removed: "Card0.Codecs.codec97.0.ac97.0.0.regs.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+attachment/4320898/+files/Card0.Codecs.codec97.0.ac97.0.0.regs.txt

** Attachment removed: "Card1.Amixer.values.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+attachment/4320899/+files/Card1.Amixer.values.txt

** Attachment removed: "Card1.Codecs.codec.0.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+attachment/4320900/+files/Card1.Codecs.codec.0.txt

** Attachment removed: "Card1.Codecs.codec.1.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+attachment/4320901/+files/Card1.Codecs.codec.1.txt

** Attachment removed: "Card1.Codecs.codec.2.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+attachment/4320902/+files/Card1.Codecs.codec.2.txt

** Attachment removed: "Card1.Codecs.codec.3.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+attachment/4320903/+files/Card1.Codecs.codec.3.txt

** Attachment removed: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+attachment/4320904/+files/CurrentDmesg.txt

** Attachment removed: "Dependencies.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+attachment/4320905/+files/Dependencies.txt

** Attachment removed: "Lspci.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+attachment/4320906/+files/Lspci.txt

** Attachment removed: "Lsusb.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+attachment/4320907/+files/Lsusb.txt

** Attachment removed: "PciMultimedia.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+attachment/4320908/+files/PciMultimedia.txt

** Attachment removed: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+attachment/4320909/+files/ProcCpuinfo.txt

** Attachment removed: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+attachment/4320910/+files/ProcInterrupts.txt

** Attachment removed: "ProcModules.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+attachment/4320911/+files/ProcModules.txt

** Attachment removed: "PulseList.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+attachment/4320912/+files/PulseList.txt

** Attachment removed: "UdevDb.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1422675/+attachment/4320913/+files/UdevDb.txt

** Attachment removed: "Ude

[Kernel-packages] [Bug 930447] Re: Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M x86 Laptop due to bug in PAE kernel, initramfs or syslinux

2014-06-01 Thread sudodus
Sorry for the confusion,

*I asked*

> I have a couple of questions about your Sony Vaio with Pentium M:
>
> What happens when you try to boot a PAE kernel with forcepae? Do you get
> an error message? Black screen?
>
> Are you sure it is not 'only' a problem with some other hardware, for
> example graphics or wifi? You could try to boot with the boot option
> 'text' and switch off the wifi if possible.

*The owner replied*

>   Most of my 'nonpae' observations have come inside VirtualBox where I
>   noticed the 'pae/nx' checkbox is greyed out and every distro. I try that
>   is pae only, informs me that I have a cpu that doesn't support the pae
>   option.  Trying 'forcepae' using a recent kernel eventually ended with a
>   blank black screen.
>
>   I tried to use a Gparted live CD recently and that gave me a similar
>   message when it attempted to boot.
>
>   Yesterday I squeezed some unused space out of my HDD using Gparted and
>   created an empty new extra linux partition (about 9 GiB) and I'll try a
>   'real metal' install of a pae kernel sometime later today.

*I replied*

> You can test that it is not problems with the graphics chip using the
> boot options 'forcepae text' in a 'standard Lubuntu 14.04 LTS installer'.

*And the owner solved the problem*

You were quite correct to keep asking questions.

Using the 'forcepae' parameter I have now successfully installed Lubuntu
14.04 on 'baremetal'.

I'm happy with that as you can imagine.  There are many ways that I tried 
before that failed but
obviously there is nothing that replaces a 'baremetal' install.  My first clue 
that it may work was
when I used 'forcepae' to boot from the LiveCD that I made and that worked.

Apologies for causing you extra work and innocently misleading your research.  
All's well that
ends well, as the saying goes.

-- 
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/930447

Title:
  Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M
  x86 Laptop due to bug in PAE kernel, initramfs or syslinux

Status in “linux” package in Ubuntu:
  Fix Released
Status in “syslinux” package in Ubuntu:
  Invalid
Status in Baltix GNU/Linux:
  Triaged

Bug description:
  Ubuntu 12.04 doesn't start from Desktop CD or USB with syslinux boot
  loader on Pentium M 1.6Ghz or faster Pentium M CPU - displays error
  message about missing PAE feature in CPU, but *the same* *Ubuntu
  12.04* Desktop CD/LiveUSB starts fine on *the same CPU* (and same PAE
  kernel) if GRUB boot loader is used, for example when WUBI or LiveUSB
  with GRUB boot loader, like Multisystem
  (http://liveusb.info/dotclear/index.php?pages/install ) is used!

  The error message is:
  "This kernel requires the following features not present on the CPU: pae.
  Unable to boot - please use a kernel appropriate for you CPU."

  THIS IS AN IMPORTANT REGRESSION! People are able to install and successfully 
use Ubuntu 12.04 on such pretty new hardware, like IBM Thinkpad T42 laptop with 
Pentium M 1700Mhz processor, but the bug in syslinux (or something related) 
forbids Ubuntu 12.04 installation.
  This bug is reproducible on lots of computers, there are several log files 
and /proc/cpuinfo file attached to this bugreport, AFAIK it's enough to reopen 
this bug.

  ---
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  CurrentDmesg: Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order 
/var/log/dmesg -'] failed with exit code 1: comm: /var/log/dmesg: Permission 
denied
  MachineType: IBM 2373PPU
  dmi.bios.date: 06/18/2007
  dmi.bios.vendor: IBM
  dmi.bios.version: 1RETDRWW (3.23 )
  dmi.board.name: 2373PPU
  dmi.board.vendor: IBM
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: IBM
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnIBM:bvr1RETDRWW(3.23):bd06/18/2007:svnIBM:pn2373PPU:pvrThinkPadT42:rvnIBM:rn2373PPU:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
  dmi.product.name: 2373PPU
  dmi.product.version: ThinkPad T42
  dmi.sys.vendor: IBM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/930447/+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 930447] Re: Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M x86 Laptop due to bug in PAE kernel, initramfs or syslinux

2014-05-31 Thread sudodus
Hi Chris,

1. It is not my computer. I have one with a very similar Pentium M CPU
which works with forcepae. I have asked the same questions but not yet
received a full answer from the owner. I will ask again ...

2. Thanks for finding the difference between the cpuid flags "a7e9fbbf"
and "afe9fbbf" (a7,af). The wiki page is corrected now.

3. In post #279 you told us about Will Haley's instructions to make a
syslinux system. Starting from those instructions I made a system that
can install an Ubuntu minimal text screen system with a non-pae kernel
compiled by Phill Whiteside. This is described in the following link

https://help.ubuntu.com/community/9w

It is very easy to expand that minimal Ubuntu system into Lubuntu or
Xubuntu (or an Ubuntu Server).

If I understand it correctly, Phill intends to maintain the non-pae
kernel. Anyway, thanks for the tips about making and keeping a non-pae
kernel up to date :-)

-- 
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/930447

Title:
  Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M
  x86 Laptop due to bug in PAE kernel, initramfs or syslinux

Status in “linux” package in Ubuntu:
  Fix Released
Status in “syslinux” package in Ubuntu:
  Invalid
Status in Baltix GNU/Linux:
  Triaged

Bug description:
  Ubuntu 12.04 doesn't start from Desktop CD or USB with syslinux boot
  loader on Pentium M 1.6Ghz or faster Pentium M CPU - displays error
  message about missing PAE feature in CPU, but *the same* *Ubuntu
  12.04* Desktop CD/LiveUSB starts fine on *the same CPU* (and same PAE
  kernel) if GRUB boot loader is used, for example when WUBI or LiveUSB
  with GRUB boot loader, like Multisystem
  (http://liveusb.info/dotclear/index.php?pages/install ) is used!

  The error message is:
  "This kernel requires the following features not present on the CPU: pae.
  Unable to boot - please use a kernel appropriate for you CPU."

  THIS IS AN IMPORTANT REGRESSION! People are able to install and successfully 
use Ubuntu 12.04 on such pretty new hardware, like IBM Thinkpad T42 laptop with 
Pentium M 1700Mhz processor, but the bug in syslinux (or something related) 
forbids Ubuntu 12.04 installation.
  This bug is reproducible on lots of computers, there are several log files 
and /proc/cpuinfo file attached to this bugreport, AFAIK it's enough to reopen 
this bug.

  ---
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  CurrentDmesg: Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order 
/var/log/dmesg -'] failed with exit code 1: comm: /var/log/dmesg: Permission 
denied
  MachineType: IBM 2373PPU
  dmi.bios.date: 06/18/2007
  dmi.bios.vendor: IBM
  dmi.bios.version: 1RETDRWW (3.23 )
  dmi.board.name: 2373PPU
  dmi.board.vendor: IBM
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: IBM
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnIBM:bvr1RETDRWW(3.23):bd06/18/2007:svnIBM:pn2373PPU:pvrThinkPadT42:rvnIBM:rn2373PPU:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
  dmi.product.name: 2373PPU
  dmi.product.version: ThinkPad T42
  dmi.sys.vendor: IBM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/930447/+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 930447] Re: Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M x86 Laptop due to bug in PAE kernel, initramfs or syslinux

2014-05-31 Thread sudodus
The vast majority of Pentium M and Celeron M CPUs are suitable for
fakepae or forcepae and can work with PAE kernels. But some of these
processors need a non-pae kernel.

We found a Pentium M 1.70 GHz which does not work with forcepae. It
gives the following output from

cpuid|grep ^0001

0001 06d6 0816 0180 afe9fbbf

So I have updated the wiki page

https://help.ubuntu.com/community/Lubuntu-fake-PAE

See the details at

https://help.ubuntu.com/community/Lubuntu-fake-PAE#Test

Now I think there is even more reason to continue the work with a non-
pae kernel for Lubuntu and ToriOS. See this link

https://help.ubuntu.com/community/9w

-- 
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/930447

Title:
  Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M
  x86 Laptop due to bug in PAE kernel, initramfs or syslinux

Status in “linux” package in Ubuntu:
  Fix Released
Status in “syslinux” package in Ubuntu:
  Invalid
Status in Baltix GNU/Linux:
  Triaged

Bug description:
  Ubuntu 12.04 doesn't start from Desktop CD or USB with syslinux boot
  loader on Pentium M 1.6Ghz or faster Pentium M CPU - displays error
  message about missing PAE feature in CPU, but *the same* *Ubuntu
  12.04* Desktop CD/LiveUSB starts fine on *the same CPU* (and same PAE
  kernel) if GRUB boot loader is used, for example when WUBI or LiveUSB
  with GRUB boot loader, like Multisystem
  (http://liveusb.info/dotclear/index.php?pages/install ) is used!

  The error message is:
  "This kernel requires the following features not present on the CPU: pae.
  Unable to boot - please use a kernel appropriate for you CPU."

  THIS IS AN IMPORTANT REGRESSION! People are able to install and successfully 
use Ubuntu 12.04 on such pretty new hardware, like IBM Thinkpad T42 laptop with 
Pentium M 1700Mhz processor, but the bug in syslinux (or something related) 
forbids Ubuntu 12.04 installation.
  This bug is reproducible on lots of computers, there are several log files 
and /proc/cpuinfo file attached to this bugreport, AFAIK it's enough to reopen 
this bug.

  ---
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  CurrentDmesg: Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order 
/var/log/dmesg -'] failed with exit code 1: comm: /var/log/dmesg: Permission 
denied
  MachineType: IBM 2373PPU
  dmi.bios.date: 06/18/2007
  dmi.bios.vendor: IBM
  dmi.bios.version: 1RETDRWW (3.23 )
  dmi.board.name: 2373PPU
  dmi.board.vendor: IBM
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: IBM
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnIBM:bvr1RETDRWW(3.23):bd06/18/2007:svnIBM:pn2373PPU:pvrThinkPadT42:rvnIBM:rn2373PPU:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
  dmi.product.name: 2373PPU
  dmi.product.version: ThinkPad T42
  dmi.sys.vendor: IBM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/930447/+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 1307105] Re: Kernel install fails due PAE checks

2014-04-18 Thread sudodus
Yes, it would be nice for the user to not have to bother with forcepae
to run computers with Pentium M and Celeron M CPUs.

But I think this is a great improvement. Forcepae (used according to
Colin Watson's advice in post #8) makes it much easier to use Ubuntu
flavours in version 14.04 LTS compared to the previous releases. This
advice is made clear in the following link

https://help.ubuntu.com/community/PAE

-- 
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/1307105

Title:
  Kernel install fails due PAE checks

Status in “linux” package in Ubuntu:
  Triaged

Bug description:
  [TRIAGE NOTE]
  When a user boots Ubuntu Live/Install media with 'forcepae' option, the 
option should automatically be added to /etc/default/grub, or kernel upgrades 
will refuse to install when they do not see pae capability in cpuinfo.

  [ORIGINAL REPORT]
  On Thinkpad T42 with Pentium M processor linux image upgrade fails with 
message "This kernel does not support a non-PAE CPU.". System was installed 
from  ubuntu-14.04-beta2-desktop-i386.iso with "forcepae" kernel option. After 
install, system works, but cannot be upgraded to laters kernel.

  root@t42:/boot# apt-get upgrade
  Reading package lists... Done
  Building dependency tree
  Reading state information... Done
  You might want to run 'apt-get -f install' to correct these.
  The following packages have unmet dependencies:
   linux-image-extra-3.13.0-24-generic : Depends: 
linux-image-3.13.0-24-generic but it is not installed
   linux-image-generic : Depends: linux-image-3.13.0-24-generic but it is 
not installed
  E: Unmet dependencies. Try using -f.

  root@t42:/boot# apt-get install -f
  Reading package lists... Done
  Building dependency tree
  Reading state information... Done
  Correcting dependencies... Done
  The following extra packages will be installed:
    linux-image-3.13.0-24-generic
  Suggested packages:
    fdutils linux-doc-3.13.0 linux-source-3.13.0 linux-tools
  The following NEW packages will be installed:
    linux-image-3.13.0-24-generic
  0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
  3 not fully installed or removed.
  Need to get 0 B/14.6 MB of archives.
  After this operation, 32.3 MB of additional disk space will be used.
  Do you want to continue? [Y/n]
  (Reading database ... 196089 files and directories currently installed.)
  Preparing to unpack 
.../linux-image-3.13.0-24-generic_3.13.0-24.46_i386.deb ...
  This kernel does not support a non-PAE CPU.
  dpkg: error processing archive 
/var/cache/apt/archives/linux-image-3.13.0-24-generic_3.13.0-24.46_i386.deb 
(--unpack):
   subprocess new pre-installation script returned error exit status 1
  Examining /etc/kernel/postrm.d .
  run-parts: executing /etc/kernel/postrm.d/initramfs-tools 
3.13.0-24-generic /boot/vmlinuz-3.13.0-24-generic
  run-parts: executing /etc/kernel/postrm.d/zz-update-grub 
3.13.0-24-generic /boot/vmlinuz-3.13.0-24-generic
  Errors were encountered while processing:
   
/var/cache/apt/archives/linux-image-3.13.0-24-generic_3.13.0-24.46_i386.deb
  E: Sub-process /usr/bin/dpkg returned an error code (1)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1307105/+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 1307105] Re: Kernel install fails due PAE checks

2014-04-16 Thread sudodus
I can confirm that Colin Watson's advice in post #8 works.

-- 
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/1307105

Title:
  Kernel install fails due PAE checks

Status in “linux” package in Ubuntu:
  Triaged

Bug description:
  [TRIAGE NOTE]
  When a user boots Ubuntu Live/Install media with 'forcepae' option, the 
option should automatically be added to /etc/default/grub, or kernel upgrades 
will refuse to install when they do not see pae capability in cpuinfo.

  [ORIGINAL REPORT]
  On Thinkpad T42 with Pentium M processor linux image upgrade fails with 
message "This kernel does not support a non-PAE CPU.". System was installed 
from  ubuntu-14.04-beta2-desktop-i386.iso with "forcepae" kernel option. After 
install, system works, but cannot be upgraded to laters kernel.

  root@t42:/boot# apt-get upgrade
  Reading package lists... Done
  Building dependency tree
  Reading state information... Done
  You might want to run 'apt-get -f install' to correct these.
  The following packages have unmet dependencies:
   linux-image-extra-3.13.0-24-generic : Depends: 
linux-image-3.13.0-24-generic but it is not installed
   linux-image-generic : Depends: linux-image-3.13.0-24-generic but it is 
not installed
  E: Unmet dependencies. Try using -f.

  root@t42:/boot# apt-get install -f
  Reading package lists... Done
  Building dependency tree
  Reading state information... Done
  Correcting dependencies... Done
  The following extra packages will be installed:
    linux-image-3.13.0-24-generic
  Suggested packages:
    fdutils linux-doc-3.13.0 linux-source-3.13.0 linux-tools
  The following NEW packages will be installed:
    linux-image-3.13.0-24-generic
  0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
  3 not fully installed or removed.
  Need to get 0 B/14.6 MB of archives.
  After this operation, 32.3 MB of additional disk space will be used.
  Do you want to continue? [Y/n]
  (Reading database ... 196089 files and directories currently installed.)
  Preparing to unpack 
.../linux-image-3.13.0-24-generic_3.13.0-24.46_i386.deb ...
  This kernel does not support a non-PAE CPU.
  dpkg: error processing archive 
/var/cache/apt/archives/linux-image-3.13.0-24-generic_3.13.0-24.46_i386.deb 
(--unpack):
   subprocess new pre-installation script returned error exit status 1
  Examining /etc/kernel/postrm.d .
  run-parts: executing /etc/kernel/postrm.d/initramfs-tools 
3.13.0-24-generic /boot/vmlinuz-3.13.0-24-generic
  run-parts: executing /etc/kernel/postrm.d/zz-update-grub 
3.13.0-24-generic /boot/vmlinuz-3.13.0-24-generic
  Errors were encountered while processing:
   
/var/cache/apt/archives/linux-image-3.13.0-24-generic_3.13.0-24.46_i386.deb
  E: Sub-process /usr/bin/dpkg returned an error code (1)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1307105/+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 1307105] Re: Kernel install fails due PAE checks

2014-04-16 Thread sudodus
This is new and positive information :-)

I did not know the function of -- and I think many people need to be
informed about it.

-- 
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/1307105

Title:
  Kernel install fails due PAE checks

Status in “linux” package in Ubuntu:
  Triaged

Bug description:
  [TRIAGE NOTE]
  When a user boots Ubuntu Live/Install media with 'forcepae' option, the 
option should automatically be added to /etc/default/grub, or kernel upgrades 
will refuse to install when they do not see pae capability in cpuinfo.

  [ORIGINAL REPORT]
  On Thinkpad T42 with Pentium M processor linux image upgrade fails with 
message "This kernel does not support a non-PAE CPU.". System was installed 
from  ubuntu-14.04-beta2-desktop-i386.iso with "forcepae" kernel option. After 
install, system works, but cannot be upgraded to laters kernel.

  root@t42:/boot# apt-get upgrade
  Reading package lists... Done
  Building dependency tree
  Reading state information... Done
  You might want to run 'apt-get -f install' to correct these.
  The following packages have unmet dependencies:
   linux-image-extra-3.13.0-24-generic : Depends: 
linux-image-3.13.0-24-generic but it is not installed
   linux-image-generic : Depends: linux-image-3.13.0-24-generic but it is 
not installed
  E: Unmet dependencies. Try using -f.

  root@t42:/boot# apt-get install -f
  Reading package lists... Done
  Building dependency tree
  Reading state information... Done
  Correcting dependencies... Done
  The following extra packages will be installed:
    linux-image-3.13.0-24-generic
  Suggested packages:
    fdutils linux-doc-3.13.0 linux-source-3.13.0 linux-tools
  The following NEW packages will be installed:
    linux-image-3.13.0-24-generic
  0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
  3 not fully installed or removed.
  Need to get 0 B/14.6 MB of archives.
  After this operation, 32.3 MB of additional disk space will be used.
  Do you want to continue? [Y/n]
  (Reading database ... 196089 files and directories currently installed.)
  Preparing to unpack 
.../linux-image-3.13.0-24-generic_3.13.0-24.46_i386.deb ...
  This kernel does not support a non-PAE CPU.
  dpkg: error processing archive 
/var/cache/apt/archives/linux-image-3.13.0-24-generic_3.13.0-24.46_i386.deb 
(--unpack):
   subprocess new pre-installation script returned error exit status 1
  Examining /etc/kernel/postrm.d .
  run-parts: executing /etc/kernel/postrm.d/initramfs-tools 
3.13.0-24-generic /boot/vmlinuz-3.13.0-24-generic
  run-parts: executing /etc/kernel/postrm.d/zz-update-grub 
3.13.0-24-generic /boot/vmlinuz-3.13.0-24-generic
  Errors were encountered while processing:
   
/var/cache/apt/archives/linux-image-3.13.0-24-generic_3.13.0-24.46_i386.deb
  E: Sub-process /usr/bin/dpkg returned an error code (1)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1307105/+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 1307862] Re: package linux-image-3.13.0-24-lowlatency (not installed) failed to install/upgrade: underprocessen nytt pre-installation-skript gav felkod 1 or 'Add forcepae into /

2014-04-15 Thread sudodus
*** This bug is a duplicate of bug 1307105 ***
https://bugs.launchpad.net/bugs/1307105

** This bug has been marked a duplicate of bug 1307105
   Kernel install fails due PAE checks

-- 
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/1307862

Title:
  package linux-image-3.13.0-24-lowlatency (not installed) failed to
  install/upgrade: underprocessen nytt pre-installation-skript gav
  felkod 1 or 'Add forcepae into /etc/default/grub when installing with
  forcepae'

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I installed Lubuntu with the boot option forcepae into a computer with
  Pentium M with PAE capability but without PAE flag. It worked. But the
  forcepae boot option was not automatically added in

  /etc/default/grub and from there into /boot/grub/grub.cfg

  so when I try to install another kernel (in this case the low latency
  kernel) it complains

  'This kernel does not support a non-PAE CPU'

  Please make the installer (or some other program part) add forcepae

  into /etc/default/grub and from there into /boot/grub/grub.cfg

  so that it will be possible to install and upgrade kernels.

  The *big* problem will arrive, when new kernel versions arrive, and
  the system wants to upgrade to them. And we can expect quite a lot of
  new users who come to Lubuntu and Xubuntu after the end of life of
  Windows XP. Let us save trouble for these new users by adding forcepae
  automatically to the installed system :-)

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: linux-image-3.13.0-24-lowlatency (not installed)
  ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
  Uname: Linux 3.13.0-24-generic i686
  ApportVersion: 2.14.1-0ubuntu2
  AptOrdering:
   linux-image-3.13.0-24-lowlatency: Install
   linux-image-lowlatency: Install
   linux-image-3.13.0-24-lowlatency: Configure
   linux-image-lowlatency: Configure
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  tester 3245 F lxpanel
  CRDA: Error: [Errno 2] Filen eller katalogen finns inte: 'iw'
  CurrentDmesg:
   [   46.738310] init: plymouth-upstart-bridge main process ended, respawning
   [  642.146638] audit_printk_skb: 75 callbacks suppressed
   [  642.146649] type=1400 audit(1397540923.389:68): apparmor="DENIED" 
operation="open" profile="/usr/bin/evince" 
name="/etc/xdg/lubuntu/applications/defaults.list" pid=3376 comm="evince" 
requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
  Date: Tue Apr 15 08:23:33 2014
  DpkgTerminalLog:
   Preparing to unpack 
.../linux-image-3.13.0-24-lowlatency_3.13.0-24.46_i386.deb ...
   This kernel does not support a non-PAE CPU.
   dpkg: error processing archive 
/var/cache/apt/archives/linux-image-3.13.0-24-lowlatency_3.13.0-24.46_i386.deb 
(--unpack):
underprocessen nytt pre-installation-skript gav felkod 1
  DuplicateSignature: package:linux-image-3.13.0-24-lowlatency:(not 
installed):underprocessen nytt pre-installation-skript gav felkod 1
  ErrorMessage: underprocessen nytt pre-installation-skript gav felkod 1
  HibernationDevice: RESUME=UUID=11c540f0-c335-47f5-bfd2-8af12b95c7a0
  InstallationDate: Installed on 2014-04-15 (0 days ago)
  InstallationMedia: Lubuntu 14.04 LTS "Trusty Tahr" - Release i386 (20140414)
  MachineType: IBM 23738TG
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-24-generic 
root=UUID=b36d9c1c-3fdf-413e-b3ce-4c2daa924820 ro quiet splash vt.handoff=7
  RelatedPackageVersions: grub-pc 2.02~beta2-9
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  Title: package linux-image-3.13.0-24-lowlatency (not installed) failed to 
install/upgrade: underprocessen nytt pre-installation-skript gav felkod 1
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 10/13/2005
  dmi.bios.vendor: IBM
  dmi.bios.version: 1RETDNWW (3.19 )
  dmi.board.name: 23738TG
  dmi.board.vendor: IBM
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: IBM
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnIBM:bvr1RETDNWW(3.19):bd10/13/2005:svnIBM:pn23738TG:pvrThinkPadT42:rvnIBM:rn23738TG:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
  dmi.product.name: 23738TG
  dmi.product.version: ThinkPad T42
  dmi.sys.vendor: IBM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1307862/+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 1307105] Re: Kernel install fails due PAE checks

2014-04-15 Thread sudodus
I was testing the Lubuntu Trusty desktop i386 final iso file and had the
message 'This kernel does not support a non-PAE CPU' when I tried to
install the low latency kernel.

Please make the installer (or some other program part) add forcepae

into /etc/default/grub and from there into /boot/grub/grub.cfg

so that it will be possible to install and upgrade kernels.

The *big* problem will arrive, when new kernel versions arrive, and the
system wants to upgrade to them. And we can expect quite a lot of new
users who come to Lubuntu and Xubuntu after the end of life of Windows
XP. Let us save trouble for these new users by adding forcepae
automatically to the installed system :-)

-o-

Just to confirm my suggested solution, I added forcepae to

/etc/default/grub

and ran

sudo update-grub

After reboot it was possible to install the new kernel (in this somewhat
synthetic case the low-latency kernel), and the computer can run with it
(both kernels work).

-- 
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/1307105

Title:
  Kernel install fails due PAE checks

Status in “linux” package in Ubuntu:
  Triaged

Bug description:
  [TRIAGE NOTE]
  When a user boots Ubuntu Live/Install media with 'forcepae' option, the 
option should automatically be added to /etc/default/grub, or kernel upgrades 
will refuse to install when they do not see pae capability in cpuinfo.

  [ORIGINAL REPORT]
  On Thinkpad T42 with Pentium M processor linux image upgrade fails with 
message "This kernel does not support a non-PAE CPU.". System was installed 
from  ubuntu-14.04-beta2-desktop-i386.iso with "forcepae" kernel option. After 
install, system works, but cannot be upgraded to laters kernel.

  root@t42:/boot# apt-get upgrade
  Reading package lists... Done
  Building dependency tree
  Reading state information... Done
  You might want to run 'apt-get -f install' to correct these.
  The following packages have unmet dependencies:
   linux-image-extra-3.13.0-24-generic : Depends: 
linux-image-3.13.0-24-generic but it is not installed
   linux-image-generic : Depends: linux-image-3.13.0-24-generic but it is 
not installed
  E: Unmet dependencies. Try using -f.

  root@t42:/boot# apt-get install -f
  Reading package lists... Done
  Building dependency tree
  Reading state information... Done
  Correcting dependencies... Done
  The following extra packages will be installed:
    linux-image-3.13.0-24-generic
  Suggested packages:
    fdutils linux-doc-3.13.0 linux-source-3.13.0 linux-tools
  The following NEW packages will be installed:
    linux-image-3.13.0-24-generic
  0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
  3 not fully installed or removed.
  Need to get 0 B/14.6 MB of archives.
  After this operation, 32.3 MB of additional disk space will be used.
  Do you want to continue? [Y/n]
  (Reading database ... 196089 files and directories currently installed.)
  Preparing to unpack 
.../linux-image-3.13.0-24-generic_3.13.0-24.46_i386.deb ...
  This kernel does not support a non-PAE CPU.
  dpkg: error processing archive 
/var/cache/apt/archives/linux-image-3.13.0-24-generic_3.13.0-24.46_i386.deb 
(--unpack):
   subprocess new pre-installation script returned error exit status 1
  Examining /etc/kernel/postrm.d .
  run-parts: executing /etc/kernel/postrm.d/initramfs-tools 
3.13.0-24-generic /boot/vmlinuz-3.13.0-24-generic
  run-parts: executing /etc/kernel/postrm.d/zz-update-grub 
3.13.0-24-generic /boot/vmlinuz-3.13.0-24-generic
  Errors were encountered while processing:
   
/var/cache/apt/archives/linux-image-3.13.0-24-generic_3.13.0-24.46_i386.deb
  E: Sub-process /usr/bin/dpkg returned an error code (1)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1307105/+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 1307862] Re: package linux-image-3.13.0-24-lowlatency (not installed) failed to install/upgrade: underprocessen nytt pre-installation-skript gav felkod 1 or 'Add forcepae into /

2014-04-15 Thread sudodus
My bug report seems to be a duplicate of

https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1307105

-- 
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/1307862

Title:
  package linux-image-3.13.0-24-lowlatency (not installed) failed to
  install/upgrade: underprocessen nytt pre-installation-skript gav
  felkod 1 or 'Add forcepae into /etc/default/grub when installing with
  forcepae'

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I installed Lubuntu with the boot option forcepae into a computer with
  Pentium M with PAE capability but without PAE flag. It worked. But the
  forcepae boot option was not automatically added in

  /etc/default/grub and from there into /boot/grub/grub.cfg

  so when I try to install another kernel (in this case the low latency
  kernel) it complains

  'This kernel does not support a non-PAE CPU'

  Please make the installer (or some other program part) add forcepae

  into /etc/default/grub and from there into /boot/grub/grub.cfg

  so that it will be possible to install and upgrade kernels.

  The *big* problem will arrive, when new kernel versions arrive, and
  the system wants to upgrade to them. And we can expect quite a lot of
  new users who come to Lubuntu and Xubuntu after the end of life of
  Windows XP. Let us save trouble for these new users by adding forcepae
  automatically to the installed system :-)

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: linux-image-3.13.0-24-lowlatency (not installed)
  ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
  Uname: Linux 3.13.0-24-generic i686
  ApportVersion: 2.14.1-0ubuntu2
  AptOrdering:
   linux-image-3.13.0-24-lowlatency: Install
   linux-image-lowlatency: Install
   linux-image-3.13.0-24-lowlatency: Configure
   linux-image-lowlatency: Configure
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  tester 3245 F lxpanel
  CRDA: Error: [Errno 2] Filen eller katalogen finns inte: 'iw'
  CurrentDmesg:
   [   46.738310] init: plymouth-upstart-bridge main process ended, respawning
   [  642.146638] audit_printk_skb: 75 callbacks suppressed
   [  642.146649] type=1400 audit(1397540923.389:68): apparmor="DENIED" 
operation="open" profile="/usr/bin/evince" 
name="/etc/xdg/lubuntu/applications/defaults.list" pid=3376 comm="evince" 
requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
  Date: Tue Apr 15 08:23:33 2014
  DpkgTerminalLog:
   Preparing to unpack 
.../linux-image-3.13.0-24-lowlatency_3.13.0-24.46_i386.deb ...
   This kernel does not support a non-PAE CPU.
   dpkg: error processing archive 
/var/cache/apt/archives/linux-image-3.13.0-24-lowlatency_3.13.0-24.46_i386.deb 
(--unpack):
underprocessen nytt pre-installation-skript gav felkod 1
  DuplicateSignature: package:linux-image-3.13.0-24-lowlatency:(not 
installed):underprocessen nytt pre-installation-skript gav felkod 1
  ErrorMessage: underprocessen nytt pre-installation-skript gav felkod 1
  HibernationDevice: RESUME=UUID=11c540f0-c335-47f5-bfd2-8af12b95c7a0
  InstallationDate: Installed on 2014-04-15 (0 days ago)
  InstallationMedia: Lubuntu 14.04 LTS "Trusty Tahr" - Release i386 (20140414)
  MachineType: IBM 23738TG
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-24-generic 
root=UUID=b36d9c1c-3fdf-413e-b3ce-4c2daa924820 ro quiet splash vt.handoff=7
  RelatedPackageVersions: grub-pc 2.02~beta2-9
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  Title: package linux-image-3.13.0-24-lowlatency (not installed) failed to 
install/upgrade: underprocessen nytt pre-installation-skript gav felkod 1
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 10/13/2005
  dmi.bios.vendor: IBM
  dmi.bios.version: 1RETDNWW (3.19 )
  dmi.board.name: 23738TG
  dmi.board.vendor: IBM
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: IBM
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnIBM:bvr1RETDNWW(3.19):bd10/13/2005:svnIBM:pn23738TG:pvrThinkPadT42:rvnIBM:rn23738TG:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
  dmi.product.name: 23738TG
  dmi.product.version: ThinkPad T42
  dmi.sys.vendor: IBM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1307862/+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 1307862] Re: package linux-image-3.13.0-24-lowlatency (not installed) failed to install/upgrade: underprocessen nytt pre-installation-skript gav felkod 1 or 'Add forcepae into /

2014-04-15 Thread sudodus
** Summary changed:

- package linux-image-3.13.0-24-lowlatency (not installed) failed to 
install/upgrade: underprocessen nytt pre-installation-skript gav felkod 1
+ package linux-image-3.13.0-24-lowlatency (not installed) failed to 
install/upgrade: underprocessen nytt pre-installation-skript gav felkod 1 or 
'Add forcepae into /etc/default/grub'

** Summary changed:

- package linux-image-3.13.0-24-lowlatency (not installed) failed to 
install/upgrade: underprocessen nytt pre-installation-skript gav felkod 1 or 
'Add forcepae into /etc/default/grub'
+ package linux-image-3.13.0-24-lowlatency (not installed) failed to 
install/upgrade: underprocessen nytt pre-installation-skript gav felkod 1 or 
'Add forcepae into /etc/default/grub when installing with forcepae'

-- 
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/1307862

Title:
  package linux-image-3.13.0-24-lowlatency (not installed) failed to
  install/upgrade: underprocessen nytt pre-installation-skript gav
  felkod 1 or 'Add forcepae into /etc/default/grub when installing with
  forcepae'

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I installed Lubuntu with the boot option forcepae into a computer with
  Pentium M with PAE capability but without PAE flag. It worked. But the
  forcepae boot option was not automatically added in

  /etc/default/grub and from there into /boot/grub/grub.cfg

  so when I try to install another kernel (in this case the low latency
  kernel) it complains

  'This kernel does not support a non-PAE CPU'

  Please make the installer (or some other program part) add forcepae

  into /etc/default/grub and from there into /boot/grub/grub.cfg

  so that it will be possible to install and upgrade kernels.

  The *big* problem will arrive, when new kernel versions arrive, and
  the system wants to upgrade to them. And we can expect quite a lot of
  new users who come to Lubuntu and Xubuntu after the end of life of
  Windows XP. Let us save trouble for these new users by adding forcepae
  automatically to the installed system :-)

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: linux-image-3.13.0-24-lowlatency (not installed)
  ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
  Uname: Linux 3.13.0-24-generic i686
  ApportVersion: 2.14.1-0ubuntu2
  AptOrdering:
   linux-image-3.13.0-24-lowlatency: Install
   linux-image-lowlatency: Install
   linux-image-3.13.0-24-lowlatency: Configure
   linux-image-lowlatency: Configure
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  tester 3245 F lxpanel
  CRDA: Error: [Errno 2] Filen eller katalogen finns inte: 'iw'
  CurrentDmesg:
   [   46.738310] init: plymouth-upstart-bridge main process ended, respawning
   [  642.146638] audit_printk_skb: 75 callbacks suppressed
   [  642.146649] type=1400 audit(1397540923.389:68): apparmor="DENIED" 
operation="open" profile="/usr/bin/evince" 
name="/etc/xdg/lubuntu/applications/defaults.list" pid=3376 comm="evince" 
requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
  Date: Tue Apr 15 08:23:33 2014
  DpkgTerminalLog:
   Preparing to unpack 
.../linux-image-3.13.0-24-lowlatency_3.13.0-24.46_i386.deb ...
   This kernel does not support a non-PAE CPU.
   dpkg: error processing archive 
/var/cache/apt/archives/linux-image-3.13.0-24-lowlatency_3.13.0-24.46_i386.deb 
(--unpack):
underprocessen nytt pre-installation-skript gav felkod 1
  DuplicateSignature: package:linux-image-3.13.0-24-lowlatency:(not 
installed):underprocessen nytt pre-installation-skript gav felkod 1
  ErrorMessage: underprocessen nytt pre-installation-skript gav felkod 1
  HibernationDevice: RESUME=UUID=11c540f0-c335-47f5-bfd2-8af12b95c7a0
  InstallationDate: Installed on 2014-04-15 (0 days ago)
  InstallationMedia: Lubuntu 14.04 LTS "Trusty Tahr" - Release i386 (20140414)
  MachineType: IBM 23738TG
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-24-generic 
root=UUID=b36d9c1c-3fdf-413e-b3ce-4c2daa924820 ro quiet splash vt.handoff=7
  RelatedPackageVersions: grub-pc 2.02~beta2-9
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  Title: package linux-image-3.13.0-24-lowlatency (not installed) failed to 
install/upgrade: underprocessen nytt pre-installation-skript gav felkod 1
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 10/13/2005
  dmi.bios.vendor: IBM
  dmi.bios.version: 1RETDNWW (3.19 )
  dmi.board.name: 23738TG
  dmi.board.vendor: IBM
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: IBM
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnIBM:bvr1RETDNWW(3.19):bd10/13/2005:svnIBM:pn23738TG:pvrThinkPadT42:rvnIBM:rn23738TG:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
 

[Kernel-packages] [Bug 1307862] Re: package linux-image-3.13.0-24-lowlatency (not installed) failed to install/upgrade: underprocessen nytt pre-installation-skript gav felkod 1

2014-04-15 Thread sudodus
Just to confirm my suggested solution, I added forcepae to

/etc/default/grub

and ran

sudo update-grub

After reboot it was possible to install the new kernel (in this somewhat
synthetic case the low-latency kernel), and the computer can run with it
(both kernels work).

-- 
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/1307862

Title:
  package linux-image-3.13.0-24-lowlatency (not installed) failed to
  install/upgrade: underprocessen nytt pre-installation-skript gav
  felkod 1

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  I installed Lubuntu with the boot option forcepae into a computer with
  Pentium M with PAE capability but without PAE flag. It worked. But the
  forcepae boot option was not automatically added in

  /etc/default/grub and from there into /boot/grub/grub.cfg

  so when I try to install another kernel (in this case the low latency
  kernel) it complains

  'This kernel does not support a non-PAE CPU'

  Please make the installer (or some other program part) add forcepae

  into /etc/default/grub and from there into /boot/grub/grub.cfg

  so that it will be possible to install and upgrade kernels.

  The *big* problem will arrive, when new kernel versions arrive, and
  the system wants to upgrade to them. And we can expect quite a lot of
  new users who come to Lubuntu and Xubuntu after the end of life of
  Windows XP. Let us save trouble for these new users by adding forcepae
  automatically to the installed system :-)

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: linux-image-3.13.0-24-lowlatency (not installed)
  ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
  Uname: Linux 3.13.0-24-generic i686
  ApportVersion: 2.14.1-0ubuntu2
  AptOrdering:
   linux-image-3.13.0-24-lowlatency: Install
   linux-image-lowlatency: Install
   linux-image-3.13.0-24-lowlatency: Configure
   linux-image-lowlatency: Configure
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  tester 3245 F lxpanel
  CRDA: Error: [Errno 2] Filen eller katalogen finns inte: 'iw'
  CurrentDmesg:
   [   46.738310] init: plymouth-upstart-bridge main process ended, respawning
   [  642.146638] audit_printk_skb: 75 callbacks suppressed
   [  642.146649] type=1400 audit(1397540923.389:68): apparmor="DENIED" 
operation="open" profile="/usr/bin/evince" 
name="/etc/xdg/lubuntu/applications/defaults.list" pid=3376 comm="evince" 
requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
  Date: Tue Apr 15 08:23:33 2014
  DpkgTerminalLog:
   Preparing to unpack 
.../linux-image-3.13.0-24-lowlatency_3.13.0-24.46_i386.deb ...
   This kernel does not support a non-PAE CPU.
   dpkg: error processing archive 
/var/cache/apt/archives/linux-image-3.13.0-24-lowlatency_3.13.0-24.46_i386.deb 
(--unpack):
underprocessen nytt pre-installation-skript gav felkod 1
  DuplicateSignature: package:linux-image-3.13.0-24-lowlatency:(not 
installed):underprocessen nytt pre-installation-skript gav felkod 1
  ErrorMessage: underprocessen nytt pre-installation-skript gav felkod 1
  HibernationDevice: RESUME=UUID=11c540f0-c335-47f5-bfd2-8af12b95c7a0
  InstallationDate: Installed on 2014-04-15 (0 days ago)
  InstallationMedia: Lubuntu 14.04 LTS "Trusty Tahr" - Release i386 (20140414)
  MachineType: IBM 23738TG
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-24-generic 
root=UUID=b36d9c1c-3fdf-413e-b3ce-4c2daa924820 ro quiet splash vt.handoff=7
  RelatedPackageVersions: grub-pc 2.02~beta2-9
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  Title: package linux-image-3.13.0-24-lowlatency (not installed) failed to 
install/upgrade: underprocessen nytt pre-installation-skript gav felkod 1
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 10/13/2005
  dmi.bios.vendor: IBM
  dmi.bios.version: 1RETDNWW (3.19 )
  dmi.board.name: 23738TG
  dmi.board.vendor: IBM
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: IBM
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnIBM:bvr1RETDNWW(3.19):bd10/13/2005:svnIBM:pn23738TG:pvrThinkPadT42:rvnIBM:rn23738TG:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
  dmi.product.name: 23738TG
  dmi.product.version: ThinkPad T42
  dmi.sys.vendor: IBM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1307862/+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 1307862] [NEW] package linux-image-3.13.0-24-lowlatency (not installed) failed to install/upgrade: underprocessen nytt pre-installation-skript gav felkod 1

2014-04-14 Thread sudodus
Public bug reported:

I installed Lubuntu with the boot option forcepae into a computer with
Pentium M with PAE capability but without PAE flag. It worked. But the
forcepae boot option was not automatically added in

/etc/default/grub and from there into /boot/grub/grub.cfg

so when I try to install another kernel (in this case the low latency
kernel) it complains

'This kernel does not support a non-PAE CPU'

Please make the installer (or some other program part) add forcepae

into /etc/default/grub and from there into /boot/grub/grub.cfg

so that it will be possible to install and upgrade kernels.

The *big* problem will arrive, when new kernel versions arrive, and the
system wants to upgrade to them. And we can expect quite a lot of new
users who come to Lubuntu and Xubuntu after the end of life of Windows
XP. Let us save trouble for these new users by adding forcepae
automatically to the installed system :-)

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: linux-image-3.13.0-24-lowlatency (not installed)
ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
Uname: Linux 3.13.0-24-generic i686
ApportVersion: 2.14.1-0ubuntu2
AptOrdering:
 linux-image-3.13.0-24-lowlatency: Install
 linux-image-lowlatency: Install
 linux-image-3.13.0-24-lowlatency: Configure
 linux-image-lowlatency: Configure
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  tester 3245 F lxpanel
CRDA: Error: [Errno 2] Filen eller katalogen finns inte: 'iw'
CurrentDmesg:
 [   46.738310] init: plymouth-upstart-bridge main process ended, respawning
 [  642.146638] audit_printk_skb: 75 callbacks suppressed
 [  642.146649] type=1400 audit(1397540923.389:68): apparmor="DENIED" 
operation="open" profile="/usr/bin/evince" 
name="/etc/xdg/lubuntu/applications/defaults.list" pid=3376 comm="evince" 
requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
Date: Tue Apr 15 08:23:33 2014
DpkgTerminalLog:
 Preparing to unpack .../linux-image-3.13.0-24-lowlatency_3.13.0-24.46_i386.deb 
...
 This kernel does not support a non-PAE CPU.
 dpkg: error processing archive 
/var/cache/apt/archives/linux-image-3.13.0-24-lowlatency_3.13.0-24.46_i386.deb 
(--unpack):
  underprocessen nytt pre-installation-skript gav felkod 1
DuplicateSignature: package:linux-image-3.13.0-24-lowlatency:(not 
installed):underprocessen nytt pre-installation-skript gav felkod 1
ErrorMessage: underprocessen nytt pre-installation-skript gav felkod 1
HibernationDevice: RESUME=UUID=11c540f0-c335-47f5-bfd2-8af12b95c7a0
InstallationDate: Installed on 2014-04-15 (0 days ago)
InstallationMedia: Lubuntu 14.04 LTS "Trusty Tahr" - Release i386 (20140414)
MachineType: IBM 23738TG
ProcFB: 0 radeondrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-24-generic 
root=UUID=b36d9c1c-3fdf-413e-b3ce-4c2daa924820 ro quiet splash vt.handoff=7
RelatedPackageVersions: grub-pc 2.02~beta2-9
RfKill:
 0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
SourcePackage: linux
Title: package linux-image-3.13.0-24-lowlatency (not installed) failed to 
install/upgrade: underprocessen nytt pre-installation-skript gav felkod 1
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 10/13/2005
dmi.bios.vendor: IBM
dmi.bios.version: 1RETDNWW (3.19 )
dmi.board.name: 23738TG
dmi.board.vendor: IBM
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: IBM
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnIBM:bvr1RETDNWW(3.19):bd10/13/2005:svnIBM:pn23738TG:pvrThinkPadT42:rvnIBM:rn23738TG:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
dmi.product.name: 23738TG
dmi.product.version: ThinkPad T42
dmi.sys.vendor: IBM

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 need-duplicate-check trusty

-- 
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/1307862

Title:
  package linux-image-3.13.0-24-lowlatency (not installed) failed to
  install/upgrade: underprocessen nytt pre-installation-skript gav
  felkod 1

Status in “linux” package in Ubuntu:
  New

Bug description:
  I installed Lubuntu with the boot option forcepae into a computer with
  Pentium M with PAE capability but without PAE flag. It worked. But the
  forcepae boot option was not automatically added in

  /etc/default/grub and from there into /boot/grub/grub.cfg

  so when I try to install another kernel (in this case the low latency
  kernel) it complains

  'This kernel does not support a non-PAE CPU'

  Please make the installer (or some other program part) add forcepae

  into /etc/default/grub and from there into /boot/grub/grub.cfg

  so that it will be possible to install and upgrade kernels.

  The *big* problem will arrive, when new kernel versions arrive, and
  the system wants to upgrade to them. And we can expect quite a lot of
  

[Kernel-packages] [Bug 1299473] Re: ubiquity hangs when trying to install from live session

2014-04-01 Thread sudodus
Maybe the automatically collected data in Bug #1300645 helps you solving
the problem. (I was prompted into a new bug report.)

-- 
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/1299473

Title:
  ubiquity hangs when trying to install from live session

Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  Ubiquity hangs (cursor spins) when trying to install mythubuntu from a
  live USB session.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: ubiquity 2.17.10
  ProcVersionSignature: Ubuntu 3.13.0-19.40-generic 3.13.6
  Uname: Linux 3.13.0-19-generic x86_64
  ApportVersion: 2.13.3-0ubuntu1
  Architecture: amd64
  CasperVersion: 1.339
  CurrentDesktop: XFCE
  Date: Sat Mar 29 14:14:01 2014
  InstallCmdLine: noprompt cdrom-detect/try-usb=true 
file=/cdrom/preseed/mythbuntu.seed boot=casper initrd=/casper/initrd.lz quiet 
splash -- maybe-ubiquity
  LiveMediaBuild: Mythbuntu 14.04 LTS "Trusty Tahr" - Beta amd64 (20140326)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubiquity
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1299473/+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 1299473] Re: ubiquity hangs when trying to install from live session

2014-04-01 Thread sudodus
I have this bug too: I get the spinning wheel forever instead of the
windows of the installer.

-- 
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/1299473

Title:
  ubiquity hangs when trying to install from live session

Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  Ubiquity hangs (cursor spins) when trying to install mythubuntu from a
  live USB session.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: ubiquity 2.17.10
  ProcVersionSignature: Ubuntu 3.13.0-19.40-generic 3.13.6
  Uname: Linux 3.13.0-19-generic x86_64
  ApportVersion: 2.13.3-0ubuntu1
  Architecture: amd64
  CasperVersion: 1.339
  CurrentDesktop: XFCE
  Date: Sat Mar 29 14:14:01 2014
  InstallCmdLine: noprompt cdrom-detect/try-usb=true 
file=/cdrom/preseed/mythbuntu.seed boot=casper initrd=/casper/initrd.lz quiet 
splash -- maybe-ubiquity
  LiveMediaBuild: Mythbuntu 14.04 LTS "Trusty Tahr" - Beta amd64 (20140326)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubiquity
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1299473/+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 930447] Re: Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M x86 Laptop due to bug in PAE kernel, initramfs or syslinux

2014-03-22 Thread sudodus
:-)

-- 
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/930447

Title:
  Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M
  x86 Laptop due to bug in PAE kernel, initramfs or syslinux

Status in “linux” package in Ubuntu:
  Fix Released
Status in “syslinux” package in Ubuntu:
  Invalid
Status in Baltix GNU/Linux:
  Triaged

Bug description:
  Ubuntu 12.04 doesn't start from Desktop CD or USB with syslinux boot
  loader on Pentium M 1.6Ghz or faster Pentium M CPU - displays error
  message about missing PAE feature in CPU, but *the same* *Ubuntu
  12.04* Desktop CD/LiveUSB starts fine on *the same CPU* (and same PAE
  kernel) if GRUB boot loader is used, for example when WUBI or LiveUSB
  with GRUB boot loader, like Multisystem
  (http://liveusb.info/dotclear/index.php?pages/install ) is used!

  The error message is:
  "This kernel requires the following features not present on the CPU: pae.
  Unable to boot - please use a kernel appropriate for you CPU."

  THIS IS AN IMPORTANT REGRESSION! People are able to install and successfully 
use Ubuntu 12.04 on such pretty new hardware, like IBM Thinkpad T42 laptop with 
Pentium M 1700Mhz processor, but the bug in syslinux (or something related) 
forbids Ubuntu 12.04 installation.
  This bug is reproducible on lots of computers, there are several log files 
and /proc/cpuinfo file attached to this bugreport, AFAIK it's enough to reopen 
this bug.

  ---
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  CurrentDmesg: Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order 
/var/log/dmesg -'] failed with exit code 1: comm: /var/log/dmesg: Permission 
denied
  MachineType: IBM 2373PPU
  dmi.bios.date: 06/18/2007
  dmi.bios.vendor: IBM
  dmi.bios.version: 1RETDRWW (3.23 )
  dmi.board.name: 2373PPU
  dmi.board.vendor: IBM
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: IBM
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnIBM:bvr1RETDRWW(3.23):bd06/18/2007:svnIBM:pn2373PPU:pvrThinkPadT42:rvnIBM:rn2373PPU:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
  dmi.product.name: 2373PPU
  dmi.product.version: ThinkPad T42
  dmi.sys.vendor: IBM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/930447/+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 930447] Re: Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M x86 Laptop due to bug in PAE kernel, initramfs or syslinux

2014-03-06 Thread sudodus
Now it is time for me to say thank you :-)

First of all, *I want to thank everybody contributing* to solving this
bug, or complex of bugs, concerning Pentium M and Celeron M CPUs and new
Ubuntu based kernels.

Then I want to mention roland aus köln (devzero-c), who continued
pushing this issue when we had given up (either completely or like me,
resorting to work-arounds).

And I want to thank Chris Bainbridge, who was able to do the actual bug-
fixes that made the ship turn around. I don't know if you are a
developer or a very skilled user, but you made a great difference.

Finally I want to thank you Chris for sharing the link to instructions,
that actually got me over the threshold to build a custom syslinux
bootable system. I'm working right now on a debian system, that should
be able to install from a CD/DVD or USB drive to very different systems
(including very old and limited systems) by flashing compressed image
files (img.xz files) or iso files and growing the file system when there
is extra space available.

I show the link again for everybody else, who might be interested. It
works for me with a couple of minor tweaks, the main one that I needed
to import a gpg key separately.

Best regards
sudodus alias Nio

- Comment #279 -
Chris Bainbridge (chris-bainbridge) wrote on 2014-03-03:#279

lkml: "grub is jumping to the 32-bit entry point and skipping the entire
real mode setup code. Bad grub."

You don't need to build a syslinux bootable iso. You can boot the kernel
from Grub in 16-bit mode by using the linux16 command
http://www.gnu.org/software/grub/manual/html_node/linux16.html and
initrd16
https://www.gnu.org/software/grub/manual/html_node/initrd16.html

According to the discussion on LKML, linux16 is now the default on
Fedora, and should be used by other distributions.

(If you still want to build a custom syslinux bootable system, just for fun, 
see the instructions at 
http://willhaley.com/blog/create-a-custom-debian-live-environment/ - it's about 
25 lines of code in total, and not difficult to follow)
-

-- 
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/930447

Title:
  Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M
  x86 Laptop due to bug in PAE kernel, initramfs or syslinux

Status in “linux” package in Ubuntu:
  Fix Released
Status in “syslinux” package in Ubuntu:
  Invalid
Status in Baltix GNU/Linux:
  Triaged

Bug description:
  Ubuntu 12.04 doesn't start from Desktop CD or USB with syslinux boot
  loader on Pentium M 1.6Ghz or faster Pentium M CPU - displays error
  message about missing PAE feature in CPU, but *the same* *Ubuntu
  12.04* Desktop CD/LiveUSB starts fine on *the same CPU* (and same PAE
  kernel) if GRUB boot loader is used, for example when WUBI or LiveUSB
  with GRUB boot loader, like Multisystem
  (http://liveusb.info/dotclear/index.php?pages/install ) is used!

  The error message is:
  "This kernel requires the following features not present on the CPU: pae.
  Unable to boot - please use a kernel appropriate for you CPU."

  THIS IS AN IMPORTANT REGRESSION! People are able to install and successfully 
use Ubuntu 12.04 on such pretty new hardware, like IBM Thinkpad T42 laptop with 
Pentium M 1700Mhz processor, but the bug in syslinux (or something related) 
forbids Ubuntu 12.04 installation.
  This bug is reproducible on lots of computers, there are several log files 
and /proc/cpuinfo file attached to this bugreport, AFAIK it's enough to reopen 
this bug.

  ---
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  CurrentDmesg: Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order 
/var/log/dmesg -'] failed with exit code 1: comm: /var/log/dmesg: Permission 
denied
  MachineType: IBM 2373PPU
  dmi.bios.date: 06/18/2007
  dmi.bios.vendor: IBM
  dmi.bios.version: 1RETDRWW (3.23 )
  dmi.board.name: 2373PPU
  dmi.board.vendor: IBM
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: IBM
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnIBM:bvr1RETDRWW(3.23):bd06/18/2007:svnIBM:pn2373PPU:pvrThinkPadT42:rvnIBM:rn2373PPU:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
  dmi.product.name: 2373PPU
  dmi.product.version: ThinkPad T42
  dmi.sys.vendor: IBM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/930447/+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 1160346] Re: do-release-upgrade from Ubuntu 12.04 on Pentium-M fails, breaks system without any warning (This kernel does not support a non-PAE CPU)

2014-03-05 Thread sudodus
@Frogman - fakePAE trick

Until the new patches in the main-stream code trickle down (maybe it
stays in 14.04 LTS), I suggest that you try

Lubuntu-fake-pae according to this link

https://help.ubuntu.com/community/Lubuntu-fake-PAE

or if you want some other flavour of Ubuntu, you have a wide choice if
you install from a tarball with the One Button Installer

https://help.ubuntu.com/community/OBI

-- 
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/1160346

Title:
  do-release-upgrade from Ubuntu 12.04 on Pentium-M fails, breaks system
  without any warning (This kernel does not support a non-PAE CPU)

Status in Ubuntu Release Upgrader:
  New
Status in “linux” package in Ubuntu:
  Invalid
Status in “ubuntu-release-upgrader” package in Ubuntu:
  Triaged

Bug description:
  Attempting to upgrade from Precise with a non-PAE kernel will result
  in a failed upgrade. do-release-upgrade should check whether the user
  is using a non-PAE kernel and refuse to run, rather than upgrading to
  a broken system with no installed kernel.

  After downloading 1.5GB+ of data and over 1000 new packages, the
  upgrade will eventually report failure. Looking through the logs there
  is no kernel installed because of the error "This kernel does not
  support a non-PAE CPU.":

  Selecting previously unselected package linux-image-3.5.0-26-generic.^M
  Unpacking linux-image-3.5.0-26-generic (from 
.../linux-image-3.5.0-26-generic_3.5.0-26.42_i386.deb) ...^M
  This kernel does not support a non-PAE CPU.^M
  dpkg: error processing 
/var/cache/apt/archives/linux-image-3.5.0-26-generic_3.5.0-26.42_i386.deb 
(--unpack):^M
   subprocess new pre-installation script returned error exit status 1^M
  No apport report written because MaxReports is reached already

  Related bugs:

  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/897786 Kernel is 
dropping non-PAE flavour
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1068862 upgrade from 
12.04 to 12.10 on a sans-pae CPU leaves kernel broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-release-upgrader/+bug/1160346/+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 1160346] Re: do-release-upgrade from Ubuntu 12.04 on Pentium-M fails, breaks system without any warning (This kernel does not support a non-PAE CPU)

2014-03-05 Thread sudodus
What about the boot option 'forcepae'?

Is it still available, and possible to use in order to make Pentium M
and Celeron M run a PAE kernel?

In that case, I think that it should be described in the wiki page that
the error text is referring to

https://help.ubuntu.com/community/EnablingPAE

instead of (or at least alongside with) the reference to ugrading from
12.04 which is cumbersome and prone to failure.

And is the tip about 'forcepae' still there in the error output? It is
quite brief but will help people with some experience understand how to
make the computer work. Others may need a more verbose help text (that I
think should be in the wiki page).

-o-

I saw that you, Brian Murray, edited the wiki page March 3, so I don't
want 'hijack' the page, instead I discuss here, what it could and should
contain.

-- 
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/1160346

Title:
  do-release-upgrade from Ubuntu 12.04 on Pentium-M fails, breaks system
  without any warning (This kernel does not support a non-PAE CPU)

Status in Ubuntu Release Upgrader:
  New
Status in “linux” package in Ubuntu:
  Invalid
Status in “ubuntu-release-upgrader” package in Ubuntu:
  Triaged

Bug description:
  Attempting to upgrade from Precise with a non-PAE kernel will result
  in a failed upgrade. do-release-upgrade should check whether the user
  is using a non-PAE kernel and refuse to run, rather than upgrading to
  a broken system with no installed kernel.

  After downloading 1.5GB+ of data and over 1000 new packages, the
  upgrade will eventually report failure. Looking through the logs there
  is no kernel installed because of the error "This kernel does not
  support a non-PAE CPU.":

  Selecting previously unselected package linux-image-3.5.0-26-generic.^M
  Unpacking linux-image-3.5.0-26-generic (from 
.../linux-image-3.5.0-26-generic_3.5.0-26.42_i386.deb) ...^M
  This kernel does not support a non-PAE CPU.^M
  dpkg: error processing 
/var/cache/apt/archives/linux-image-3.5.0-26-generic_3.5.0-26.42_i386.deb 
(--unpack):^M
   subprocess new pre-installation script returned error exit status 1^M
  No apport report written because MaxReports is reached already

  Related bugs:

  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/897786 Kernel is 
dropping non-PAE flavour
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1068862 upgrade from 
12.04 to 12.10 on a sans-pae CPU leaves kernel broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-release-upgrader/+bug/1160346/+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 1160346] Re: do-release-upgrade from Ubuntu 12.04 on Pentium-M fails, breaks system without any warning (This kernel does not support a non-PAE CPU)

2014-03-04 Thread sudodus
... and the text in https://help.ubuntu.com/community/EnablingPAE will
need updating too, and there are volunteers that can do that (for
example I can do it, unless someone has 'adopted' that wiki page and
wants to do it).

-- 
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/1160346

Title:
  do-release-upgrade from Ubuntu 12.04 on Pentium-M fails, breaks system
  without any warning (This kernel does not support a non-PAE CPU)

Status in Ubuntu Release Upgrader:
  New
Status in “linux” package in Ubuntu:
  Invalid
Status in “ubuntu-release-upgrader” package in Ubuntu:
  Triaged

Bug description:
  Attempting to upgrade from Precise with a non-PAE kernel will result
  in a failed upgrade. do-release-upgrade should check whether the user
  is using a non-PAE kernel and refuse to run, rather than upgrading to
  a broken system with no installed kernel.

  After downloading 1.5GB+ of data and over 1000 new packages, the
  upgrade will eventually report failure. Looking through the logs there
  is no kernel installed because of the error "This kernel does not
  support a non-PAE CPU.":

  Selecting previously unselected package linux-image-3.5.0-26-generic.^M
  Unpacking linux-image-3.5.0-26-generic (from 
.../linux-image-3.5.0-26-generic_3.5.0-26.42_i386.deb) ...^M
  This kernel does not support a non-PAE CPU.^M
  dpkg: error processing 
/var/cache/apt/archives/linux-image-3.5.0-26-generic_3.5.0-26.42_i386.deb 
(--unpack):^M
   subprocess new pre-installation script returned error exit status 1^M
  No apport report written because MaxReports is reached already

  Related bugs:

  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/897786 Kernel is 
dropping non-PAE flavour
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1068862 upgrade from 
12.04 to 12.10 on a sans-pae CPU leaves kernel broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-release-upgrader/+bug/1160346/+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 930447] Re: Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M x86 Laptop due to bug in PAE kernel, initramfs or syslinux

2014-03-03 Thread sudodus
Thanks Chris :-)

-- 
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/930447

Title:
  Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M
  x86 Laptop due to bug in PAE kernel, initramfs or syslinux

Status in “linux” package in Ubuntu:
  Confirmed
Status in “syslinux” package in Ubuntu:
  Confirmed
Status in Baltix GNU/Linux:
  Triaged

Bug description:
  Ubuntu 12.04 doesn't start from Desktop CD or USB with syslinux boot
  loader on Pentium M 1.6Ghz or faster Pentium M CPU - displays error
  message about missing PAE feature in CPU, but *the same* *Ubuntu
  12.04* Desktop CD/LiveUSB starts fine on *the same CPU* (and same PAE
  kernel) if GRUB boot loader is used, for example when WUBI or LiveUSB
  with GRUB boot loader, like Multisystem
  (http://liveusb.info/dotclear/index.php?pages/install ) is used!

  The error message is:
  "This kernel requires the following features not present on the CPU: pae.
  Unable to boot - please use a kernel appropriate for you CPU."

  THIS IS AN IMPORTANT REGRESSION! People are able to install and successfully 
use Ubuntu 12.04 on such pretty new hardware, like IBM Thinkpad T42 laptop with 
Pentium M 1700Mhz processor, but the bug in syslinux (or something related) 
forbids Ubuntu 12.04 installation.
  This bug is reproducible on lots of computers, there are several log files 
and /proc/cpuinfo file attached to this bugreport, AFAIK it's enough to reopen 
this bug.

  ---
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  CurrentDmesg: Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order 
/var/log/dmesg -'] failed with exit code 1: comm: /var/log/dmesg: Permission 
denied
  MachineType: IBM 2373PPU
  dmi.bios.date: 06/18/2007
  dmi.bios.vendor: IBM
  dmi.bios.version: 1RETDRWW (3.23 )
  dmi.board.name: 2373PPU
  dmi.board.vendor: IBM
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: IBM
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnIBM:bvr1RETDRWW(3.23):bd06/18/2007:svnIBM:pn2373PPU:pvrThinkPadT42:rvnIBM:rn2373PPU:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
  dmi.product.name: 2373PPU
  dmi.product.version: ThinkPad T42
  dmi.sys.vendor: IBM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/930447/+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 930447] Re: Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M x86 Laptop due to bug in PAE kernel, initramfs or syslinux

2014-03-03 Thread sudodus
ERROR: PAE is disabled on this Pentium M
(PAE can potentially be enabled with kernel parameter
"forcepae" - this is unsupported, may cause unknown
problems, and  will taint the kernel)
This kernel requires the following features not present on the CPU:
pae
Unable to boot - please use a kernel appropriate for your CPU

-o-

So I used the following modified lines in grub.cfg

linux16 /boot/vmlinuz-3.13.0-14-generic root=UUID="string" ro  quiet 
splash forcepae $vt_handoff
initrd16/boot/initrd.img-3.13.0-14-generic

and it boots and runs :-)

WARNING: Forcing PAE in CPU flags
...


** Attachment added: "computer-info.zip"
   
https://bugs.launchpad.net/baltix/+bug/930447/+attachment/4005394/+files/computer-info.zip

-- 
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/930447

Title:
  Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M
  x86 Laptop due to bug in PAE kernel, initramfs or syslinux

Status in “linux” package in Ubuntu:
  Confirmed
Status in “syslinux” package in Ubuntu:
  Confirmed
Status in Baltix GNU/Linux:
  Triaged

Bug description:
  Ubuntu 12.04 doesn't start from Desktop CD or USB with syslinux boot
  loader on Pentium M 1.6Ghz or faster Pentium M CPU - displays error
  message about missing PAE feature in CPU, but *the same* *Ubuntu
  12.04* Desktop CD/LiveUSB starts fine on *the same CPU* (and same PAE
  kernel) if GRUB boot loader is used, for example when WUBI or LiveUSB
  with GRUB boot loader, like Multisystem
  (http://liveusb.info/dotclear/index.php?pages/install ) is used!

  The error message is:
  "This kernel requires the following features not present on the CPU: pae.
  Unable to boot - please use a kernel appropriate for you CPU."

  THIS IS AN IMPORTANT REGRESSION! People are able to install and successfully 
use Ubuntu 12.04 on such pretty new hardware, like IBM Thinkpad T42 laptop with 
Pentium M 1700Mhz processor, but the bug in syslinux (or something related) 
forbids Ubuntu 12.04 installation.
  This bug is reproducible on lots of computers, there are several log files 
and /proc/cpuinfo file attached to this bugreport, AFAIK it's enough to reopen 
this bug.

  ---
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  CurrentDmesg: Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order 
/var/log/dmesg -'] failed with exit code 1: comm: /var/log/dmesg: Permission 
denied
  MachineType: IBM 2373PPU
  dmi.bios.date: 06/18/2007
  dmi.bios.vendor: IBM
  dmi.bios.version: 1RETDRWW (3.23 )
  dmi.board.name: 2373PPU
  dmi.board.vendor: IBM
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: IBM
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnIBM:bvr1RETDRWW(3.23):bd06/18/2007:svnIBM:pn2373PPU:pvrThinkPadT42:rvnIBM:rn2373PPU:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
  dmi.product.name: 2373PPU
  dmi.product.version: ThinkPad T42
  dmi.sys.vendor: IBM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/930447/+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 930447] Re: Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M x86 Laptop due to bug in PAE kernel, initramfs or syslinux

2014-03-03 Thread sudodus
Works in my IBM Thinkpad T42 with Pentium M without a PAE flag but with
PAE capability.

But I have only booted via grub, because I cannot remaster an iso file.
Did you boot from syslinux, Roland?

-- 
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/930447

Title:
  Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M
  x86 Laptop due to bug in PAE kernel, initramfs or syslinux

Status in “linux” package in Ubuntu:
  Confirmed
Status in “syslinux” package in Ubuntu:
  Confirmed
Status in Baltix GNU/Linux:
  Triaged

Bug description:
  Ubuntu 12.04 doesn't start from Desktop CD or USB with syslinux boot
  loader on Pentium M 1.6Ghz or faster Pentium M CPU - displays error
  message about missing PAE feature in CPU, but *the same* *Ubuntu
  12.04* Desktop CD/LiveUSB starts fine on *the same CPU* (and same PAE
  kernel) if GRUB boot loader is used, for example when WUBI or LiveUSB
  with GRUB boot loader, like Multisystem
  (http://liveusb.info/dotclear/index.php?pages/install ) is used!

  The error message is:
  "This kernel requires the following features not present on the CPU: pae.
  Unable to boot - please use a kernel appropriate for you CPU."

  THIS IS AN IMPORTANT REGRESSION! People are able to install and successfully 
use Ubuntu 12.04 on such pretty new hardware, like IBM Thinkpad T42 laptop with 
Pentium M 1700Mhz processor, but the bug in syslinux (or something related) 
forbids Ubuntu 12.04 installation.
  This bug is reproducible on lots of computers, there are several log files 
and /proc/cpuinfo file attached to this bugreport, AFAIK it's enough to reopen 
this bug.

  ---
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  CurrentDmesg: Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order 
/var/log/dmesg -'] failed with exit code 1: comm: /var/log/dmesg: Permission 
denied
  MachineType: IBM 2373PPU
  dmi.bios.date: 06/18/2007
  dmi.bios.vendor: IBM
  dmi.bios.version: 1RETDRWW (3.23 )
  dmi.board.name: 2373PPU
  dmi.board.vendor: IBM
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: IBM
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnIBM:bvr1RETDRWW(3.23):bd06/18/2007:svnIBM:pn2373PPU:pvrThinkPadT42:rvnIBM:rn2373PPU:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
  dmi.product.name: 2373PPU
  dmi.product.version: ThinkPad T42
  dmi.sys.vendor: IBM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/930447/+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 930447] Re: Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M x86 Laptop due to bug in PAE kernel, initramfs or syslinux

2014-02-28 Thread sudodus
There were *very* strong signals that the board, deciding about the
main-stream ubuntu edition, had decided to stop supporting non-pae CPUs
including Pentium M amd Celeron M, and that the decision was not going
to be changed.

You think that fake-PAE has been counter-productive, that it has done
more harm than good. Maybe you are right, maybe not. I still think it
was right to offer it as a solution to users, who would otherwise not
use these computers with modern Ubuntu based versions (because I thought
that the decision was not going to be changed). However, I'm hoping it
will change now, that there will be Trusty kernels, that can be booted
and upgraded with Pentium M amd Celeron M.

I can understand that you and many other people do not trust minor
distros or the organisations behind them or community re-spins. But who
can we trust? I think the [big] companies are at least as likely to
create and hide back-doors for themselves or some national intelligence
service organisation.

-- 
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/930447

Title:
  Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M
  x86 Laptop due to bug in PAE kernel, initramfs or syslinux

Status in “linux” package in Ubuntu:
  Confirmed
Status in “syslinux” package in Ubuntu:
  Confirmed
Status in Baltix GNU/Linux:
  Triaged

Bug description:
  Ubuntu 12.04 doesn't start from Desktop CD or USB with syslinux boot
  loader on Pentium M 1.6Ghz or faster Pentium M CPU - displays error
  message about missing PAE feature in CPU, but *the same* *Ubuntu
  12.04* Desktop CD/LiveUSB starts fine on *the same CPU* (and same PAE
  kernel) if GRUB boot loader is used, for example when WUBI or LiveUSB
  with GRUB boot loader, like Multisystem
  (http://liveusb.info/dotclear/index.php?pages/install ) is used!

  The error message is:
  "This kernel requires the following features not present on the CPU: pae.
  Unable to boot - please use a kernel appropriate for you CPU."

  THIS IS AN IMPORTANT REGRESSION! People are able to install and successfully 
use Ubuntu 12.04 on such pretty new hardware, like IBM Thinkpad T42 laptop with 
Pentium M 1700Mhz processor, but the bug in syslinux (or something related) 
forbids Ubuntu 12.04 installation.
  This bug is reproducible on lots of computers, there are several log files 
and /proc/cpuinfo file attached to this bugreport, AFAIK it's enough to reopen 
this bug.

  ---
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  CurrentDmesg: Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order 
/var/log/dmesg -'] failed with exit code 1: comm: /var/log/dmesg: Permission 
denied
  MachineType: IBM 2373PPU
  dmi.bios.date: 06/18/2007
  dmi.bios.vendor: IBM
  dmi.bios.version: 1RETDRWW (3.23 )
  dmi.board.name: 2373PPU
  dmi.board.vendor: IBM
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: IBM
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnIBM:bvr1RETDRWW(3.23):bd06/18/2007:svnIBM:pn2373PPU:pvrThinkPadT42:rvnIBM:rn2373PPU:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
  dmi.product.name: 2373PPU
  dmi.product.version: ThinkPad T42
  dmi.sys.vendor: IBM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/930447/+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 930447] Re: Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M x86 Laptop due to bug in PAE kernel, initramfs or syslinux

2014-02-27 Thread sudodus
All the main Ubuntu flavours of version 13.10 are available as tarballs
to be installed with the One Button Installer,

ubuntuforums.org/showthread.php?t=2172971

and this works with Pentium M and Celeron M CPUs. Experimental Trusty
tarballs are already uploaded,

http://ubuntuforums.org/showthread.php?t=2172971&p=12931564#post12931564

There are community efforts to make a non-pae kernel for Trusty Tahr.
See this link

http://ubuntuforums.org/showthread.php?t=2172971&p=12940628#post12940628

-o-

But the code snipped published by Chris Bainbridge (in comment #260)
makes me hope that we will soon get a main-stream ubuntu kernel that
will include Pentium M and Celeron M CPUs, so that we can focus our
community efforts on other problems.

-- 
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/930447

Title:
  Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M
  x86 Laptop due to bug in PAE kernel, initramfs or syslinux

Status in “linux” package in Ubuntu:
  Confirmed
Status in “syslinux” package in Ubuntu:
  Confirmed
Status in Baltix GNU/Linux:
  Triaged

Bug description:
  Ubuntu 12.04 doesn't start from Desktop CD or USB with syslinux boot
  loader on Pentium M 1.6Ghz or faster Pentium M CPU - displays error
  message about missing PAE feature in CPU, but *the same* *Ubuntu
  12.04* Desktop CD/LiveUSB starts fine on *the same CPU* (and same PAE
  kernel) if GRUB boot loader is used, for example when WUBI or LiveUSB
  with GRUB boot loader, like Multisystem
  (http://liveusb.info/dotclear/index.php?pages/install ) is used!

  The error message is:
  "This kernel requires the following features not present on the CPU: pae.
  Unable to boot - please use a kernel appropriate for you CPU."

  THIS IS AN IMPORTANT REGRESSION! People are able to install and successfully 
use Ubuntu 12.04 on such pretty new hardware, like IBM Thinkpad T42 laptop with 
Pentium M 1700Mhz processor, but the bug in syslinux (or something related) 
forbids Ubuntu 12.04 installation.
  This bug is reproducible on lots of computers, there are several log files 
and /proc/cpuinfo file attached to this bugreport, AFAIK it's enough to reopen 
this bug.

  ---
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  CurrentDmesg: Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order 
/var/log/dmesg -'] failed with exit code 1: comm: /var/log/dmesg: Permission 
denied
  MachineType: IBM 2373PPU
  dmi.bios.date: 06/18/2007
  dmi.bios.vendor: IBM
  dmi.bios.version: 1RETDRWW (3.23 )
  dmi.board.name: 2373PPU
  dmi.board.vendor: IBM
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: IBM
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnIBM:bvr1RETDRWW(3.23):bd06/18/2007:svnIBM:pn2373PPU:pvrThinkPadT42:rvnIBM:rn2373PPU:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
  dmi.product.name: 2373PPU
  dmi.product.version: ThinkPad T42
  dmi.sys.vendor: IBM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/930447/+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 930447] Re: Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M x86 Laptop due to bug in PAE kernel, initramfs or syslinux

2014-02-27 Thread sudodus
'...Why?? PAE Kernel!! I had to install 12.04, install fake-pae and the
make 3 (THREE) dist upgrades! (after days of research). Why force users
that have a PAE capable cpu (unlikely not advertised) to make tricks and
3-4-5 etc distribution upgrades just to be able to install the latest
distribution that could also run with no problems at all? ...'

If you had searched a little bit more, or asked at the Ubuntu Forums,
maybe you had found

https://help.ubuntu.com/community/Lubuntu-fake-PAE

and you had been able to install Lubuntu 13.10 directly without all
those upgrading steps.

-- 
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/930447

Title:
  Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M
  x86 Laptop due to bug in PAE kernel, initramfs or syslinux

Status in “linux” package in Ubuntu:
  Confirmed
Status in “syslinux” package in Ubuntu:
  Confirmed
Status in Baltix GNU/Linux:
  Triaged

Bug description:
  Ubuntu 12.04 doesn't start from Desktop CD or USB with syslinux boot
  loader on Pentium M 1.6Ghz or faster Pentium M CPU - displays error
  message about missing PAE feature in CPU, but *the same* *Ubuntu
  12.04* Desktop CD/LiveUSB starts fine on *the same CPU* (and same PAE
  kernel) if GRUB boot loader is used, for example when WUBI or LiveUSB
  with GRUB boot loader, like Multisystem
  (http://liveusb.info/dotclear/index.php?pages/install ) is used!

  The error message is:
  "This kernel requires the following features not present on the CPU: pae.
  Unable to boot - please use a kernel appropriate for you CPU."

  THIS IS AN IMPORTANT REGRESSION! People are able to install and successfully 
use Ubuntu 12.04 on such pretty new hardware, like IBM Thinkpad T42 laptop with 
Pentium M 1700Mhz processor, but the bug in syslinux (or something related) 
forbids Ubuntu 12.04 installation.
  This bug is reproducible on lots of computers, there are several log files 
and /proc/cpuinfo file attached to this bugreport, AFAIK it's enough to reopen 
this bug.

  ---
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  CurrentDmesg: Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order 
/var/log/dmesg -'] failed with exit code 1: comm: /var/log/dmesg: Permission 
denied
  MachineType: IBM 2373PPU
  dmi.bios.date: 06/18/2007
  dmi.bios.vendor: IBM
  dmi.bios.version: 1RETDRWW (3.23 )
  dmi.board.name: 2373PPU
  dmi.board.vendor: IBM
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: IBM
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnIBM:bvr1RETDRWW(3.23):bd06/18/2007:svnIBM:pn2373PPU:pvrThinkPadT42:rvnIBM:rn2373PPU:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
  dmi.product.name: 2373PPU
  dmi.product.version: ThinkPad T42
  dmi.sys.vendor: IBM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/930447/+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 930447] Re: Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M x86 Laptop due to bug in PAE kernel, initramfs or syslinux

2014-02-27 Thread sudodus
+1
(good news, 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/930447

Title:
  Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M
  x86 Laptop due to bug in PAE kernel, initramfs or syslinux

Status in “linux” package in Ubuntu:
  Confirmed
Status in “syslinux” package in Ubuntu:
  Confirmed
Status in Baltix GNU/Linux:
  Triaged

Bug description:
  Ubuntu 12.04 doesn't start from Desktop CD or USB with syslinux boot
  loader on Pentium M 1.6Ghz or faster Pentium M CPU - displays error
  message about missing PAE feature in CPU, but *the same* *Ubuntu
  12.04* Desktop CD/LiveUSB starts fine on *the same CPU* (and same PAE
  kernel) if GRUB boot loader is used, for example when WUBI or LiveUSB
  with GRUB boot loader, like Multisystem
  (http://liveusb.info/dotclear/index.php?pages/install ) is used!

  The error message is:
  "This kernel requires the following features not present on the CPU: pae.
  Unable to boot - please use a kernel appropriate for you CPU."

  THIS IS AN IMPORTANT REGRESSION! People are able to install and successfully 
use Ubuntu 12.04 on such pretty new hardware, like IBM Thinkpad T42 laptop with 
Pentium M 1700Mhz processor, but the bug in syslinux (or something related) 
forbids Ubuntu 12.04 installation.
  This bug is reproducible on lots of computers, there are several log files 
and /proc/cpuinfo file attached to this bugreport, AFAIK it's enough to reopen 
this bug.

  ---
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  CurrentDmesg: Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order 
/var/log/dmesg -'] failed with exit code 1: comm: /var/log/dmesg: Permission 
denied
  MachineType: IBM 2373PPU
  dmi.bios.date: 06/18/2007
  dmi.bios.vendor: IBM
  dmi.bios.version: 1RETDRWW (3.23 )
  dmi.board.name: 2373PPU
  dmi.board.vendor: IBM
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: IBM
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnIBM:bvr1RETDRWW(3.23):bd06/18/2007:svnIBM:pn2373PPU:pvrThinkPadT42:rvnIBM:rn2373PPU:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
  dmi.product.name: 2373PPU
  dmi.product.version: ThinkPad T42
  dmi.sys.vendor: IBM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/930447/+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 930447] Re: Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M x86 Laptop due to bug in PAE kernel, initramfs or syslinux

2013-12-16 Thread sudodus
Roland,

1. Thanks for keeping this issue alive :-)

2. We have evidence that these two CPUs also have PAE capability but no
PAE flag:

Celeron M 1200 Mhz 0001 0695 0812  a7e9f9bf
Celeron M 1300 MHz 0001 0695 0812  a7e9f9bf

Best regards
Nio

-- 
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/930447

Title:
  Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M
  x86 Laptop due to bug in PAE kernel, initramfs or syslinux

Status in “linux” package in Ubuntu:
  Confirmed
Status in “syslinux” package in Ubuntu:
  Invalid
Status in Baltix GNU/Linux:
  Triaged

Bug description:
  Ubuntu 12.04 doesn't start from Desktop CD or USB with syslinux boot
  loader on Pentium M 1.6Ghz or faster Pentium M CPU - displays error
  message about missing PAE feature in CPU, but *the same* *Ubuntu
  12.04* Desktop CD/LiveUSB starts fine on *the same CPU* (and same PAE
  kernel) if GRUB boot loader is used, for example when WUBI or LiveUSB
  with GRUB boot loader, like Multisystem
  (http://liveusb.info/dotclear/index.php?pages/install ) is used!

  The error message is:
  "This kernel requires the following features not present on the CPU: pae.
  Unable to boot - please use a kernel appropriate for you CPU."

  THIS IS AN IMPORTANT REGRESSION! People are able to install and successfully 
use Ubuntu 12.04 on such pretty new hardware, like IBM Thinkpad T42 laptop with 
Pentium M 1700Mhz processor, but the bug in syslinux (or something related) 
forbids Ubuntu 12.04 installation.
  This bug is reproducible on lots of computers, there are several log files 
and /proc/cpuinfo file attached to this bugreport, AFAIK it's enough to reopen 
this bug.

  ---
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  CurrentDmesg: Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order 
/var/log/dmesg -'] failed with exit code 1: comm: /var/log/dmesg: Permission 
denied
  MachineType: IBM 2373PPU
  dmi.bios.date: 06/18/2007
  dmi.bios.vendor: IBM
  dmi.bios.version: 1RETDRWW (3.23 )
  dmi.board.name: 2373PPU
  dmi.board.vendor: IBM
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: IBM
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnIBM:bvr1RETDRWW(3.23):bd06/18/2007:svnIBM:pn2373PPU:pvrThinkPadT42:rvnIBM:rn2373PPU:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
  dmi.product.name: 2373PPU
  dmi.product.version: ThinkPad T42
  dmi.sys.vendor: IBM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/930447/+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 930447] Re: Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M x86 Laptop due to bug in PAE kernel, initramfs or syslinux

2013-12-15 Thread sudodus
I think so too [that the faster ones with 133 MHz FSB (533 MHz transfer
rate) actually do report PAE].

Thank you for that cpuid line! I'll upload it into the list at

https://help.ubuntu.com/community/Lubuntu-fake-PAE#Test

-- 
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/930447

Title:
  Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M
  x86 Laptop due to bug in PAE kernel, initramfs or syslinux

Status in “linux” package in Ubuntu:
  Confirmed
Status in “syslinux” package in Ubuntu:
  Invalid
Status in Baltix GNU/Linux:
  Triaged

Bug description:
  Ubuntu 12.04 doesn't start from Desktop CD or USB with syslinux boot
  loader on Pentium M 1.6Ghz or faster Pentium M CPU - displays error
  message about missing PAE feature in CPU, but *the same* *Ubuntu
  12.04* Desktop CD/LiveUSB starts fine on *the same CPU* (and same PAE
  kernel) if GRUB boot loader is used, for example when WUBI or LiveUSB
  with GRUB boot loader, like Multisystem
  (http://liveusb.info/dotclear/index.php?pages/install ) is used!

  The error message is:
  "This kernel requires the following features not present on the CPU: pae.
  Unable to boot - please use a kernel appropriate for you CPU."

  THIS IS AN IMPORTANT REGRESSION! People are able to install and successfully 
use Ubuntu 12.04 on such pretty new hardware, like IBM Thinkpad T42 laptop with 
Pentium M 1700Mhz processor, but the bug in syslinux (or something related) 
forbids Ubuntu 12.04 installation.
  This bug is reproducible on lots of computers, there are several log files 
and /proc/cpuinfo file attached to this bugreport, AFAIK it's enough to reopen 
this bug.

  ---
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  CurrentDmesg: Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order 
/var/log/dmesg -'] failed with exit code 1: comm: /var/log/dmesg: Permission 
denied
  MachineType: IBM 2373PPU
  dmi.bios.date: 06/18/2007
  dmi.bios.vendor: IBM
  dmi.bios.version: 1RETDRWW (3.23 )
  dmi.board.name: 2373PPU
  dmi.board.vendor: IBM
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: IBM
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnIBM:bvr1RETDRWW(3.23):bd06/18/2007:svnIBM:pn2373PPU:pvrThinkPadT42:rvnIBM:rn2373PPU:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
  dmi.product.name: 2373PPU
  dmi.product.version: ThinkPad T42
  dmi.sys.vendor: IBM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/930447/+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 930447] Re: Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M x86 Laptop due to bug in PAE kernel, initramfs or syslinux

2013-12-15 Thread sudodus
Hi Oliver,

That is the fastest Pentium M without a PAE flag reported yet in this
project :-) Please post also the short output of the following command
line,

cpuid|grep ^0001

Best regards
Nio

-- 
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/930447

Title:
  Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M
  x86 Laptop due to bug in PAE kernel, initramfs or syslinux

Status in “linux” package in Ubuntu:
  Confirmed
Status in “syslinux” package in Ubuntu:
  Invalid
Status in Baltix GNU/Linux:
  Triaged

Bug description:
  Ubuntu 12.04 doesn't start from Desktop CD or USB with syslinux boot
  loader on Pentium M 1.6Ghz or faster Pentium M CPU - displays error
  message about missing PAE feature in CPU, but *the same* *Ubuntu
  12.04* Desktop CD/LiveUSB starts fine on *the same CPU* (and same PAE
  kernel) if GRUB boot loader is used, for example when WUBI or LiveUSB
  with GRUB boot loader, like Multisystem
  (http://liveusb.info/dotclear/index.php?pages/install ) is used!

  The error message is:
  "This kernel requires the following features not present on the CPU: pae.
  Unable to boot - please use a kernel appropriate for you CPU."

  THIS IS AN IMPORTANT REGRESSION! People are able to install and successfully 
use Ubuntu 12.04 on such pretty new hardware, like IBM Thinkpad T42 laptop with 
Pentium M 1700Mhz processor, but the bug in syslinux (or something related) 
forbids Ubuntu 12.04 installation.
  This bug is reproducible on lots of computers, there are several log files 
and /proc/cpuinfo file attached to this bugreport, AFAIK it's enough to reopen 
this bug.

  ---
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  CurrentDmesg: Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order 
/var/log/dmesg -'] failed with exit code 1: comm: /var/log/dmesg: Permission 
denied
  MachineType: IBM 2373PPU
  dmi.bios.date: 06/18/2007
  dmi.bios.vendor: IBM
  dmi.bios.version: 1RETDRWW (3.23 )
  dmi.board.name: 2373PPU
  dmi.board.vendor: IBM
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: IBM
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnIBM:bvr1RETDRWW(3.23):bd06/18/2007:svnIBM:pn2373PPU:pvrThinkPadT42:rvnIBM:rn2373PPU:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
  dmi.product.name: 2373PPU
  dmi.product.version: ThinkPad T42
  dmi.sys.vendor: IBM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/930447/+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 930447] Re: Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M x86 Laptop due to bug in PAE kernel, initramfs or syslinux

2013-12-03 Thread sudodus
Hi Roland,

Nice list :-) How did you compile it? Are all those CPUs tested, or are
you adding some of the CPUs versions via logical conclusions?

Best regards
Nio

-- 
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/930447

Title:
  Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M
  x86 Laptop due to bug in PAE kernel, initramfs or syslinux

Status in “linux” package in Ubuntu:
  Confirmed
Status in “syslinux” package in Ubuntu:
  Invalid
Status in Baltix GNU/Linux:
  Triaged

Bug description:
  Ubuntu 12.04 doesn't start from Desktop CD or USB with syslinux boot
  loader on Pentium M 1.6Ghz or faster Pentium M CPU - displays error
  message about missing PAE feature in CPU, but *the same* *Ubuntu
  12.04* Desktop CD/LiveUSB starts fine on *the same CPU* (and same PAE
  kernel) if GRUB boot loader is used, for example when WUBI or LiveUSB
  with GRUB boot loader, like Multisystem
  (http://liveusb.info/dotclear/index.php?pages/install ) is used!

  The error message is:
  "This kernel requires the following features not present on the CPU: pae.
  Unable to boot - please use a kernel appropriate for you CPU."

  THIS IS AN IMPORTANT REGRESSION! People are able to install and successfully 
use Ubuntu 12.04 on such pretty new hardware, like IBM Thinkpad T42 laptop with 
Pentium M 1700Mhz processor, but the bug in syslinux (or something related) 
forbids Ubuntu 12.04 installation.
  This bug is reproducible on lots of computers, there are several log files 
and /proc/cpuinfo file attached to this bugreport, AFAIK it's enough to reopen 
this bug.

  ---
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  CurrentDmesg: Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order 
/var/log/dmesg -'] failed with exit code 1: comm: /var/log/dmesg: Permission 
denied
  MachineType: IBM 2373PPU
  dmi.bios.date: 06/18/2007
  dmi.bios.vendor: IBM
  dmi.bios.version: 1RETDRWW (3.23 )
  dmi.board.name: 2373PPU
  dmi.board.vendor: IBM
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: IBM
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnIBM:bvr1RETDRWW(3.23):bd06/18/2007:svnIBM:pn2373PPU:pvrThinkPadT42:rvnIBM:rn2373PPU:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
  dmi.product.name: 2373PPU
  dmi.product.version: ThinkPad T42
  dmi.sys.vendor: IBM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/930447/+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 930447] Re: Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M x86 Laptop due to bug in PAE kernel, initramfs or syslinux

2013-11-29 Thread sudodus
There is a start for such a whitelist in comment #203 :-)

If *you* have a Celeron M or Pentium M different from those in that
list, please supply your result of the PAE test described in

https://help.ubuntu.com/community/Lubuntu-fake-PAE

-- 
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/930447

Title:
  Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M
  x86 Laptop due to bug in PAE kernel, initramfs or syslinux

Status in “linux” package in Ubuntu:
  Confirmed
Status in “syslinux” package in Ubuntu:
  Invalid
Status in Baltix GNU/Linux:
  Triaged

Bug description:
  Ubuntu 12.04 doesn't start from Desktop CD or USB with syslinux boot
  loader on Pentium M 1.6Ghz or faster Pentium M CPU - displays error
  message about missing PAE feature in CPU, but *the same* *Ubuntu
  12.04* Desktop CD/LiveUSB starts fine on *the same CPU* (and same PAE
  kernel) if GRUB boot loader is used, for example when WUBI or LiveUSB
  with GRUB boot loader, like Multisystem
  (http://liveusb.info/dotclear/index.php?pages/install ) is used!

  The error message is:
  "This kernel requires the following features not present on the CPU: pae.
  Unable to boot - please use a kernel appropriate for you CPU."

  THIS IS AN IMPORTANT REGRESSION! People are able to install and successfully 
use Ubuntu 12.04 on such pretty new hardware, like IBM Thinkpad T42 laptop with 
Pentium M 1700Mhz processor, but the bug in syslinux (or something related) 
forbids Ubuntu 12.04 installation.
  This bug is reproducible on lots of computers, there are several log files 
and /proc/cpuinfo file attached to this bugreport, AFAIK it's enough to reopen 
this bug.

  ---
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  CurrentDmesg: Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order 
/var/log/dmesg -'] failed with exit code 1: comm: /var/log/dmesg: Permission 
denied
  MachineType: IBM 2373PPU
  dmi.bios.date: 06/18/2007
  dmi.bios.vendor: IBM
  dmi.bios.version: 1RETDRWW (3.23 )
  dmi.board.name: 2373PPU
  dmi.board.vendor: IBM
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: IBM
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnIBM:bvr1RETDRWW(3.23):bd06/18/2007:svnIBM:pn2373PPU:pvrThinkPadT42:rvnIBM:rn2373PPU:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
  dmi.product.name: 2373PPU
  dmi.product.version: ThinkPad T42
  dmi.sys.vendor: IBM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/930447/+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 1246664] Re: "Buffer I/O error on device zram0, logical block 515067"

2013-11-21 Thread sudodus
I tested Mélodie's system in a Toshiba with an Intel i5 processor according to 
the attached file "submission.xml".
zram was active (without any tweaks by me).
--
>> Yes  What do you expect Xnoise to do? I'm familiar with Audacity.
>
> It seems not to be able to read ogg files I don't know why and it sometimes 
> crashes on
> certain videos, but not all.

I did not install any multimedia package (only used what comes with
Bento).

Long ago I made some ogg files from an audio CD, and I can play them
with Xnoise in Bento. Maybe your ogg files were not quite according to
the specification.

Xnoise works also with video clips with two containers and three codecs
that I tested. (Obviously I cannot test every container and codec.)

mp4, and wmv containers
ffodivx, ffh264 and ffwmv3 codecs

> You could start from the console "checkbox-gtk", you can avoid testing
> anything and just keep the basic "all kinds of tests" stuff, then get the 
> file produces
> and save it for the bug report page.

I could run the suggested tasks in checkbox-gtk (and could answer 'yes',
things work 

And in general, so far it works with both

Linux bentotest 3.8.0-33-generic and
Linux bentotest 3.2.0-57-generic-pae
--
Regards
Nio

** Attachment added: "output from  "checkbox-gtk""
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1246664/+attachment/3914352/+files/submission.xml

-- 
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/1246664

Title:
  "Buffer I/O error on device zram0, logical block 515067"

Status in “linux” package in Ubuntu:
  Fix Released
Status in “linux” source package in Precise:
  Fix Committed
Status in “linux” source package in Saucy:
  Fix Released

Bug description:
  SRU Justification:

  Commit 12a7ad3 "zram: avoid access beyond the zram device" introduced
  a regression where valid_io_request() checks if request end coincides
  with disksize (end equals bound).  It fails if we attempt to read
  beyond the bound.

  Impact:

  Several errors will be logged if, for example, zram-config is
  installed:

  [ 14.666280] zram: module is from the staging directory, the quality is 
unknown, you have been warned.
  [ 14.667040] zram: Creating 1 devices ...
  [ 14.830355] Buffer I/O error on device zram0, logical block 62411
  [ 14.830375] Buffer I/O error on device zram0, logical block 62411
  [ 14.830598] Buffer I/O error on device zram0, logical block 62411
  [ 14.830621] Buffer I/O error on device zram0, logical block 62411
  [ 14.878597] Adding 249644k swap on /dev/zram0. Priority:5 extents:1 
across:249644k SS

  Fix:

  Commit 75c7caf5a052ffd8db3312fa7864ee2d142890c4 "zram: allow request
  end to coincide with disksize" fixes the issue by correcting the test
  in valid_io_request() function.

  Testcase:

  I was able to reproduce the issue by simply installing zram-config in
  a precise box.

  
=

  This is a duplicate of #1217189, but for some reason neither @oibaf
  nor me can reopen it. It is in "fix released" state, but the problem
  is at most partially solved. It seems that the bug no longer causes
  lockups (described in another bug: #1215513), but is still present (as
  I get error messages on boot screen and after $ dmesg | grep zram).

  If someone has enough privileges to reopen 1217189 for "linux
  (ubuntu)" (I don't know about raring, but no one complains, so it is
  probably ok), and remove this bug (maybe merging this message to the
  comments in 1217189), I would be really grateful.

  Ubuntu 12.04.3 LTS
  Kernel Linux 3.2.0-56-generic-pae (the problem was first observed in 53 and 
since 54 there are no lockups).
  ---
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
  AplayDevices:
    List of PLAYBACK Hardware Devices 
   card 0: Intel [HDA Intel], device 0: ALC268 Analog [ALC268 Analog]
     Subdevices: 1/1
     Subdevice #0: subdevice #0
  ApportVersion: 2.0.1-0ubuntu17.6
  Architecture: i386
  ArecordDevices:
    List of CAPTURE Hardware Devices 
   card 0: Intel [HDA Intel], device 0: ALC268 Analog [ALC268 Analog]
     Subdevices: 1/1
     Subdevice #0: subdevice #0
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  damian 2771 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'Intel'/'HDA Intel at 0xf830 irq 47'
     Mixer name : 'Realtek ALC268'
     Components : 'HDA:10ec0268,10280275,0013'
     Controls  : 16
     Simple ctrls  : 9
  DistroRelease: Ubuntu 12.04
  MachineType: Dell Inc. Vostro1710
  MarkForUpload: True
  NonfreeKernelModules: nvidia wl
  Package: linux (not installed)
  ProcFB:

  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-56-generic-pae 
root=UUID=bfe81069-1c35-4ccc-a23a-33528ac81877 ro selinux=1 security=selinux 
quiet splash
  ProcVersionSignature: Ubuntu 3.2.0-56.86-generic-pae 3

Re: [Kernel-packages] [Bug 1227202] Re: Unexpected freezes Saucy

2013-10-01 Thread sudodus
On 2013-10-01 18:02, Phill Whiteside wrote:
> Hi Nio,
> 
> I just popped desktop amd64 onto my VM, no hang and..
> 
> swapon -s reports zram as being in use.
> 
> Happy days!
> 
> Phill.
> 
Great news :-)

Nio

-- 
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/1227202

Title:
  Unexpected freezes Saucy

Status in “linux” package in Ubuntu:
  Fix Released
Status in “linux” source package in Saucy:
  Fix Released

Bug description:
  When using desktop-installer with lubuntu there is a freeze at the
  very end (bug 1225429) which also affects desktop-i386 and desktop-
  amd64. There are also unexplained freezes on the system when using it.
  Further tracking down has found
  http://ubuntuforums.org/showthread.php?t=2162655&page=3 and earlier
  today this arrived..

  As for freezing we discovered that since kernel 3.10.6 zram is broken
  which causes freezes and was fixed only completely in 3.12rc1. We
  backported that fixes in Neptune's Kernel I am not sure if the ubuntu
  kernel devs did the same.

  *Von: *Nio Wiklund
  *Gesendet: *Mittwoch, 18. September 2013 15:39

  The links we have also found are  https://lkml.org/lkml/2013/8/12/29
  and  https://lkml.org/lkml/2013/8/19/17

  Disabling zram prevents the freeze in desktop-i386

  My machine specification is http://phillw.net/hardware/aDU4RVzY
  although using the lower RAM (512Mb) has been achieved by KVM
  http://phillw.net/hardware/LuFdGuxP increasing the available RAM to
  1GB does not show this error. It has also now been tested on 'real'
  hardware with 512Mb of RAM and is also showing the freeze (as well as
  with VBox).

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: linux-image-3.11.0-7-generic 3.11.0-7.14
  ProcVersionSignature: Ubuntu 3.11.0-7.13-generic 3.11.0
  Uname: Linux 3.11.0-7-generic x86_64
  ApportVersion: 2.12.1-0ubuntu4
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  phillw 2019 F lxpanel
  CRDA: Error: [Errno 2] No such file or directory: 'iw'
  Date: Wed Sep 18 16:13:01 2013
  HibernationDevice: RESUME=UUID=d98ac0ad-5c96-4382-8195-23b44e056358
  InstallationDate: Installed on 2013-06-29 (81 days ago)
  InstallationMedia: Lubuntu 13.10 "Saucy Salamander" - Alpha amd64 (20130628)
  MachineType: Packard Bell EasyNote LJ71
  MarkForUpload: True
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-7-generic 
root=UUID=69c7aa0f-ccd0-4ac4-8930-e6f0efda9e6b ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-7-generic N/A
   linux-backports-modules-3.11.0-7-generic  N/A
   linux-firmware1.114
  SourcePackage: linux
  StagingDrivers: zram
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/22/2009
  dmi.bios.vendor: Packard Bell
  dmi.bios.version: V1.03
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: EasyNote LJ71
  dmi.board.vendor: Packard Bell
  dmi.board.version: V1.03
  dmi.chassis.type: 10
  dmi.chassis.vendor: Packard Bell
  dmi.chassis.version: V1.03
  dmi.modalias: 
dmi:bvnPackardBell:bvrV1.03:bd09/22/2009:svnPackardBell:pnEasyNoteLJ71:pvrV1.03:rvnPackardBell:rnEasyNoteLJ71:rvrV1.03:cvnPackardBell:ct10:cvrV1.03:
  dmi.product.name: EasyNote LJ71
  dmi.product.version: V1.03
  dmi.sys.vendor: Packard Bell

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1227202/+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 1227202] Re: Unexpected freezes Saucy

2013-09-26 Thread sudodus
I can try it.

I understand the sudo commands, but how to apply 'CONFIG_ZRAM=m'? Is it
a boot option? Or should it be entered in a config file somewhere?

-- 
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/1227202

Title:
  Unexpected freezes Saucy

Status in “linux” package in Ubuntu:
  In Progress
Status in “linux” source package in Saucy:
  In Progress

Bug description:
  When using desktop-installer with lubuntu there is a freeze at the
  very end (bug 1225429) which also affects desktop-i386 and desktop-
  amd64. There are also unexplained freezes on the system when using it.
  Further tracking down has found
  http://ubuntuforums.org/showthread.php?t=2162655&page=3 and earlier
  today this arrived..

  As for freezing we discovered that since kernel 3.10.6 zram is broken
  which causes freezes and was fixed only completely in 3.12rc1. We
  backported that fixes in Neptune's Kernel I am not sure if the ubuntu
  kernel devs did the same.

  *Von: *Nio Wiklund
  *Gesendet: *Mittwoch, 18. September 2013 15:39

  The links we have also found are  https://lkml.org/lkml/2013/8/12/29
  and  https://lkml.org/lkml/2013/8/19/17

  Disabling zram prevents the freeze in desktop-i386

  My machine specification is http://phillw.net/hardware/aDU4RVzY
  although using the lower RAM (512Mb) has been achieved by KVM
  http://phillw.net/hardware/LuFdGuxP increasing the available RAM to
  1GB does not show this error. It has also now been tested on 'real'
  hardware with 512Mb of RAM and is also showing the freeze (as well as
  with VBox).

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: linux-image-3.11.0-7-generic 3.11.0-7.14
  ProcVersionSignature: Ubuntu 3.11.0-7.13-generic 3.11.0
  Uname: Linux 3.11.0-7-generic x86_64
  ApportVersion: 2.12.1-0ubuntu4
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  phillw 2019 F lxpanel
  CRDA: Error: [Errno 2] No such file or directory: 'iw'
  Date: Wed Sep 18 16:13:01 2013
  HibernationDevice: RESUME=UUID=d98ac0ad-5c96-4382-8195-23b44e056358
  InstallationDate: Installed on 2013-06-29 (81 days ago)
  InstallationMedia: Lubuntu 13.10 "Saucy Salamander" - Alpha amd64 (20130628)
  MachineType: Packard Bell EasyNote LJ71
  MarkForUpload: True
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-7-generic 
root=UUID=69c7aa0f-ccd0-4ac4-8930-e6f0efda9e6b ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-7-generic N/A
   linux-backports-modules-3.11.0-7-generic  N/A
   linux-firmware1.114
  SourcePackage: linux
  StagingDrivers: zram
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/22/2009
  dmi.bios.vendor: Packard Bell
  dmi.bios.version: V1.03
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: EasyNote LJ71
  dmi.board.vendor: Packard Bell
  dmi.board.version: V1.03
  dmi.chassis.type: 10
  dmi.chassis.vendor: Packard Bell
  dmi.chassis.version: V1.03
  dmi.modalias: 
dmi:bvnPackardBell:bvrV1.03:bd09/22/2009:svnPackardBell:pnEasyNoteLJ71:pvrV1.03:rvnPackardBell:rnEasyNoteLJ71:rvrV1.03:cvnPackardBell:ct10:cvrV1.03:
  dmi.product.name: EasyNote LJ71
  dmi.product.version: V1.03
  dmi.sys.vendor: Packard Bell

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1227202/+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 1227202] Re: Unexpected freezes Saucy

2013-09-26 Thread sudodus
Hi Joseph,

Testing the ISO file of post #22:

When zram is running in Lubuntu I can see zram block devices with
swapon -s
but I can see no such devices running from this ISO file.

- Is zram running although I see no zram block devices?
- How can I activate zRAM or check that it is really running?
- Or is this 'only' a test how the installation works with the new kernel and 
zram switched off?

See the following lists with commands and output.

Best regards
Nio

- Lubuntu installed -
tester@tester-SATELLITE-PRO-C850-19W:/etc$ sudo grep -R ^Name=.*Logo * 
2>/dev/null
alternatives/default.plymouth:Name=Lubuntu Logo

tester@tester-SATELLITE-PRO-C850-19W:/etc$ster@tester-SATELLITE-PRO-C850-19W:/etc$
 lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu Saucy Salamander (development branch)
Release:13.10
Codename:   saucy

tester@tester-SATELLITE-PRO-C850-19W:/etc$ uname -a
Linux tester-SATELLITE-PRO-C850-19W 3.11.0-7-generic #14~lp1227202v1 SMP Wed 
Sep 18 16:02:47 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux

tester@tester-SATELLITE-PRO-C850-19W:/etc$ swapon -s
FilenameTypeSizeUsedPriority
/dev/sda2   partition   5058128 0   -1
/dev/zram0  partition   491096  0   5
/dev/zram1  partition   491096  0   5
/dev/zram2  partition   491096  0   5
/dev/zram3  partition   491096  0   5
tester@tester-SATELLITE-PRO-C850-19W:/etc$ 

- Ubuntu live in KVM -
sudo grep -R ^Name=.*Logo * 2>/dev/null
alternatives/default.plymouth:Name=Ubuntu Logo

lsb_release -a
Distributor ID: Ubuntu
Description:Ubuntu Saucy Salamander (development branch)
Release:13.10
Codename:   saucy

uname -a
Linux ubuntu 3.11.0-7-generic #14~lp1227202v1 SMP Wed Sep 18 16:02:47 UTC 2013 
x86_64 x86_64 x86_64 GNU/Linux

swapon -s
FilenameTypeSizeUsedPriority
/dev/vda5   partition   1961980 0   -1
-

-- 
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/1227202

Title:
  Unexpected freezes Saucy

Status in “linux” package in Ubuntu:
  In Progress

Bug description:
  When using desktop-installer with lubuntu there is a freeze at the
  very end (bug 1225429) which also affects desktop-i386 and desktop-
  amd64. There are also unexplained freezes on the system when using it.
  Further tracking down has found
  http://ubuntuforums.org/showthread.php?t=2162655&page=3 and earlier
  today this arrived..

  As for freezing we discovered that since kernel 3.10.6 zram is broken
  which causes freezes and was fixed only completely in 3.12rc1. We
  backported that fixes in Neptune's Kernel I am not sure if the ubuntu
  kernel devs did the same.

  *Von: *Nio Wiklund
  *Gesendet: *Mittwoch, 18. September 2013 15:39

  The links we have also found are  https://lkml.org/lkml/2013/8/12/29
  and  https://lkml.org/lkml/2013/8/19/17

  Disabling zram prevents the freeze in desktop-i386

  My machine specification is http://phillw.net/hardware/aDU4RVzY
  although using the lower RAM (512Mb) has been achieved by KVM
  http://phillw.net/hardware/LuFdGuxP increasing the available RAM to
  1GB does not show this error. It has also now been tested on 'real'
  hardware with 512Mb of RAM and is also showing the freeze (as well as
  with VBox).

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: linux-image-3.11.0-7-generic 3.11.0-7.14
  ProcVersionSignature: Ubuntu 3.11.0-7.13-generic 3.11.0
  Uname: Linux 3.11.0-7-generic x86_64
  ApportVersion: 2.12.1-0ubuntu4
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  phillw 2019 F lxpanel
  CRDA: Error: [Errno 2] No such file or directory: 'iw'
  Date: Wed Sep 18 16:13:01 2013
  HibernationDevice: RESUME=UUID=d98ac0ad-5c96-4382-8195-23b44e056358
  InstallationDate: Installed on 2013-06-29 (81 days ago)
  InstallationMedia: Lubuntu 13.10 "Saucy Salamander" - Alpha amd64 (20130628)
  MachineType: Packard Bell EasyNote LJ71
  MarkForUpload: True
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-7-generic 
root=UUID=69c7aa0f-ccd0-4ac4-8930-e6f0efda9e6b ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-7-generic N/A
   linux-backports-modules-3.11.0-7-generic  N/A
   linux-firmware1.114
  SourcePackage: linux
  StagingDrivers: zram
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/22/2009
  dmi.bios.vendor: Packard Bell
  dmi.bios.version: V1.03
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: EasyNote LJ71
  dmi.board.vendor: Packard Bell
  

Re: [Kernel-packages] [Bug 1227202] Re: Unexpected freezes Saucy

2013-09-25 Thread sudodus
On 2013-09-26 00:45, Phill Whiteside wrote:
> Hi Joe,
> 
> install went okay, (slow, but to be accepted with 512MB RAM and Ubuntu).
> Reboot did not freeze and the system rebooted fine. Uses a heck of a lot
> of swap (again to be expected). So, the major bug is now resolved. We
> can now look at other issues once we have a full set of ISO's for
> lubuntu.
> 
> You are a star of the 1st magnitude!
> 
> Phill.
> 

Hi Phill,

Running from the menu item

'Install Ubuntu'

and looking behind the curtain' with ctrl + alt + F2 (or the
corresponding key combo emulation in KVM), I see no zram block devices with

swapon -s

How did you activate zRAM or check that it is really running? Or did you
just assume that it is?

Best regards
Nio

-- 
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/1227202

Title:
  Unexpected freezes Saucy

Status in “linux” package in Ubuntu:
  In Progress

Bug description:
  When using desktop-installer with lubuntu there is a freeze at the
  very end (bug 1225429) which also affects desktop-i386 and desktop-
  amd64. There are also unexplained freezes on the system when using it.
  Further tracking down has found
  http://ubuntuforums.org/showthread.php?t=2162655&page=3 and earlier
  today this arrived..

  As for freezing we discovered that since kernel 3.10.6 zram is broken
  which causes freezes and was fixed only completely in 3.12rc1. We
  backported that fixes in Neptune's Kernel I am not sure if the ubuntu
  kernel devs did the same.

  *Von: *Nio Wiklund
  *Gesendet: *Mittwoch, 18. September 2013 15:39

  The links we have also found are  https://lkml.org/lkml/2013/8/12/29
  and  https://lkml.org/lkml/2013/8/19/17

  Disabling zram prevents the freeze in desktop-i386

  My machine specification is http://phillw.net/hardware/aDU4RVzY
  although using the lower RAM (512Mb) has been achieved by KVM
  http://phillw.net/hardware/LuFdGuxP increasing the available RAM to
  1GB does not show this error. It has also now been tested on 'real'
  hardware with 512Mb of RAM and is also showing the freeze (as well as
  with VBox).

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: linux-image-3.11.0-7-generic 3.11.0-7.14
  ProcVersionSignature: Ubuntu 3.11.0-7.13-generic 3.11.0
  Uname: Linux 3.11.0-7-generic x86_64
  ApportVersion: 2.12.1-0ubuntu4
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  phillw 2019 F lxpanel
  CRDA: Error: [Errno 2] No such file or directory: 'iw'
  Date: Wed Sep 18 16:13:01 2013
  HibernationDevice: RESUME=UUID=d98ac0ad-5c96-4382-8195-23b44e056358
  InstallationDate: Installed on 2013-06-29 (81 days ago)
  InstallationMedia: Lubuntu 13.10 "Saucy Salamander" - Alpha amd64 (20130628)
  MachineType: Packard Bell EasyNote LJ71
  MarkForUpload: True
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-7-generic 
root=UUID=69c7aa0f-ccd0-4ac4-8930-e6f0efda9e6b ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-7-generic N/A
   linux-backports-modules-3.11.0-7-generic  N/A
   linux-firmware1.114
  SourcePackage: linux
  StagingDrivers: zram
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/22/2009
  dmi.bios.vendor: Packard Bell
  dmi.bios.version: V1.03
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: EasyNote LJ71
  dmi.board.vendor: Packard Bell
  dmi.board.version: V1.03
  dmi.chassis.type: 10
  dmi.chassis.vendor: Packard Bell
  dmi.chassis.version: V1.03
  dmi.modalias: 
dmi:bvnPackardBell:bvrV1.03:bd09/22/2009:svnPackardBell:pnEasyNoteLJ71:pvrV1.03:rvnPackardBell:rnEasyNoteLJ71:rvrV1.03:cvnPackardBell:ct10:cvrV1.03:
  dmi.product.name: EasyNote LJ71
  dmi.product.version: V1.03
  dmi.sys.vendor: Packard Bell

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1227202/+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 1227202] Re: Unexpected freezes Saucy

2013-09-25 Thread sudodus
The 'install Ubuntu' menu item works, and I can start text screens with
ctrl+alt+F2 ... , but still, I cannot activate zram.

-- 
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/1227202

Title:
  Unexpected freezes Saucy

Status in “linux” package in Ubuntu:
  In Progress

Bug description:
  When using desktop-installer with lubuntu there is a freeze at the
  very end (bug 1225429) which also affects desktop-i386 and desktop-
  amd64. There are also unexplained freezes on the system when using it.
  Further tracking down has found
  http://ubuntuforums.org/showthread.php?t=2162655&page=3 and earlier
  today this arrived..

  As for freezing we discovered that since kernel 3.10.6 zram is broken
  which causes freezes and was fixed only completely in 3.12rc1. We
  backported that fixes in Neptune's Kernel I am not sure if the ubuntu
  kernel devs did the same.

  *Von: *Nio Wiklund
  *Gesendet: *Mittwoch, 18. September 2013 15:39

  The links we have also found are  https://lkml.org/lkml/2013/8/12/29
  and  https://lkml.org/lkml/2013/8/19/17

  Disabling zram prevents the freeze in desktop-i386

  My machine specification is http://phillw.net/hardware/aDU4RVzY
  although using the lower RAM (512Mb) has been achieved by KVM
  http://phillw.net/hardware/LuFdGuxP increasing the available RAM to
  1GB does not show this error. It has also now been tested on 'real'
  hardware with 512Mb of RAM and is also showing the freeze (as well as
  with VBox).

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: linux-image-3.11.0-7-generic 3.11.0-7.14
  ProcVersionSignature: Ubuntu 3.11.0-7.13-generic 3.11.0
  Uname: Linux 3.11.0-7-generic x86_64
  ApportVersion: 2.12.1-0ubuntu4
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  phillw 2019 F lxpanel
  CRDA: Error: [Errno 2] No such file or directory: 'iw'
  Date: Wed Sep 18 16:13:01 2013
  HibernationDevice: RESUME=UUID=d98ac0ad-5c96-4382-8195-23b44e056358
  InstallationDate: Installed on 2013-06-29 (81 days ago)
  InstallationMedia: Lubuntu 13.10 "Saucy Salamander" - Alpha amd64 (20130628)
  MachineType: Packard Bell EasyNote LJ71
  MarkForUpload: True
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-7-generic 
root=UUID=69c7aa0f-ccd0-4ac4-8930-e6f0efda9e6b ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-7-generic N/A
   linux-backports-modules-3.11.0-7-generic  N/A
   linux-firmware1.114
  SourcePackage: linux
  StagingDrivers: zram
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/22/2009
  dmi.bios.vendor: Packard Bell
  dmi.bios.version: V1.03
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: EasyNote LJ71
  dmi.board.vendor: Packard Bell
  dmi.board.version: V1.03
  dmi.chassis.type: 10
  dmi.chassis.vendor: Packard Bell
  dmi.chassis.version: V1.03
  dmi.modalias: 
dmi:bvnPackardBell:bvrV1.03:bd09/22/2009:svnPackardBell:pnEasyNoteLJ71:pvrV1.03:rvnPackardBell:rnEasyNoteLJ71:rvrV1.03:cvnPackardBell:ct10:cvrV1.03:
  dmi.product.name: EasyNote LJ71
  dmi.product.version: V1.03
  dmi.sys.vendor: Packard Bell

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1227202/+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 1227202] Re: Unexpected freezes Saucy

2013-09-25 Thread sudodus
Will it work for us at all to test installing with zram using this
Ubuntu ISO file, or must we to get a Lubuntu ISO 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/1227202

Title:
  Unexpected freezes Saucy

Status in “linux” package in Ubuntu:
  In Progress

Bug description:
  When using desktop-installer with lubuntu there is a freeze at the
  very end (bug 1225429) which also affects desktop-i386 and desktop-
  amd64. There are also unexplained freezes on the system when using it.
  Further tracking down has found
  http://ubuntuforums.org/showthread.php?t=2162655&page=3 and earlier
  today this arrived..

  As for freezing we discovered that since kernel 3.10.6 zram is broken
  which causes freezes and was fixed only completely in 3.12rc1. We
  backported that fixes in Neptune's Kernel I am not sure if the ubuntu
  kernel devs did the same.

  *Von: *Nio Wiklund
  *Gesendet: *Mittwoch, 18. September 2013 15:39

  The links we have also found are  https://lkml.org/lkml/2013/8/12/29
  and  https://lkml.org/lkml/2013/8/19/17

  Disabling zram prevents the freeze in desktop-i386

  My machine specification is http://phillw.net/hardware/aDU4RVzY
  although using the lower RAM (512Mb) has been achieved by KVM
  http://phillw.net/hardware/LuFdGuxP increasing the available RAM to
  1GB does not show this error. It has also now been tested on 'real'
  hardware with 512Mb of RAM and is also showing the freeze (as well as
  with VBox).

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: linux-image-3.11.0-7-generic 3.11.0-7.14
  ProcVersionSignature: Ubuntu 3.11.0-7.13-generic 3.11.0
  Uname: Linux 3.11.0-7-generic x86_64
  ApportVersion: 2.12.1-0ubuntu4
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  phillw 2019 F lxpanel
  CRDA: Error: [Errno 2] No such file or directory: 'iw'
  Date: Wed Sep 18 16:13:01 2013
  HibernationDevice: RESUME=UUID=d98ac0ad-5c96-4382-8195-23b44e056358
  InstallationDate: Installed on 2013-06-29 (81 days ago)
  InstallationMedia: Lubuntu 13.10 "Saucy Salamander" - Alpha amd64 (20130628)
  MachineType: Packard Bell EasyNote LJ71
  MarkForUpload: True
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-7-generic 
root=UUID=69c7aa0f-ccd0-4ac4-8930-e6f0efda9e6b ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-7-generic N/A
   linux-backports-modules-3.11.0-7-generic  N/A
   linux-firmware1.114
  SourcePackage: linux
  StagingDrivers: zram
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/22/2009
  dmi.bios.vendor: Packard Bell
  dmi.bios.version: V1.03
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: EasyNote LJ71
  dmi.board.vendor: Packard Bell
  dmi.board.version: V1.03
  dmi.chassis.type: 10
  dmi.chassis.vendor: Packard Bell
  dmi.chassis.version: V1.03
  dmi.modalias: 
dmi:bvnPackardBell:bvrV1.03:bd09/22/2009:svnPackardBell:pnEasyNoteLJ71:pvrV1.03:rvnPackardBell:rnEasyNoteLJ71:rvrV1.03:cvnPackardBell:ct10:cvrV1.03:
  dmi.product.name: EasyNote LJ71
  dmi.product.version: V1.03
  dmi.sys.vendor: Packard Bell

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1227202/+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 1227202] Re: Unexpected freezes Saucy

2013-09-25 Thread sudodus
I have Ubuntu running in KVM. The live desktop is OK with a VGA screen.
But ...

1. Ubiquity starts but only in the background. There is no window. How
can I test installing?

2. There is no zram. When I try to install zram-config, apt-get
complains: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/z
/zram-config_0.1_all.deb Could not resolve 'archive.ubuntu.com'

What should I do? Need I activate some more repository?

-- 
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/1227202

Title:
  Unexpected freezes Saucy

Status in “linux” package in Ubuntu:
  In Progress

Bug description:
  When using desktop-installer with lubuntu there is a freeze at the
  very end (bug 1225429) which also affects desktop-i386 and desktop-
  amd64. There are also unexplained freezes on the system when using it.
  Further tracking down has found
  http://ubuntuforums.org/showthread.php?t=2162655&page=3 and earlier
  today this arrived..

  As for freezing we discovered that since kernel 3.10.6 zram is broken
  which causes freezes and was fixed only completely in 3.12rc1. We
  backported that fixes in Neptune's Kernel I am not sure if the ubuntu
  kernel devs did the same.

  *Von: *Nio Wiklund
  *Gesendet: *Mittwoch, 18. September 2013 15:39

  The links we have also found are  https://lkml.org/lkml/2013/8/12/29
  and  https://lkml.org/lkml/2013/8/19/17

  Disabling zram prevents the freeze in desktop-i386

  My machine specification is http://phillw.net/hardware/aDU4RVzY
  although using the lower RAM (512Mb) has been achieved by KVM
  http://phillw.net/hardware/LuFdGuxP increasing the available RAM to
  1GB does not show this error. It has also now been tested on 'real'
  hardware with 512Mb of RAM and is also showing the freeze (as well as
  with VBox).

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: linux-image-3.11.0-7-generic 3.11.0-7.14
  ProcVersionSignature: Ubuntu 3.11.0-7.13-generic 3.11.0
  Uname: Linux 3.11.0-7-generic x86_64
  ApportVersion: 2.12.1-0ubuntu4
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  phillw 2019 F lxpanel
  CRDA: Error: [Errno 2] No such file or directory: 'iw'
  Date: Wed Sep 18 16:13:01 2013
  HibernationDevice: RESUME=UUID=d98ac0ad-5c96-4382-8195-23b44e056358
  InstallationDate: Installed on 2013-06-29 (81 days ago)
  InstallationMedia: Lubuntu 13.10 "Saucy Salamander" - Alpha amd64 (20130628)
  MachineType: Packard Bell EasyNote LJ71
  MarkForUpload: True
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-7-generic 
root=UUID=69c7aa0f-ccd0-4ac4-8930-e6f0efda9e6b ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-7-generic N/A
   linux-backports-modules-3.11.0-7-generic  N/A
   linux-firmware1.114
  SourcePackage: linux
  StagingDrivers: zram
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/22/2009
  dmi.bios.vendor: Packard Bell
  dmi.bios.version: V1.03
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: EasyNote LJ71
  dmi.board.vendor: Packard Bell
  dmi.board.version: V1.03
  dmi.chassis.type: 10
  dmi.chassis.vendor: Packard Bell
  dmi.chassis.version: V1.03
  dmi.modalias: 
dmi:bvnPackardBell:bvrV1.03:bd09/22/2009:svnPackardBell:pnEasyNoteLJ71:pvrV1.03:rvnPackardBell:rnEasyNoteLJ71:rvrV1.03:cvnPackardBell:ct10:cvrV1.03:
  dmi.product.name: EasyNote LJ71
  dmi.product.version: V1.03
  dmi.sys.vendor: Packard Bell

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1227202/+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 1227202] Re: Unexpected freezes Saucy

2013-09-25 Thread sudodus
Joseph,

I downloaded the ISO file of post #22. Please confirm or correct the
following size and md5sum!

wc -c ubuntu-13.10-desktop-amd64-lp1227202.iso
1049980928 ubuntu-13.10-desktop-amd64-lp1227202.iso

md5sum ubuntu-13.10-desktop-amd64-lp1227202.iso
e939fec65cd6d9a01689b22468f2300a  ubuntu-13.10-desktop-amd64-lp1227202.iso

Thanks for your continued work on this issue,
Nio

-- 
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/1227202

Title:
  Unexpected freezes Saucy

Status in “linux” package in Ubuntu:
  In Progress

Bug description:
  When using desktop-installer with lubuntu there is a freeze at the
  very end (bug 1225429) which also affects desktop-i386 and desktop-
  amd64. There are also unexplained freezes on the system when using it.
  Further tracking down has found
  http://ubuntuforums.org/showthread.php?t=2162655&page=3 and earlier
  today this arrived..

  As for freezing we discovered that since kernel 3.10.6 zram is broken
  which causes freezes and was fixed only completely in 3.12rc1. We
  backported that fixes in Neptune's Kernel I am not sure if the ubuntu
  kernel devs did the same.

  *Von: *Nio Wiklund
  *Gesendet: *Mittwoch, 18. September 2013 15:39

  The links we have also found are  https://lkml.org/lkml/2013/8/12/29
  and  https://lkml.org/lkml/2013/8/19/17

  Disabling zram prevents the freeze in desktop-i386

  My machine specification is http://phillw.net/hardware/aDU4RVzY
  although using the lower RAM (512Mb) has been achieved by KVM
  http://phillw.net/hardware/LuFdGuxP increasing the available RAM to
  1GB does not show this error. It has also now been tested on 'real'
  hardware with 512Mb of RAM and is also showing the freeze (as well as
  with VBox).

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: linux-image-3.11.0-7-generic 3.11.0-7.14
  ProcVersionSignature: Ubuntu 3.11.0-7.13-generic 3.11.0
  Uname: Linux 3.11.0-7-generic x86_64
  ApportVersion: 2.12.1-0ubuntu4
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  phillw 2019 F lxpanel
  CRDA: Error: [Errno 2] No such file or directory: 'iw'
  Date: Wed Sep 18 16:13:01 2013
  HibernationDevice: RESUME=UUID=d98ac0ad-5c96-4382-8195-23b44e056358
  InstallationDate: Installed on 2013-06-29 (81 days ago)
  InstallationMedia: Lubuntu 13.10 "Saucy Salamander" - Alpha amd64 (20130628)
  MachineType: Packard Bell EasyNote LJ71
  MarkForUpload: True
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-7-generic 
root=UUID=69c7aa0f-ccd0-4ac4-8930-e6f0efda9e6b ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-7-generic N/A
   linux-backports-modules-3.11.0-7-generic  N/A
   linux-firmware1.114
  SourcePackage: linux
  StagingDrivers: zram
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/22/2009
  dmi.bios.vendor: Packard Bell
  dmi.bios.version: V1.03
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: EasyNote LJ71
  dmi.board.vendor: Packard Bell
  dmi.board.version: V1.03
  dmi.chassis.type: 10
  dmi.chassis.vendor: Packard Bell
  dmi.chassis.version: V1.03
  dmi.modalias: 
dmi:bvnPackardBell:bvrV1.03:bd09/22/2009:svnPackardBell:pnEasyNoteLJ71:pvrV1.03:rvnPackardBell:rnEasyNoteLJ71:rvrV1.03:cvnPackardBell:ct10:cvrV1.03:
  dmi.product.name: EasyNote LJ71
  dmi.product.version: V1.03
  dmi.sys.vendor: Packard Bell

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1227202/+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 1227202] Re: Unexpected freezes Saucy

2013-09-25 Thread sudodus
I have tested the Lubuntu Saucy beta2 ISO files now, live, installing
and installed. It is easy to provoke a crash using the kernels (i386 and
amd64), that come with the ISO files.

I installed the kernel in post #6 into this beta2 amd64 version, and it
has *not* crashed for me. But I have had no chance to test the
installation process. I can only guess, that it would work with the
debugged kernel.

-- 
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/1227202

Title:
  Unexpected freezes Saucy

Status in “linux” package in Ubuntu:
  In Progress

Bug description:
  When using desktop-installer with lubuntu there is a freeze at the
  very end (bug 1225429) which also affects desktop-i386 and desktop-
  amd64. There are also unexplained freezes on the system when using it.
  Further tracking down has found
  http://ubuntuforums.org/showthread.php?t=2162655&page=3 and earlier
  today this arrived..

  As for freezing we discovered that since kernel 3.10.6 zram is broken
  which causes freezes and was fixed only completely in 3.12rc1. We
  backported that fixes in Neptune's Kernel I am not sure if the ubuntu
  kernel devs did the same.

  *Von: *Nio Wiklund
  *Gesendet: *Mittwoch, 18. September 2013 15:39

  The links we have also found are  https://lkml.org/lkml/2013/8/12/29
  and  https://lkml.org/lkml/2013/8/19/17

  Disabling zram prevents the freeze in desktop-i386

  My machine specification is http://phillw.net/hardware/aDU4RVzY
  although using the lower RAM (512Mb) has been achieved by KVM
  http://phillw.net/hardware/LuFdGuxP increasing the available RAM to
  1GB does not show this error. It has also now been tested on 'real'
  hardware with 512Mb of RAM and is also showing the freeze (as well as
  with VBox).

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: linux-image-3.11.0-7-generic 3.11.0-7.14
  ProcVersionSignature: Ubuntu 3.11.0-7.13-generic 3.11.0
  Uname: Linux 3.11.0-7-generic x86_64
  ApportVersion: 2.12.1-0ubuntu4
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  phillw 2019 F lxpanel
  CRDA: Error: [Errno 2] No such file or directory: 'iw'
  Date: Wed Sep 18 16:13:01 2013
  HibernationDevice: RESUME=UUID=d98ac0ad-5c96-4382-8195-23b44e056358
  InstallationDate: Installed on 2013-06-29 (81 days ago)
  InstallationMedia: Lubuntu 13.10 "Saucy Salamander" - Alpha amd64 (20130628)
  MachineType: Packard Bell EasyNote LJ71
  MarkForUpload: True
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-7-generic 
root=UUID=69c7aa0f-ccd0-4ac4-8930-e6f0efda9e6b ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-7-generic N/A
   linux-backports-modules-3.11.0-7-generic  N/A
   linux-firmware1.114
  SourcePackage: linux
  StagingDrivers: zram
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/22/2009
  dmi.bios.vendor: Packard Bell
  dmi.bios.version: V1.03
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: EasyNote LJ71
  dmi.board.vendor: Packard Bell
  dmi.board.version: V1.03
  dmi.chassis.type: 10
  dmi.chassis.vendor: Packard Bell
  dmi.chassis.version: V1.03
  dmi.modalias: 
dmi:bvnPackardBell:bvrV1.03:bd09/22/2009:svnPackardBell:pnEasyNoteLJ71:pvrV1.03:rvnPackardBell:rnEasyNoteLJ71:rvrV1.03:cvnPackardBell:ct10:cvrV1.03:
  dmi.product.name: EasyNote LJ71
  dmi.product.version: V1.03
  dmi.sys.vendor: Packard Bell

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1227202/+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 1227202] Re: Unexpected freezes Saucy

2013-09-24 Thread sudodus
The kernel in #6 has not crashed for me (and I have tested it for
several days), but if I understand correctly, it has crashed for another
tester, Lars Noodén. Please ask him directly to determine if that is
correct.

I cannot determine, which bug is causing which crash, unless guided by
you or someone else.

I would also like to get an ISO file with that kernel (in post #6) in
order to test installing.

-- 
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/1227202

Title:
  Unexpected freezes Saucy

Status in “linux” package in Ubuntu:
  In Progress

Bug description:
  When using desktop-installer with lubuntu there is a freeze at the
  very end (bug 1225429) which also affects desktop-i386 and desktop-
  amd64. There are also unexplained freezes on the system when using it.
  Further tracking down has found
  http://ubuntuforums.org/showthread.php?t=2162655&page=3 and earlier
  today this arrived..

  As for freezing we discovered that since kernel 3.10.6 zram is broken
  which causes freezes and was fixed only completely in 3.12rc1. We
  backported that fixes in Neptune's Kernel I am not sure if the ubuntu
  kernel devs did the same.

  *Von: *Nio Wiklund
  *Gesendet: *Mittwoch, 18. September 2013 15:39

  The links we have also found are  https://lkml.org/lkml/2013/8/12/29
  and  https://lkml.org/lkml/2013/8/19/17

  Disabling zram prevents the freeze in desktop-i386

  My machine specification is http://phillw.net/hardware/aDU4RVzY
  although using the lower RAM (512Mb) has been achieved by KVM
  http://phillw.net/hardware/LuFdGuxP increasing the available RAM to
  1GB does not show this error. It has also now been tested on 'real'
  hardware with 512Mb of RAM and is also showing the freeze (as well as
  with VBox).

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: linux-image-3.11.0-7-generic 3.11.0-7.14
  ProcVersionSignature: Ubuntu 3.11.0-7.13-generic 3.11.0
  Uname: Linux 3.11.0-7-generic x86_64
  ApportVersion: 2.12.1-0ubuntu4
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  phillw 2019 F lxpanel
  CRDA: Error: [Errno 2] No such file or directory: 'iw'
  Date: Wed Sep 18 16:13:01 2013
  HibernationDevice: RESUME=UUID=d98ac0ad-5c96-4382-8195-23b44e056358
  InstallationDate: Installed on 2013-06-29 (81 days ago)
  InstallationMedia: Lubuntu 13.10 "Saucy Salamander" - Alpha amd64 (20130628)
  MachineType: Packard Bell EasyNote LJ71
  MarkForUpload: True
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-7-generic 
root=UUID=69c7aa0f-ccd0-4ac4-8930-e6f0efda9e6b ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-7-generic N/A
   linux-backports-modules-3.11.0-7-generic  N/A
   linux-firmware1.114
  SourcePackage: linux
  StagingDrivers: zram
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/22/2009
  dmi.bios.vendor: Packard Bell
  dmi.bios.version: V1.03
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: EasyNote LJ71
  dmi.board.vendor: Packard Bell
  dmi.board.version: V1.03
  dmi.chassis.type: 10
  dmi.chassis.vendor: Packard Bell
  dmi.chassis.version: V1.03
  dmi.modalias: 
dmi:bvnPackardBell:bvrV1.03:bd09/22/2009:svnPackardBell:pnEasyNoteLJ71:pvrV1.03:rvnPackardBell:rnEasyNoteLJ71:rvrV1.03:cvnPackardBell:ct10:cvrV1.03:
  dmi.product.name: EasyNote LJ71
  dmi.product.version: V1.03
  dmi.sys.vendor: Packard Bell

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1227202/+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 1227202] Re: Unexpected freezes Saucy

2013-09-23 Thread sudodus
Help for Lubuntu testers:


1. Test with the daily build as it is but with zRAM turned off

If you want to test how the installation and installed system works,
turn off zRAM with the following commands (as shown briefly above in
post #8). Do it *before* you start the installation, or at the beginning
of the installed session. If you select 'Install Lubuntu' you can right-
click on the background and select a terminal emulator (LXterminal).

Will it solve the problems in your computer, or will it still freeze?

Open LXTerminal

sudo swapoff /dev/zram0
sudo swapoff /dev/zram1
...
until all zram devices are switched off. Check with

sudo swapon -s

and finally run

sudo rmmod zram


1a. Test to install with low RAM - AMD64 (64-bit kernel)

This time testing the newest daily build (Sep 17 2013) of

saucy-desktop-amd64.iso

in my Toshiba (a direct install, no virtualisation)

http://www.toshiba.se/laptops/satellite-pro/c850/satellite-pro-c850-19w/

using mem=xxxM to limit the RAM usage

RAM = 512 MB, 768 MB and 1024 MB

i. Finished gracefully, but froze after I clicked reboot. Working system
installed (available after 'force reboot' long press of power
button, SysRq REISUB not responding).

ii. Tried again and it froze very early, before copying files.

iii. Powered off for a long time. Removed the USB pendrive. Tried again
and had the same result as the first time: Finished gracefully. I could
peek behind the curtain with ctrl+alt+F1: I could see that a lot of data
were swapped (more than 250 MB), which might not be available in a
virtual system with a small virtual disk.

But it froze after I clicked reboot ... as the first time

Something in the system remembers old data. It seems that all variables
are not initiated, which is a horrible bug. I've had such problems long
ago, when I was developing and debugging programs. It is hard to tell if
it is some firmware, the BIOS or Lubuntu that is guilty.

Tried only once with 768 MB RAM and 1024 MB: Finished gracefully, but
froze after I clicked reboot.

RAM 1280 MB

Finished gracefully, and no freeze. "Please remove ... and press Enter"
not visible because graphics mode, bug 966480. And it did reboot after
pressing Enter. Working system installed.
--
Comment 1: Install was selected directly at the syslinux screen (not via
live desktop). I did not use the mouse only keyboard keys, and used the
very simplest install 'use the whole disk'.

Comment 2: at RAM = 1280 MB KVM behaved like the real computer except
that plymouth run in graphical mode in the real computer, but in text
mode in KVM.


1b. Test to install with low RAM - i386 (32-bit kernel)

Finally, I tested the newest daily build (Sep 17 2013) of the 32-bit
Lubuntu saucy-desktop-i386.iso

in the same machine and with the same conditions.

RAM = 384, 512 MB, 768 MB

Finished gracefully, but froze after I clicked reboot. Working system
installed.

RAM = 1024 MB

No freeze, but waiting for Enter, and then finishing and rebooting
properly.

This is only slightly better than the 64-bit version, and it is much
worse that during early Saucy alpha (or pre-alpha) stages, when the
32-bit desktop installer for Lubuntu might work with 384 MB RAM, and
definitely worked with 512 MB RAM.

*Try this with the current daily build and  zRAM switched off to test if
the following assumption is true or false*

"The freezing is caused by bad cooperation between the kernel and zRAM"

-o-

2. Test of a bug-fix that improves the cooperation between the kernel
and zRAM (only for the AMD64 version)

Will it solve the problems in your computer, or will it still freeze?

In order to 'keep all the ducks in a row' I include the details of how
to install the test kernel below.

Open LXTerminal

wget 
http://kernel.ubuntu.com/~jsalisbury/lp1227202/linux-image-3.11.0-7-generic_3.11.0-7.14~lp1227202v1_amd64.deb
wget 
http://kernel.ubuntu.com/~jsalisbury/lp1227202/linux-image-extra-3.11.0-7-generic_3.11.0-7.14~lp1227202v1_amd64.deb
sudo dpkg -i linux-image-3.11.0-7-generic_3.11.0-7.14~lp1227202v1_amd64.deb
sudo dpkg -i 
linux-image-extra-3.11.0-7-generic_3.11.0-7.14~lp1227202v1_amd64.deb
reboot

Please note that there is currently only an AMD64 version of this
kernel.


2a. Test installing programs with the bug-fix and low RAM.

I have tested the kernel

'Linux lubuntu 3.11.0-7-generic #14~lp1227202v1 SMP'

for several days now. I tested it as an installed system running in my
Toshiba giving it only 384 MB RAM.

Add the boot option mem=386M at the end of the line in the grub menu
with boot options (for example quiet splash).

I alternated between this kernel and the default one. I made it swap,
for example running some youtube video. Then if I installed something
with apt-get, I often had freezes with the default kernel but never with
the #14~lp1227202v1 kernel.

-- 
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/1227202

Title:
  Unexpe

[Kernel-packages] [Bug 1212455] Re: 8086:2562 Flash 11.2 content displays in shades of green and purple only, and in a horizontally compressed space

2013-09-21 Thread sudodus
Going back to the bug description:

...
WORKAROUND: Setting the Intel driver's acceleration method to UXA rather than 
its default SNA *always* fixes the Flash problem, but causes a garbled login 
screen under LightDM that so far has no workaround.
...

This 'UXA' workaround makes the graphics rendering work in my old IBM
Thinkcentre with old Intel graphics.

$ lspci
00:00.0 Host bridge: Intel Corporation 82865G/PE/P DRAM Controller/Host-Hub 
Interface (rev 02)
00:02.0 VGA compatible controller: Intel Corporation 82865G Integrated Graphics 
Controller (rev 02)
00:06.0 System peripheral: Intel Corporation 82865G/PE/P Processor to I/O 
Memory Interface (rev 02)
00:1d.0 USB controller: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB UHCI 
Controller #1 (rev 02)
00:1d.1 USB controller: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB UHCI 
Controller #2 (rev 02)
00:1d.2 USB controller: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB UHCI 
Controller #3 (rev 02)
00:1d.3 USB controller: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB UHCI 
Controller #4 (rev 02)
00:1d.7 USB controller: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB2 EHCI 
Controller (rev 02)
00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev c2)
00:1f.0 ISA bridge: Intel Corporation 82801EB/ER (ICH5/ICH5R) LPC Interface 
Bridge (rev 02)
00:1f.2 IDE interface: Intel Corporation 82801EB (ICH5) SATA Controller (rev 02)
00:1f.3 SMBus: Intel Corporation 82801EB/ER (ICH5/ICH5R) SMBus Controller (rev 
02)
00:1f.5 Multimedia audio controller: Intel Corporation 82801EB/ER (ICH5/ICH5R) 
AC'97 Audio Controller (rev 02)
03:08.0 Ethernet controller: Intel Corporation 82562EZ 10/100 Ethernet 
Controller (rev 02)
-

But the current daily build does not solve my problem. There has never
been a garbled screen in my case, only the ugly rendering, and it is
still there, maybe there are only 256 colours. Even Lubuntu's default
background picture looks bad. I guess this old Intel chip will need UXA
also in the future.

-- 
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/1212455

Title:
  8086:2562 Flash 11.2 content displays in shades of green and purple
  only, and in a horizontally compressed space

Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  In my testing with the Intel driver using its default acceleration, what 
works:
  - Flash 11.2 works on Quantal with the 3.5 kernel
  - Flash 11.2 works on Raring with the 3.5.0-17 kernel (though it boots to a 
low-res desktop with a frozen pointer)
  - Flash 11.2 works on Raring also with the 3.6.11-030611 or 3.7.10-030710 
mainline kernels
  - Flash 11.2 works on Raring with the 3.8 kernel (in Chrome)

  what fails:
  - Flash 11.2 fails on Raring with the 3.8 kernel
  - Flash 11.2 fails on Raring with the latest mainline kernel, 3.11.0-031100rc5
  - Flash 11.2 fails on Saucy alpha 2 with its default kernel

  Disabling Flash *hardware* acceleration altogether (via R-click in the
  Flash display window: Settings: General tab) did not fix the problem.

  WORKAROUND: Setting the Intel driver's acceleration method to UXA
  rather than its default SNA *always* fixes the Flash problem, but
  causes a garbled login screen under LightDM that so far has no
  workaround.

  I also tried one possible fix for the default Intel SNA acceleration using 
the TearFree option.   I created /etc/X11/xorg.conf.d/20-intel.conf with 
contents:
  Section "Device"
     Identifier  "Intel Graphics"
     Driver  "intel"
     Option  "AccelMethod"  "sna"
     Option  "TearFree""true"
  EndSection
  But this had no effect.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: linux-image-3.8.0-27-generic 3.8.0-27.40
  ProcVersionSignature: Ubuntu 3.8.0-27.40-generic 3.8.13.4
  Uname: Linux 3.8.0-27-generic i686
  ApportVersion: 2.9.2-0ubuntu8.3
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  user1  1467 F lxpanel
  CRDA: Error: [Errno 2] No such file or directory: 'iw'
  CurrentDmesg:
   [   72.390428] serial8250: too much work for irq17
   [   72.401696] serial8250: too much work for irq17
   [   72.411724] serial8250: too much work for irq17
   [   82.046726] serial8250: too much work for irq17
  Date: Wed Aug 14 17:39:10 2013
  HibernationDevice: RESUME=UUID=8adf1633-c1a8-4392-8fc3-44369bc85692
  IwConfig:
   lono wireless extensions.

   eth0  no wireless extensions.
  Lsusb:
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
   Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
   Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
   Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  MachineType: Dell Computer Corporation Dimension 2400
  MarkForUpload: True
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.8.0-27-generic 
roo

[Kernel-packages] [Bug 1227202] Re: Unexpected freezes Saucy

2013-09-18 Thread sudodus
I'm rather convinced it is the zRAM bug, that Leszek Lesner described
earlier today. I reported success with 768 MB RAM, and now I have
succeeded also with 512 MB RAM to install from saucy-desktop-i386.iso
without any freeze, when zRAM was switched off. This is half of the RAM
necessary to succeed with zRAM (1024 MB), while the limit for the 64-bit
version was 1280 MB.

So it seems, we need enough RAM to avoid swapping to avoid freezing when
the buggy combination of kernel and zRAM is active.

-- 
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/1227202

Title:
  Unexpected freezes Saucy

Status in “linux” package in Ubuntu:
  Confirmed

Bug description:
  When using desktop-installer with lubuntu there is a freeze at the
  very end (bug 1225429) which also affects desktop-i386 and desktop-
  amd64. There are also unexplained freezes on the system when using it.
  Further tracking down has found
  http://ubuntuforums.org/showthread.php?t=2162655&page=3 and earlier
  today this arrived..

  As for freezing we discovered that since kernel 3.10.6 zram is broken
  which causes freezes and was fixed only completely in 3.12rc1. We
  backported that fixes in Neptune's Kernel I am not sure if the ubuntu
  kernel devs did the same.

  *Von: *Nio Wiklund
  *Gesendet: *Mittwoch, 18. September 2013 15:39

  The links we have also found are  https://lkml.org/lkml/2013/8/12/29
  and  https://lkml.org/lkml/2013/8/19/17

  Disabling zram prevents the freeze in desktop-i386

  My machine specification is http://phillw.net/hardware/aDU4RVzY
  although using the lower RAM (512Mb) has been achieved by KVM
  http://phillw.net/hardware/LuFdGuxP increasing the available RAM to
  1GB does not show this error. It has also now been tested on 'real'
  hardware with 512Mb of RAM and is also showing the freeze (as well as
  with VBox).

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: linux-image-3.11.0-7-generic 3.11.0-7.14
  ProcVersionSignature: Ubuntu 3.11.0-7.13-generic 3.11.0
  Uname: Linux 3.11.0-7-generic x86_64
  ApportVersion: 2.12.1-0ubuntu4
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  phillw 2019 F lxpanel
  CRDA: Error: [Errno 2] No such file or directory: 'iw'
  Date: Wed Sep 18 16:13:01 2013
  HibernationDevice: RESUME=UUID=d98ac0ad-5c96-4382-8195-23b44e056358
  InstallationDate: Installed on 2013-06-29 (81 days ago)
  InstallationMedia: Lubuntu 13.10 "Saucy Salamander" - Alpha amd64 (20130628)
  MachineType: Packard Bell EasyNote LJ71
  MarkForUpload: True
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-7-generic 
root=UUID=69c7aa0f-ccd0-4ac4-8930-e6f0efda9e6b ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.11.0-7-generic N/A
   linux-backports-modules-3.11.0-7-generic  N/A
   linux-firmware1.114
  SourcePackage: linux
  StagingDrivers: zram
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/22/2009
  dmi.bios.vendor: Packard Bell
  dmi.bios.version: V1.03
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: EasyNote LJ71
  dmi.board.vendor: Packard Bell
  dmi.board.version: V1.03
  dmi.chassis.type: 10
  dmi.chassis.vendor: Packard Bell
  dmi.chassis.version: V1.03
  dmi.modalias: 
dmi:bvnPackardBell:bvrV1.03:bd09/22/2009:svnPackardBell:pnEasyNoteLJ71:pvrV1.03:rvnPackardBell:rnEasyNoteLJ71:rvrV1.03:cvnPackardBell:ct10:cvrV1.03:
  dmi.product.name: EasyNote LJ71
  dmi.product.version: V1.03
  dmi.sys.vendor: Packard Bell

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1227202/+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 930447] Re: Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M x86 Laptop due to bug in PAE kernel, initramfs or syslinux

2013-07-19 Thread sudodus
Two tests were added to

https://help.ubuntu.com/community/Lubuntu-fake-PAE

See this link for details

http://ubuntuforums.org/showthread.php?t=2113826&page=3&p=12729858#post12729858

For the first time a Pentium M CPU was found not suitable for fakePAE.

Our test results so far for Pentium M and Celeron M CPUs suitable for
fakePAE, 'No PAE flags but 36 bit physical memory address size':

  CPU name   -- CPUID Output of 'cpuid|grep ^0001' --
Lowest:  Celeron M 1200 Mhz  0001 0695 0812  a7e9f9bf
 Celeron M 1300 MHz  0001 0695 0812  a7e9f9bf 
 Celeron M 1.40 GHz
 Pentium M 1.50 GHz  0001 06d6 0816 0180 afe9f9bf
 Pentium M 1600 MHz  0001 0695 0816 0180 a7e9f9bf
Highest: Pentium M 1.70 GHz  0001 06d6 0816 0180 afe9f9bf

Our test results so far for Pentium M and Celeron M CPUs not suitable
for fakePAE, 'No PAE flags and only 32 bit physical memory address
size':

  CPU name   -- CPUID Output of 'cpuid|grep ^0001' --
Lowest:
 Pentium M 1200 Mhz  0001 0695 0816 0180 a7e9fbbf
Highest:

-- 
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/930447

Title:
  Unable to start Ubuntu 12.04 live CD with syslinux loader on Pentium M
  x86 Laptop due to bug in PAE kernel, initramfs or syslinux

Status in “linux” package in Ubuntu:
  Won't Fix
Status in “syslinux” package in Ubuntu:
  Fix Released
Status in Baltix GNU/Linux:
  Fix Released

Bug description:
  Ubuntu 12.04 doesn't start from Desktop CD or USB with syslinux boot
  loader on Pentium M 1.6Ghz or faster Pentium M CPU - displays error
  message about missing PAE feature in CPU, but *the same* *Ubuntu
  12.04* Desktop CD/LiveUSB starts fine on *the same CPU* (and same PAE
  kernel) if GRUB boot loader is used, for example when WUBI or LiveUSB
  with GRUB boot loader, like Multisystem
  (http://liveusb.info/dotclear/index.php?pages/install ) is used!

  The error message is:
  "This kernel requires the following features not present on the CPU: pae.
  Unable to boot - please use a kernel appropriate for you CPU."

  THIS IS AN IMPORTANT REGRESSION! People are able to install and successfully 
use Ubuntu 12.04 on such pretty new hardware, like IBM Thinkpad T42 laptop with 
Pentium M 1700Mhz processor, but the bug in syslinux (or something related) 
forbids Ubuntu 12.04 installation.
  This bug is reproducible on lots of computers, there are several log files 
and /proc/cpuinfo file attached to this bugreport, AFAIK it's enough to reopen 
this bug.

  ---
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  CurrentDmesg: Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order 
/var/log/dmesg -'] failed with exit code 1: comm: /var/log/dmesg: Permission 
denied
  MachineType: IBM 2373PPU
  dmi.bios.date: 06/18/2007
  dmi.bios.vendor: IBM
  dmi.bios.version: 1RETDRWW (3.23 )
  dmi.board.name: 2373PPU
  dmi.board.vendor: IBM
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: IBM
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnIBM:bvr1RETDRWW(3.23):bd06/18/2007:svnIBM:pn2373PPU:pvrThinkPadT42:rvnIBM:rn2373PPU:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
  dmi.product.name: 2373PPU
  dmi.product.version: ThinkPad T42
  dmi.sys.vendor: IBM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/930447/+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