[Bug 508901] Re: update-grub sets wrong root argument

2018-07-25 Thread Lars W
I think either linux-boot-prober or update-grub need a fix. As far as I
remember, the point was that $mpoint/boot/grub/grub.cfg is not a
reliable source of information. However, if you can do `mount $DEVICE
$mpoint`, you can trust that $DEVICE correct, because the environment in
which update-grub is called is mostly likely the new/current/correct
one. At the very least, one could check if the "root" from linux-boot-
prober is mountable and if not, fall back to what Peter's patch does.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/508901

Title:
  update-grub sets wrong root argument

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1495030] Re: lightdm-gtk-greeter hangs, leaving session locked with gray screen

2015-09-21 Thread Lars W
YES! This update and deleting my .config (`my ~/.config ~/.config.bak`)
fixed it for me.

I can lock the session and log back in again, resume also works. :-)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1495030

Title:
  lightdm-gtk-greeter hangs, leaving session locked with gray screen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm-gtk-greeter/+bug/1495030/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1495030] Re: lightdm-gtk-greeter hangs, leaving session locked with gray screen

2015-09-14 Thread Lars W
I disabled all crypto partition and the problem persists. (I previously
had an encrypted home partition, unlocked with libpam-mount. Now, I used
a new user with no crypto at all.) I also started lightdm-gtk-greeter-
settings to disable the background image and user image, to make the
warnings go away. But the problem still persist. The log still contains
nothing that looks suspicious to me (expect maybe "DEBUG: Got 1
message(s) from PAM" doesn't say which one).

After about 30min of gray screen, I went to terminal and started gdb -p
$pid, where $pid is the process id of the 100% CPU process lightdm-gtk-
greeter, to attach a debugging session and see where the process hangs.
Interestingly, after ~20 debug steps, it runs again and waits for user
input. I go back to Ctrl+Alt+F8, and can log in again! (what the...?)

After login, I see a prompt for authentification with
org.freedesktop.accounts.change-own-user-data . Maybe it is related to
that?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1495030

Title:
  lightdm-gtk-greeter hangs, leaving session locked with gray screen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm-gtk-greeter/+bug/1495030/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1495030] [NEW] lightdm-gtk-greeter hangs, leaving session locked with gray screen

2015-09-12 Thread Lars W
Public bug reported:

On a fresh Xubuntu 15.04 install, I created a new user. When I lock the
session (or resume from standby, which also locks the session), I see
nothing but a screen in light gray. After about a minnute, the screen
goes black (power safe), pressing any key brings back the gray screen.
There is no possibility to unlock the session. Ctrl+Alt+F1 brings me to
terminal, where I can see with `top` that "lightdm-gtk-greeter" takes
100% CPU.

The log contains warnings about background images that can not be read.
I believe those are warnings only and not fatal errors.

Version of lightdm-gtk-greeter: 2.0.0-0ubuntu1.

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: lightdm 1.14.2-0ubuntu1
ProcVersionSignature: Ubuntu 3.19.0-28.30-generic 3.19.8-ckt5
Uname: Linux 3.19.0-28-generic x86_64
ApportVersion: 2.17.2-0ubuntu1.4
Architecture: amd64
CurrentDesktop: XFCE
Date: Sat Sep 12 10:02:29 2015
InstallationDate: Installed on 2015-09-03 (8 days ago)
InstallationMedia: Xubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422.1)
SourcePackage: lightdm
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug vivid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1495030

Title:
  lightdm-gtk-greeter hangs, leaving session locked with gray screen

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 508901] Re: update-grub sets wrong root argument

2014-02-22 Thread Lars W
I had a similar problem after copying all files from the root partition
/dev/sda1 to another partition /dev/sdb1 and trying to tell grub to boot
from there now.

I digged into problem a little bit...
When i run `update-grub` it runs each of the files in `/etc/grub.d/`, my linux 
copy (Ubuntu in this case) gets detected by `30_os-prober`. This will run 
`/usr/bin/os-prober`. This works fine. In the `for OS in ${OSPROBED} ` loop it 
goes into the linux) branch, but somehow sets the $LPARAMS variable wrong. This 
is due to the sometimes-wrong output of `/usr/bin/linux-boot-prober`. In that 
script, there is a loop `for test in /usr/lib/linux-boot-probes/mounted/*`, 
which runs the file `40grub2` from there in my case. (I know that from the 
debug output flooding syslog.) This script calls its `parse_grub_menu` function 
with some parameters, and parses $mpoint/boot/grub/grub.cfg, where $mpoint is 
the mount point of /dev/sdb1. However, the grub.cfg in there contains the old 
UUID of /dev/sda1, because it is just a binary copy and does not come from a 
fresh install.

My plan A was to fix this, take the correct UUID from the device (here:
/dev/sdb1), corresponding to the mapping from  /dev/disk/by-uuid/ and
post a patch. But the inner works of grub seem to complicated for me. I
lost motivation to do that.

Now that I know what the problem is, I took plan B, and chrooted into 
/dev/sdb1, ran update-grub in there, and reboot. You only need to do that once, 
afterwards the files are okay.
(...btw, for similar setups: you might want to have two different /etc/fstab on 
each of the partitions.)
This is somewhat a workaround. But here it goes:

mount /dev/sdb1 /mnt/disk
mount -o bind /dev /mnt/disk/dev
mount -o bind /sys /mnt/disk/sys
mount -t proc /proc /mnt/disk/proc
cp /proc/mounts /mnt/disk/etc/mtab

chroot /mnt/disk /bin/bash
grub-install /dev/sdb
update-grub
exit


(Plan C would have been to update the grub.cfg with the correct UUID manually.)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/508901

Title:
  update-grub sets wrong root argument

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 449835] Re: Nvidia HDMI audio out not working without extra configuration

2010-08-23 Thread Lars W
Hello Fabio,

i dont have this specific hardware available anymore. So i am not able
to test with the current packages.

sorry
Lars

-- 
Nvidia HDMI audio out not working without extra configuration
https://bugs.launchpad.net/bugs/449835
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 449835] [NEW] Nvidia HDMI audio out not working without extra configuration

2009-10-12 Thread Lars W
Public bug reported:

Binary package hint: gnome-media

To configure HDMI Audio output properly it is required to use gnome-alsamixer 
or äquivalent to enable the IEC958 digital audio options.
The distribution installed sound configuration tools are not enough to make 
audio work in this case.

I needed a long time of searching to find the post under: 
http://ubuntu-virginia.ubuntuforums.org/showpost.php?p=7846141postcount=27
which told about gnome-alsa-mixer.

ProblemType: Bug
Architecture: i386
Card0.Amixer.info:
 Card hw:0 'NVidia'/'HDA NVidia at 0xfce78000 irq 21'
   Mixer name   : 'Nvidia MCP78 HDMI'
   Components   : 'HDA:10ec0883,104382e3,0012 
HDA:10de0002,10de0101,0010'
   Controls  : 39
   Simple ctrls  : 21
Card1.Amixer.info:
 Card hw:1 'U0x4710x311'/'USB Device 0x471:0x311 at usb-:00:04.0-2, full 
speed'
   Mixer name   : 'USB Mixer'
   Components   : 'USB0471:0311'
   Controls  : 2
   Simple ctrls  : 1
Card1.Amixer.values:
 Simple mixer control 'Mic',0
   Capabilities: cvolume cvolume-joined cswitch cswitch-joined
   Capture channels: Mono
   Limits: Capture 0 - 3
   Mono: Capture 0 [0%] [30.00dB] [on]
Card2.Amixer.info:
 Card hw:2 'U0xeb1a0x2861'/'USB Device 0xeb1a:0x2861 at usb-:00:02.1-2.2, 
high speed'
   Mixer name   : 'USB Mixer'
   Components   : 'USBeb1a:2861'
   Controls  : 2
   Simple ctrls  : 1
Card2.Amixer.values:
 Simple mixer control 'PCM',0
   Capabilities: cvolume cvolume-joined cswitch cswitch-joined
   Capture channels: Mono
   Limits: Capture 0 - 16
   Mono: Capture 0 [0%] [-16.00dB] [on]
Card3.Amixer.info:
 Card hw:3 'SAA7134'/'saa7133[0] at 0xfcfff800 irq 18'
   Mixer name   : 'SAA7134 Mixer'
   Components   : ''
   Controls  : 6
   Simple ctrls  : 3
Date: Mon Oct 12 22:19:37 2009
DistroRelease: Ubuntu 9.10
NonfreeKernelModules: nvidia
Package: alsa-base 1.0.20+dfsg-1ubuntu4
PackageArchitecture: all
ProcEnviron:
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-11.38-generic
SourcePackage: alsa-driver
Tags:  ubuntu-unr
Uname: Linux 2.6.31-11-generic i686
UserAsoundrc: defaults.pcm.device 3

** Affects: gnome-media (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 ubuntu-unr

-- 
Nvidia HDMI audio out not working without extra configuration
https://bugs.launchpad.net/bugs/449835
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 449835] Re: Nvidia HDMI audio out not working without extra configuration

2009-10-12 Thread Lars W

** Attachment added: AlsaDevices.txt
   http://launchpadlibrarian.net/33559239/AlsaDevices.txt

** Attachment added: AplayDevices.txt
   http://launchpadlibrarian.net/33559240/AplayDevices.txt

** Attachment added: ArecordDevices.txt
   http://launchpadlibrarian.net/33559243/ArecordDevices.txt

** Attachment added: AudioDevicesInUse.txt
   http://launchpadlibrarian.net/33559244/AudioDevicesInUse.txt

** Attachment added: BootDmesg.txt
   http://launchpadlibrarian.net/33559245/BootDmesg.txt

** Attachment added: Card0.Amixer.values.txt
   http://launchpadlibrarian.net/33559246/Card0.Amixer.values.txt

** Attachment added: Card0.Codecs.codec.0.txt
   http://launchpadlibrarian.net/33559247/Card0.Codecs.codec.0.txt

** Attachment added: Card0.Codecs.codec.3.txt
   http://launchpadlibrarian.net/33559248/Card0.Codecs.codec.3.txt

** Attachment added: Card3.Amixer.values.txt
   http://launchpadlibrarian.net/33559249/Card3.Amixer.values.txt

** Attachment added: CurrentDmesg.txt
   http://launchpadlibrarian.net/33559250/CurrentDmesg.txt

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/33559251/Dependencies.txt

** Attachment added: PciMultimedia.txt
   http://launchpadlibrarian.net/33559252/PciMultimedia.txt

** Attachment added: XsessionErrors.txt
   http://launchpadlibrarian.net/33559253/XsessionErrors.txt

-- 
Nvidia HDMI audio out not working without extra configuration
https://bugs.launchpad.net/bugs/449835
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 435885] Re: BAR 6 warnings during boot

2009-10-03 Thread Lars W
For me also
[0.209829] pci :01:00.0: BAR 6: no parent found for of device 
[0x8000-0x8001]
For me its my graphics adapter:
01:00.0 VGA compatible controller: ATI Technologies Inc RV350 [Mobility Radeon 
9600 M10]

-- 
BAR 6 warnings during boot
https://bugs.launchpad.net/bugs/435885
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 278853] Re: Lightning 0.9 broken w/ Thunderbird 2.0.0.17 in Intrepid

2008-10-18 Thread Lars W
also confirming:
Thunderbird Version 2.0.0.17 (20080925)
Lightning Version 0.9 (2008091718)
Ubuntu 8.10 - the Intrepid Ibex

Thunderbird Console Errors (some occure multiple times):
Fehler: [Exception... Invalid ClassID or ContractID  nsresult: 0x80570017 
(NS_ERROR_XPC_BAD_CID)  location: JS frame :: 
file:///home/lars/.mozilla-thunderbird/x8en8gmv.default/extensions/%7Be2fda1a4-762b-4020-b5ad-a41df1933103%7D/components/calItemModule.js
 :: initBaseComponent :: line 67  data: no]
Quelldatei: 
file:///home/lars/.mozilla-thunderbird/x8en8gmv.default/extensions/%7Be2fda1a4-762b-4020-b5ad-a41df1933103%7D/components/calItemModule.js
Zeile: 67

Fehler: [Exception... ServiceManager::GetService returned failure code:  
nsresult: 0x80570016 (NS_ERROR_XPC_GS_RETURNED_FAILURE)  location: JS frame 
:: chrome://calendar/content/calUtils.js :: getDateFormatter :: line 200  
data: no]
Quelldatei: chrome://calendar/content/calUtils.js
Zeile: 200

Fehler: [Exception... ServiceManager::GetService returned failure code:  
nsresult: 0x80570016 (NS_ERROR_XPC_GS_RETURNED_FAILURE)  location: JS frame 
:: 
file:///home/lars/.mozilla-thunderbird/x8en8gmv.default/extensions/%7Be2fda1a4-762b-4020-b5ad-a41df1933103%7D/components/calCompositeCalendar.js
 - 
file:///home/lars/.mozilla-thunderbird/x8en8gmv.default/extensions/%7Be2fda1a4-762b-4020-b5ad-a41df1933103%7D/js/calUtils.js
 :: getCalendarManager :: line 145  data: no]
Quelldatei: 
file:///home/lars/.mozilla-thunderbird/x8en8gmv.default/extensions/%7Be2fda1a4-762b-4020-b5ad-a41df1933103%7D/components/calCompositeCalendar.js
 - 
file:///home/lars/.mozilla-thunderbird/x8en8gmv.default/extensions/%7Be2fda1a4-762b-4020-b5ad-a41df1933103%7D/js/calUtils.js
Zeile: 145

-- 
Lightning 0.9 broken w/ Thunderbird 2.0.0.17 in Intrepid
https://bugs.launchpad.net/bugs/278853
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs