[Bug 1831587] Re: brightness control not work with OLED panel

2021-01-12 Thread A A
When using multiple monitors, and disconnecting and reconnecting them, I
noticed that Ubuntu 20.04 likes to set the external monitor's brightness
to 0.06, and the laptop's brightness to maximum. This is done without
changing the file at
(/sys/class/backlight/intel_backlight/actual_brightness).

I have modified the above script to work with multiple monitors, and to
change the brightness whenever a discrepancy between the desired and
actual brightnesses of all monitors is detected. The script assumes that
the internal laptop monitor's brightness is the only one to be changed
by brightness keys, and that the laptop's monitor is the first monitor
listed in the command `xrandr --listmonitors`.

Please reply if you have any issues with this script, as I do want to
improve this.

#!/bin/bash
#-
# /usr/local/bin/brightness
# be sure this file is executable
#-----

#   Define a function which finds luminance values in default Ubuntu 
#   location, converts into a factor of maximum brightness
#   Get the max brightness for reference.
#   Get it to 2 decimal places
backlight_path=/sys/class/backlight/intel_backlight
read -r max < "$backlight_path"/max_brightness
luminance() {
read -r level < "$backlight_path"/actual_brightness
printf "%.2f" $(bc <<< "scale=10;$level/$max")
}

#   Set up infinite loop
while true
do
#   Get the current brightness levels from xrandr. Store in array
mapfile \
-t xrandrbrightness \
< <(xrandr --verbose --current \
| grep Brightness \
| sed 's/.* //' \
| xargs printf "%.2f\n")

#   Get list of monitors and store in array
mapfile \
-t monitors \
< <(xrandr --listmonitors --current \
| grep -v 'Monitors' \
| awk '{print $4}')

#   If the current brightness for monitor 0 != the desired value +/-0.01
if (( $(echo "${xrandrbrightness[0]} != $(luminance)" | bc -l) ))
then
#   Set the brightness of the laptop monitor to the desired value
echo "${monitors[0]} Current:${xrandrbrightness[0]} 
Desired:$(luminance)"
xrandr --output "${monitors[0]}" --brightness "$(luminance)"
fi

#   Go through the rest of the monitors in the list
for (( i=1; i<${#monitors[@]}; i++ ))
do

#   Change the brightness of external monitors to 1 if they aren't
if (( $(echo "${xrandrbrightness[$i]} != 1.00" | bc -l) ))
then
echo "${monitors[$i]} Current:${xrandrbrightness[$i]}"
xrandr --output "${monitors[$i]}" --brightness 1
fi
done


#   Check every 100ms
sleep 0.1
done

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

Title:
  brightness control not work with OLED panel

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1831587/+subscriptions

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

[Bug 1786996] [NEW] Important typo in "How do I add a swap file?" instructions

2018-08-14 Thread a a
Public bug reported:

I was very confused why my swap file wasn't working after I followed
instructions at
https://help.ubuntu.com/community/SwapFaq#How_do_I_add_a_swap_file.3F

The problem was that the instructions mostly say 1GiB but then also have
a line (which I blindly copied-and-pasted) that said 4GiB instead.

In the section "Example of making a swap file", this line needs to be
fixed:

$ echo '/mnt/4GiB.swap swap swap defaults 0 0' | sudo tee -a /etc/fstab

** Affects: ubuntu-docs (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Important typo in "How do I add a swap file?" instructions

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

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

[Bug 1786996] Re: Important typo in "How do I add a swap file?" instructions

2018-08-14 Thread a a
FYI The number of hoops I had to jump through just to send a message to
Ubuntu (trying to help out) was surprising (with the slow and buggy
signup process).

I just clicked to join the wiki editors. But not being approved
immediately causes me to lose momentum in fixing this bug (and maybe I
forget to edit the wiki once I do finally get approved), and if you're
truly just going to ignore this bug report (thinking that only approved
wiki editors should handle this type of problem), your docs might stay
broken for a while.

You all might want to reconsider your strategy for keeping docs clean.
This interaction was already way more work than I anticipated.

But maybe you have high "barriers to entry" for reasons I don't know.

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

Title:
  Important typo in "How do I add a swap file?" instructions

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

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

[Bug 1947607] [NEW] Docs state to use ctrl-alt-shift-R to record screen recording, which will NEVER work correctly

2021-10-18 Thread a a
Public bug reported:

Ubuntu docs: https://help.ubuntu.com/stable/ubuntu-help/screen-shot-
record.html are incorrectly sayig to mis-use this Gnome feature as a
user-focussed 'Make a Screencast'

According to the Gnome developers who implement/maintain this feature,
it's only to be used for recording 30-second snippets and reporting bugs
in Gnome.

By design there is no warning that a screen-recording has been
terminated at the 30 seconds mark, and it should (apparently) never be
used for general screen-recordings. Ubuntu is encouraging people to mis-
use this feature and thereby lose data (many bug reports against Gnome
going back 5+ years of people requesting it be changed, closed as
WONTFIX / by-design).

It's non-trivial to make the feature work as described in the ubuntu
docs, and there's no mention that it's hardcoded to 30 seconds max.

** Affects: ubuntu-docs (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Docs state to use ctrl-alt-shift-R to record screen recording, which
  will NEVER work correctly

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


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

[Bug 382338] [NEW] it does't open new link ..loading time takes for ever!

2009-06-01 Thread a
Public bug reported:

Binary package hint: firefox-3.0

loading time takes for ever !

** Affects: firefox-3.0 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
it does't open new link ..loading time takes for ever!
https://bugs.launchpad.net/bugs/382338
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 227574] [NEW] I can't get the spell check to work in French even though I changed my language preferrences to French

2008-05-06 Thread a
Public bug reported:

the spell check doesn't work in open office 2:  not in English
(Canadian) or French (Canadian) even when I change the language
preferences.  What package do I need to download to fix it and how do I
do it.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
I can't get the spell check to work in French even though I changed my language 
preferrences to French
https://bugs.launchpad.net/bugs/227574
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 569296] [NEW] package linux-backports-modules-wireless-2.6.32-21-generic-pae (not installed) failed to install/upgrade: trying to overwrite '/lib/udev/compat_firmware.sh', which is also in packag

2010-04-23 Thread A
Public bug reported:

This occured as a result of me trying to install compat-wireless Linux
modules for version 2.6.32 on x86 from synaptic package manager. I was
trying to resolve my previously working Linksys WUSB54GP wireless
adapter in the new Lucid 10.04 RC

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: linux-backports-modules-wireless-2.6.32-21-generic-pae (not installed)
ProcVersionSignature: Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2
Uname: Linux 2.6.32-21-generic i686
NonfreeKernelModules: nvidia
Architecture: i386
Date: Sat Apr 24 00:41:44 2010
ErrorMessage: trying to overwrite '/lib/udev/compat_firmware.sh', which is also 
in package linux-backports-modules-wireless-2.6.32-21-generic 0:2.6.32-21.11
InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091028.5)
SourcePackage: linux-backports-modules-2.6.32
Title: package linux-backports-modules-wireless-2.6.32-21-generic-pae (not 
installed) failed to install/upgrade: trying to overwrite 
'/lib/udev/compat_firmware.sh', which is also in package 
linux-backports-modules-wireless-2.6.32-21-generic 0:2.6.32-21.11

** Affects: linux-backports-modules-2.6.32 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

-- 
package linux-backports-modules-wireless-2.6.32-21-generic-pae (not installed) 
failed to install/upgrade: trying to overwrite '/lib/udev/compat_firmware.sh', 
which is also in package linux-backports-modules-wireless-2.6.32-21-generic 
0:2.6.32-21.11
https://bugs.launchpad.net/bugs/569296
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 569296] Re: package linux-backports-modules-wireless-2.6.32-21-generic-pae (not installed) failed to install/upgrade: trying to overwrite '/lib/udev/compat_firmware.sh', which is also in package

2010-04-23 Thread A

** Attachment added: "AptOrdering.txt"
   http://launchpadlibrarian.net/45143367/AptOrdering.txt

** Attachment added: "Df.txt"
   http://launchpadlibrarian.net/45143368/Df.txt

** Attachment added: "Dmesg.txt"
   http://launchpadlibrarian.net/45143369/Dmesg.txt

** Attachment added: "DpkgTerminalLog.txt"
   http://launchpadlibrarian.net/45143370/DpkgTerminalLog.txt

-- 
package linux-backports-modules-wireless-2.6.32-21-generic-pae (not installed) 
failed to install/upgrade: trying to overwrite '/lib/udev/compat_firmware.sh', 
which is also in package linux-backports-modules-wireless-2.6.32-21-generic 
0:2.6.32-21.11
https://bugs.launchpad.net/bugs/569296
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 371583] Re: package gnome-themes-selected 2.26.0-0ubuntu1 failed to install/upgrade: subprocess post-installation script returned error exit status 1

2010-03-19 Thread a
I have had this error message each time I update run the update manager
(or apt-get update) ever since updating to Karmic (several months ago).
Can anyone recommend a fix/work-around, the message is getting to be an
annoyance.

-- 
package gnome-themes-selected 2.26.0-0ubuntu1 failed to install/upgrade: 
subprocess post-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/371583
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 505543] [NEW] package sun-java6-bin not installed failed to install/upgrade: subprocess new pre-installation script returned error exit status 2

2010-01-10 Thread a
Public bug reported:

game: adanaxis locked up permanently, during game exit (likely pulse
audio prob; been having MAJOR probs with pulse audio in older games);
was doing an large group of installs (via add/remove applications) in
the bg; had to ctrl+alt+backspace to get out of the game lock-up; assume
the install failed during that, not sure if the game lock-up/gdm reboot
was the cause, or just incidental?

also, the bugreport app on my system is creating this error report
multiple times? not sure if that is due to multiple failures, or a
defect in the bugreport app?

ProblemType: Package
Architecture: i386
Date: Sun Jan 10 08:48:28 2010
DistroRelease: Ubuntu 9.10
ErrorMessage: subprocess new pre-installation script returned error exit status 
2
InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091028.2)
NonfreeKernelModules: nvidia
Package: sun-java6-bin (not installed)
ProcVersionSignature: Ubuntu 2.6.31-17.54-generic
SourcePackage: sun-java6
Title: package sun-java6-bin (not installed) failed to install/upgrade: 
subprocess new pre-installation script returned error exit status 2
Uname: Linux 2.6.31-17-generic i686

** Affects: sun-java6 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386

-- 
package sun-java6-bin  not installed  failed to install/upgrade: subprocess new 
pre-installation script returned error exit status 2
https://bugs.launchpad.net/bugs/505543
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 505543] Re: package sun-java6-bin not installed failed to install/upgrade: subprocess new pre-installation script returned error exit status 2

2010-01-10 Thread a

** Attachment added: "AptOrdering.txt"
   http://launchpadlibrarian.net/37680978/AptOrdering.txt

** Attachment added: "Dmesg.txt"
   http://launchpadlibrarian.net/37680979/Dmesg.txt

** Attachment added: "DpkgTerminalLog.gz"
   http://launchpadlibrarian.net/37680980/DpkgTerminalLog.gz

-- 
package sun-java6-bin  not installed  failed to install/upgrade: subprocess new 
pre-installation script returned error exit status 2
https://bugs.launchpad.net/bugs/505543
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 505542] [NEW] package sun-java6-jre not installed failed to install/upgrade: subprocess new pre-installation script returned error exit status 2

2010-01-10 Thread a
Public bug reported:

game: adanaxis locked up permanently, during game exit (likely pulse
audio prob; been having MAJOR probs with pulse audio in older games);
was doing an large group of installs (via add/remove applications) in
the bg; had to ctrl+alt+backspace to get out of the game lock-up; assume
the install failed during that, not sure if the game lock-up/gdm reboot
was the cause, or just incidental?

also, the bugreport app on my system is creating this error report
multiple times? not sure if that is due to multiple failures, or a
defect in the bugreport app?

ProblemType: Package
Architecture: i386
Date: Sun Jan 10 08:48:27 2010
DistroRelease: Ubuntu 9.10
ErrorMessage: subprocess new pre-installation script returned error exit status 
2
InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091028.2)
NonfreeKernelModules: nvidia
Package: sun-java6-jre (not installed)
ProcVersionSignature: Ubuntu 2.6.31-17.54-generic
SourcePackage: sun-java6
Title: package sun-java6-jre (not installed) failed to install/upgrade: 
subprocess new pre-installation script returned error exit status 2
Uname: Linux 2.6.31-17-generic i686

** Affects: sun-java6 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386

-- 
package sun-java6-jre  not installed  failed to install/upgrade: subprocess new 
pre-installation script returned error exit status 2
https://bugs.launchpad.net/bugs/505542
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 505542] Re: package sun-java6-jre not installed failed to install/upgrade: subprocess new pre-installation script returned error exit status 2

2010-01-10 Thread a

** Attachment added: "AptOrdering.txt"
   http://launchpadlibrarian.net/37680974/AptOrdering.txt

** Attachment added: "Dmesg.txt"
   http://launchpadlibrarian.net/37680975/Dmesg.txt

** Attachment added: "DpkgTerminalLog.gz"
   http://launchpadlibrarian.net/37680976/DpkgTerminalLog.gz

-- 
package sun-java6-jre  not installed  failed to install/upgrade: subprocess new 
pre-installation script returned error exit status 2
https://bugs.launchpad.net/bugs/505542
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 1926107] [NEW] After LTS upgrade to 20.04 mdadm init.d are all broken links

2021-04-25 Thread A
Public bug reported:

Upgraded a number of servers (more than 30) from various LTS versions to LTS 
20.04
In each case that uses mdadm, all links for mdadm in /etc/rcX.d/*mdadm* are 
broken links.

Every upgraded server using mdadm matches the issue exactly, but choosing one 
server:
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=20.04
DISTRIB_CODENAME=focal
DISTRIB_DESCRIPTION="Ubuntu 20.04.2 LTS"

mdadm:
  Installed: 4.1-5ubuntu1.2

Easiest way to see the issue is to type:

# ls -lasd `find /etc | grep mdadm`
4 -rw-r--r-- 1 root root  831 Dec 15 22:36 /etc/default/mdadm
4 -rw-r--r-- 1 root root 3426 Feb 28  2014 /etc/logcheck/ignore.d.server/mdadm
4 -rw-r--r-- 1 root root  411 Feb 28  2014 /etc/logcheck/violations.d/mdadm
4 drwxr-xr-x 2 root root 4096 Dec 15 22:36 /etc/mdadm
4 -rw-r--r-- 1 root root  982 Dec 15 22:36 /etc/mdadm/mdadm.conf
4 -rw-r--r-- 1 root root  379 Jan 15  2020 /etc/modprobe.d/mdadm.conf
0 lrwxrwxrwx 1 root root   15 Jul  3  2016 /etc/rc0.d/K01mdadm -> 
../init.d/mdadm
0 lrwxrwxrwx 1 root root   24 Dec 15 22:11 /etc/rc0.d/K05mdadm-waitidle -> 
../init.d/mdadm-waitidle
0 lrwxrwxrwx 1 root root   15 Jul  3  2016 /etc/rc1.d/K01mdadm -> 
../init.d/mdadm
0 lrwxrwxrwx 1 root root   15 Dec 15 22:09 /etc/rc2.d/S03mdadm -> 
../init.d/mdadm
0 lrwxrwxrwx 1 root root   15 Dec 15 22:09 /etc/rc3.d/S03mdadm -> 
../init.d/mdadm
0 lrwxrwxrwx 1 root root   15 Dec 15 22:09 /etc/rc4.d/S03mdadm -> 
../init.d/mdadm
0 lrwxrwxrwx 1 root root   15 Dec 15 22:09 /etc/rc5.d/S03mdadm -> 
../init.d/mdadm
0 lrwxrwxrwx 1 root root   15 Jul  3  2016 /etc/rc6.d/K01mdadm -> 
../init.d/mdadm
0 lrwxrwxrwx 1 root root   24 Dec 15 22:11 /etc/rc6.d/K05mdadm-waitidle -> 
../init.d/mdadm-waitidle

Since init.d/mdadm and init.d/mdadm-waitidle don't exist, all the 
/etc/rcX.d/*mdadm* links are broken links
- and in a colour terminal are all highlighted distinctly

All systems boot successfully, so I'm not sure if it is simply a cleanup
issue during upgrade from 18.04 to 20.04, or if the files should exist?

However, a previous version desktop, which is:
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=18.04
DISTRIB_CODENAME=bionic
DISTRIB_DESCRIPTION="Ubuntu 18.04.2 LTS"

has init.d/mdadm and init.d/mdadm-waitidle thus they aren't broken links

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

** Package changed: linux (Ubuntu) => mdadm (Ubuntu)

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

Title:
  After LTS upgrade to 20.04 mdadm init.d are all broken links

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

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

[Bug 1926107] Re: After LTS upgrade to 20.04 mdadm init.d are all broken links

2021-04-25 Thread A
** Summary changed:

- After LSB upgrade to 20.04 mdadm init.d are all broken links
+ After LTS upgrade to 20.04 mdadm init.d are all broken links

** Description changed:

- Upgraded a number of servers (more than 30) from various LSB versions to LSB 
20.04
+ Upgraded a number of servers (more than 30) from various LTS versions to LTS 
20.04
  In each case that uses mdadm, all links for mdadm in /etc/rcX.d/*mdadm* are 
broken links.
  
  Every upgraded server using mdadm matches the issue exactly, but choosing one 
server:
  DISTRIB_ID=Ubuntu
  DISTRIB_RELEASE=20.04
  DISTRIB_CODENAME=focal
  DISTRIB_DESCRIPTION="Ubuntu 20.04.2 LTS"
  
  mdadm:
-   Installed: 4.1-5ubuntu1.2
+   Installed: 4.1-5ubuntu1.2
  
  Easiest way to see the issue is to type:
  
  # ls -lasd `find /etc | grep mdadm`
  4 -rw-r--r-- 1 root root  831 Dec 15 22:36 /etc/default/mdadm
  4 -rw-r--r-- 1 root root 3426 Feb 28  2014 /etc/logcheck/ignore.d.server/mdadm
  4 -rw-r--r-- 1 root root  411 Feb 28  2014 /etc/logcheck/violations.d/mdadm
  4 drwxr-xr-x 2 root root 4096 Dec 15 22:36 /etc/mdadm
  4 -rw-r--r-- 1 root root  982 Dec 15 22:36 /etc/mdadm/mdadm.conf
  4 -rw-r--r-- 1 root root  379 Jan 15  2020 /etc/modprobe.d/mdadm.conf
  0 lrwxrwxrwx 1 root root   15 Jul  3  2016 /etc/rc0.d/K01mdadm -> 
../init.d/mdadm
  0 lrwxrwxrwx 1 root root   24 Dec 15 22:11 /etc/rc0.d/K05mdadm-waitidle -> 
../init.d/mdadm-waitidle
  0 lrwxrwxrwx 1 root root   15 Jul  3  2016 /etc/rc1.d/K01mdadm -> 
../init.d/mdadm
  0 lrwxrwxrwx 1 root root   15 Dec 15 22:09 /etc/rc2.d/S03mdadm -> 
../init.d/mdadm
  0 lrwxrwxrwx 1 root root   15 Dec 15 22:09 /etc/rc3.d/S03mdadm -> 
../init.d/mdadm
  0 lrwxrwxrwx 1 root root   15 Dec 15 22:09 /etc/rc4.d/S03mdadm -> 
../init.d/mdadm
  0 lrwxrwxrwx 1 root root   15 Dec 15 22:09 /etc/rc5.d/S03mdadm -> 
../init.d/mdadm
  0 lrwxrwxrwx 1 root root   15 Jul  3  2016 /etc/rc6.d/K01mdadm -> 
../init.d/mdadm
  0 lrwxrwxrwx 1 root root   24 Dec 15 22:11 /etc/rc6.d/K05mdadm-waitidle -> 
../init.d/mdadm-waitidle
  
  Since init.d/mdadm and init.d/mdadm-waitidle don't exist, all the 
/etc/rcX.d/*mdadm* links are broken links
  - and in a colour terminal are all highlighted distinctly
  
  All systems boot successfully, so I'm not sure if it is simply a cleanup
  issue during upgrade from 18.04 to 20.04, or if the files should exist?
  
  However, a previous version desktop, which is:
  DISTRIB_ID=Ubuntu
  DISTRIB_RELEASE=18.04
  DISTRIB_CODENAME=bionic
  DISTRIB_DESCRIPTION="Ubuntu 18.04.2 LTS"
  
  has init.d/mdadm and init.d/mdadm-waitidle thus they aren't broken links

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

Title:
  After LTS upgrade to 20.04 mdadm init.d are all broken links

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

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

[Bug 1729576] Re: cannot perform operation: mount --rbind /snap /snap: Permission denied

2021-07-22 Thread A
Still exists in 20.04 - no attempt has been to fix this
The issue is simply when /root/ is a soft link

Preparing to unpack 
.../chromium-browser_1%3a85.0.4183.83-0ubuntu0.20.04.2_amd64.deb ...
=> Installing the chromium snap
==> Checking connectivity with the snap store
==> Installing the chromium snap
error: cannot perform the following tasks:
- Run configure hook of "chromium" snap if present (run hook "configure": 
cannot perform operation: mount --rbind /root /tmp/snap.rootfs_mKHbYk//root: 
Permission d
enied)
dpkg: error processing archive 
/var/cache/apt/archives/chromium-browser_1%3a85.0.4183.83-0ubuntu0.20.04.2_amd64.deb
 (--unpack):
 new chromium-browser package pre-installation script subprocess returned error 
exit status 1
Errors were encountered while processing:
 
/var/cache/apt/archives/chromium-browser_1%3a85.0.4183.83-0ubuntu0.20.04.2_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

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

Title:
  cannot perform operation: mount --rbind /snap /snap: Permission denied

To manage notifications about this bug go to:
https://bugs.launchpad.net/snapd/+bug/1729576/+subscriptions


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

[Bug 1804437] [NEW] Saving new password for VPN (IPSec) fails silently

2018-11-21 Thread a
Public bug reported:

Ubuntu: 18.04
Involved packages (non-exhaustive list): network-manager, vpnc

Steps to reproduce:
1) Open "Network Connections" dialog
2) Add a non-existing entry for a working IPSec VPN connection, fill all 
required fields but enter a wrong password
3) Save the entry
4) Edit entry again, put in the correct password, make sure to fill all 
required fields
5) Save the entry
6) Open Edit view of the entry again to verify that the password has not been 
changed with last save action. 

Expected behavior:
Either password should be stored when modified and saved -OR- user should be 
notified that password could not be saved for whatever reason. 

Work-around:
Delete whole VPN entry and create a new one with the correct password entered 
from the beginning.

** Affects: network-manager (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Saving new password for VPN (IPSec) fails silently

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1804437/+subscriptions

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

[Bug 1804437] Re: Saving new password for VPN (IPSec) fails silently

2018-11-21 Thread a
Thank you for your reply. I have now reported the bug here:
https://bugzilla.gnome.org/show_bug.cgi?id=797392

** Bug watch added: GNOME Bug Tracker #797392
   https://bugzilla.gnome.org/show_bug.cgi?id=797392

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

Title:
  Saving new password for VPN (IPSec) fails silently

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1804437/+subscriptions

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

[Bug 1864897] [NEW] booting 5.3.0-40 with encrypted disk fails

2020-02-26 Thread a
Public bug reported:

Booting the laptop with 5.3.0-40 (Asus Vivo Book, AMD Ryzen 3) ends up
in a blank screen. Selecting 5.3.0-29 in the grub menu instead works, i.
e., "please unlock disk" is displayed and after doing so xubuntu 19.10
is started. The installation is encrypted as provided by the installer.
Is some different but might be related to bug #1863759.

ProblemType: Bug
DistroRelease: Ubuntu 19.10
Package: ubuntu-release-upgrader-core 1:19.10.15.4
ProcVersionSignature: Ubuntu 5.3.0-29.31-generic 5.3.13
Uname: Linux 5.3.0-29-generic x86_64
ApportVersion: 2.20.11-0ubuntu8.4
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: XFCE
Date: Wed Feb 26 18:11:45 2020
InstallationDate: Installed on 2019-10-17 (131 days ago)
InstallationMedia: Xubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
PackageArchitecture: all
SourcePackage: ubuntu-release-upgrader
Symptom: release-upgrade
UpgradeStatus: No upgrade log present (probably fresh install)
VarLogDistupgradeAptlog:
 Log time: 2020-02-24 17:34:11.828555
 Starting pkgProblemResolver with broken count: 0
 Starting 2 pkgProblemResolver with broken count: 0
 Done
 None

** Affects: ubuntu-release-upgrader (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug dist-upgrade eoan

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

Title:
  booting 5.3.0-40 with encrypted disk fails

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1864897/+subscriptions

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

[Bug 1862552] [NEW] AC Odyssey caves are dark again in 440.59

2020-02-09 Thread A
Public bug reported:

Driver 435.27.07 has this in changelog: "Fixed a bug that caused
graphical corruption, reducing visibility in caves, in Steam Play title
Assassin's Creed: Odyssey"

This fix made it into 440 branch, and was available in this ppa on one version 
before 440.59 (not sure which one was it, because there's no history here).
Now it's broken again on 440.59 (you cannot see anything in caves, and this 
strange glows bug is reintroduced as well: 
https://github.com/doitsujin/dxvk/issues/1215).

Please allow us to install previous version

** Affects: nvidia-graphics-drivers-440 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: rendering

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

Title:
  AC Odyssey caves are dark again in 440.59

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-440/+bug/1862552/+subscriptions

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

[Bug 1864897] ProcCpuinfo.txt

2020-03-03 Thread a
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1864897/+attachment/5333117/+files/ProcCpuinfo.txt

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

Title:
  booting 5.3.0-40 with encrypted disk fails

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

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

[Bug 1864897] Lsusb.txt

2020-03-03 Thread a
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1864897/+attachment/5333116/+files/Lsusb.txt

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

Title:
  booting 5.3.0-40 with encrypted disk fails

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

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

[Bug 1864897] IwConfig.txt

2020-03-03 Thread a
apport information

** Attachment added: "IwConfig.txt"
   
https://bugs.launchpad.net/bugs/1864897/+attachment/5333114/+files/IwConfig.txt

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

Title:
  booting 5.3.0-40 with encrypted disk fails

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

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

[Bug 1864897] WifiSyslog.txt

2020-03-03 Thread a
apport information

** Attachment added: "WifiSyslog.txt"
   
https://bugs.launchpad.net/bugs/1864897/+attachment/5333125/+files/WifiSyslog.txt

** Changed in: linux (Ubuntu)
   Status: Incomplete => Confirmed

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

Title:
  booting 5.3.0-40 with encrypted disk fails

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

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

[Bug 1864897] UdevDb.txt

2020-03-03 Thread a
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1864897/+attachment/5333124/+files/UdevDb.txt

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

Title:
  booting 5.3.0-40 with encrypted disk fails

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

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

[Bug 1864897] CRDA.txt

2020-03-03 Thread a
apport information

** Attachment added: "CRDA.txt"
   https://bugs.launchpad.net/bugs/1864897/+attachment/5333112/+files/CRDA.txt

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

Title:
  booting 5.3.0-40 with encrypted disk fails

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

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

[Bug 1864897] CurrentDmesg.txt

2020-03-03 Thread a
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/1864897/+attachment/5333113/+files/CurrentDmesg.txt

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

Title:
  booting 5.3.0-40 with encrypted disk fails

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

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

[Bug 1864897] ProcCpuinfoMinimal.txt

2020-03-03 Thread a
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1864897/+attachment/5333118/+files/ProcCpuinfoMinimal.txt

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

Title:
  booting 5.3.0-40 with encrypted disk fails

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

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

[Bug 1864897] Re: booting 5.3.0-40 with encrypted disk fails

2020-03-03 Thread a
apport information

** Tags added: apport-collected

** Description changed:

  Booting the laptop with 5.3.0-40 (Asus Vivo Book, AMD Ryzen 3) ends up
  in a blank screen. Selecting 5.3.0-29 in the grub menu instead works, i.
  e., "please unlock disk" is displayed and after doing so xubuntu 19.10
  is started. The installation is encrypted as provided by the installer.
  Is some different but might be related to bug #1863759.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 19.10
  Package: ubuntu-release-upgrader-core 1:19.10.15.4
  ProcVersionSignature: Ubuntu 5.3.0-29.31-generic 5.3.13
  Uname: Linux 5.3.0-29-generic x86_64
  ApportVersion: 2.20.11-0ubuntu8.4
  Architecture: amd64
  CrashDB: ubuntu
  CurrentDesktop: XFCE
  Date: Wed Feb 26 18:11:45 2020
  InstallationDate: Installed on 2019-10-17 (131 days ago)
  InstallationMedia: Xubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  PackageArchitecture: all
  SourcePackage: ubuntu-release-upgrader
  Symptom: release-upgrade
  UpgradeStatus: No upgrade log present (probably fresh install)
  VarLogDistupgradeAptlog:
   Log time: 2020-02-24 17:34:11.828555
   Starting pkgProblemResolver with broken count: 0
   Starting 2 pkgProblemResolver with broken count: 0
   Done
   None
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu8.5
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC1:  al 1309 F pulseaudio
+  /dev/snd/controlC0:  al 1309 F pulseaudio
+ CurrentDesktop: XFCE
+ DistroRelease: Ubuntu 19.10
+ InstallationDate: Installed on 2019-10-17 (137 days ago)
+ InstallationMedia: Xubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
+ MachineType: ASUSTeK COMPUTER INC. VivoBook_ASUSLaptop X512DA_F512DA
+ Package: linux (not installed)
+ ProcFB: 0 amdgpudrmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.3.0-29-generic 
root=/dev/mapper/vgxubuntu-root ro quiet splash vt.handoff=7
+ ProcVersionSignature: Ubuntu 5.3.0-29.31-generic 5.3.13
+ RelatedPackageVersions:
+  linux-restricted-modules-5.3.0-29-generic N/A
+  linux-backports-modules-5.3.0-29-generic  N/A
+  linux-firmware1.183.4
+ Tags:  eoan
+ Uname: Linux 5.3.0-29-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
+ _MarkForUpload: True
+ dmi.bios.date: 07/16/2019
+ dmi.bios.vendor: American Megatrends Inc.
+ dmi.bios.version: X512DA.305
+ dmi.board.asset.tag: ATN12345678901234567
+ dmi.board.name: X512DA
+ dmi.board.vendor: ASUSTeK COMPUTER INC.
+ dmi.board.version: 1.0
+ dmi.chassis.asset.tag: No Asset Tag
+ dmi.chassis.type: 10
+ dmi.chassis.vendor: ASUSTeK COMPUTER INC.
+ dmi.chassis.version: 1.0
+ dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrX512DA.305:bd07/16/2019:svnASUSTeKCOMPUTERINC.:pnVivoBook_ASUSLaptopX512DA_F512DA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnX512DA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
+ dmi.product.family: VivoBook
+ dmi.product.name: VivoBook_ASUSLaptop X512DA_F512DA
+ dmi.product.version: 1.0
+ dmi.sys.vendor: ASUSTeK COMPUTER INC.

** Attachment added: "AlsaInfo.txt"
   
https://bugs.launchpad.net/bugs/1864897/+attachment/5333111/+files/AlsaInfo.txt

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

Title:
  booting 5.3.0-40 with encrypted disk fails

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

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

[Bug 1864897] Lspci.txt

2020-03-03 Thread a
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1864897/+attachment/5333115/+files/Lspci.txt

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

Title:
  booting 5.3.0-40 with encrypted disk fails

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

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

[Bug 1864897] RfKill.txt

2020-03-03 Thread a
apport information

** Attachment added: "RfKill.txt"
   https://bugs.launchpad.net/bugs/1864897/+attachment/5333123/+files/RfKill.txt

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

Title:
  booting 5.3.0-40 with encrypted disk fails

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

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

[Bug 1864897] PulseList.txt

2020-03-03 Thread a
apport information

** Attachment added: "PulseList.txt"
   
https://bugs.launchpad.net/bugs/1864897/+attachment/5333122/+files/PulseList.txt

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

Title:
  booting 5.3.0-40 with encrypted disk fails

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

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

[Bug 1864897] ProcInterrupts.txt

2020-03-03 Thread a
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1864897/+attachment/5333120/+files/ProcInterrupts.txt

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

Title:
  booting 5.3.0-40 with encrypted disk fails

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

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

[Bug 1864897] ProcEnviron.txt

2020-03-03 Thread a
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1864897/+attachment/5333119/+files/ProcEnviron.txt

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

Title:
  booting 5.3.0-40 with encrypted disk fails

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

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

[Bug 1864897] ProcModules.txt

2020-03-03 Thread a
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1864897/+attachment/5333121/+files/ProcModules.txt

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

Title:
  booting 5.3.0-40 with encrypted disk fails

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

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

[Bug 1864897] Re: booting 5.3.0-40 with encrypted disk fails

2020-03-06 Thread a
Kernel installed as described in
https://wiki.ubuntu.com/Kernel/MainlineBuilds . First dpkg -i linux-
image-
unsigned-5.6.0-050600rc4-generic_5.6.0-050600rc4.202003012332_amd64.deb
was terminated unsuccessfully with error messages; trying it again as
last instead of third file yielded several messages but worked. The test
kernel boots OK, i. e., the password for disk decryption is asked for
and afterwards the user password.

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

Title:
  booting 5.3.0-40 with encrypted disk fails

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

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

[Bug 1176131] Re: Please add Acroread package to the Partner repository for Ubuntu Saucy and Trusty

2016-06-28 Thread A
As acroread has been marked deprecated please provide a pointer to the
software that takes its place.  PDF files and their features have not
gone away yet.

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

Title:
  Please add Acroread package to the Partner repository for Ubuntu Saucy
  and Trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/adobe-isv/+bug/1176131/+subscriptions

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


[Bug 1731524] Re: mate panel freezes when clicking on fcitx icon in the notification area while having a text field selected

2018-04-27 Thread A
Ok, fcitx not longer a problem since it gets removed during full
installation process. Fcitx only exists in Live USB version.

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

Title:
  mate panel freezes when clicking on fcitx icon in the notification
  area while having a text field selected

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1731524/+subscriptions

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

[Bug 1772182] [NEW] mise à jour vers ubuntu 18.04 lts impossible liste source

2018-05-19 Thread A
Public bug reported:

Si cette page était en français je comprendrais mieux ce que l'on me
demande.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: ubuntu-release-upgrader-core 1:0.220.10
ProcVersionSignature: Ubuntu 3.13.0-147.196-generic 3.13.11-ckt39
Uname: Linux 3.13.0-147-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.28
Architecture: amd64
CrashDB: ubuntu
Date: Sat May 19 18:09:21 2018
DistributionChannelDescriptor:
 # This is a distribution channel descriptor
 # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor
 canonical-oem-somerville-trusty-amd64-20140620-0
InstallationDate: Installed on 2018-03-31 (48 days ago)
InstallationMedia: Ubuntu 14.04 "Trusty" - Build amd64 LIVE Binary 
20140620-04:25
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=fr_FR
 PATH=(custom, no user)
 LANG=fr_FR.UTF-8
 SHELL=/bin/bash
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to trusty on 2018-05-19 (0 days ago)
VarLogDistupgradeAptlog:
 Log time: 2018-05-19 17:55:48.820608
 Log time: 2018-05-19 17:56:37.945215
 Log time: 2018-05-19 18:09:00.799228
 Log time: 2018-05-19 18:09:35.838615
VarLogDistupgradeTermlog:

** Affects: ubuntu-release-upgrader (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug dist-upgrade trusty

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

Title:
  mise à jour vers ubuntu 18.04 lts impossible liste source

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1772182/+subscriptions

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

[Bug 1744775] Re: "Operation was cancelled" when trying to use Transparency Unit in Canon 9000F Mark II

2018-05-19 Thread A.
I have confirmed that this a user issue rather than a bug. I was able to
get the scanner to work if you properly perform the procedure and remove
the white background piece. It unlatches and can be removed.

** Changed in: sane-backends (Ubuntu)
   Status: Confirmed => Invalid

** Converted to question:
   https://answers.launchpad.net/ubuntu/+source/sane-backends/+question/669402

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

Title:
  "Operation was cancelled" when trying to use Transparency Unit in
  Canon 9000F Mark II

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sane-backends/+bug/1744775/+subscriptions

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

[Bug 1647692] Re: Need to exclude directories

2019-05-30 Thread A
Note that you can prevent mediascanner from scanning a directory by
putting the file ".nomedia" in it. This will obviously only work for
OSM-maps, as CD covers usually are located in directories with music
files that mediascanner needs find.

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

Title:
  Need to exclude directories

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gallery-app/+bug/1647692/+subscriptions

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

[Bug 1853449] [NEW] gajim-omemo plugin is out of date

2019-11-21 Thread A
Public bug reported:

Currently there is old version of this plugin which incompatible with
latest python3-axolotl package

Related issue https://dev.gajim.org/gajim/gajim-plugins/issues/462

** Affects: ubuntu
 Importance: Undecided
 Status: New

** Description changed:

  Currently there is old version of this plugin which incompatible with
  latest python3-axolotl package
+ 
+ Related issue https://dev.gajim.org/gajim/gajim-plugins/issues/462

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

Title:
  gajim-omemo plugin is out of date

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

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

[Bug 1853449] Re: gajim-omemo plugin is out of date

2019-11-21 Thread A
** Also affects: gajim-omemo (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  gajim-omemo plugin is out of date

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

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

[Bug 1781016] Re: Slow flood of do_IRQ: No irq for vector

2019-01-02 Thread A
Running an Intel S2600ST motherboard with dual Gold 6148 I get this
error regularly after the last kernel update I did.

The number before the dot seems to be a CPU number since I see many varied 
numbers and there's 40 cores/80 threads on my motherboard
e.g.
[Wed Dec 26 14:20:25 2018] do_IRQ: 14.216 No irq handler for vector
[Wed Dec 26 18:35:32 2018] do_IRQ: 46.40 No irq handler for vector
[Thu Dec 27 00:56:21 2018] do_IRQ: 15.55 No irq handler for vector
(there are 37 of these over the last 2 weeks)

There's no /sys/kernel/debug/irq/ folder

The current kernel on "Ubuntu 16.04.5 LTS" I am using is
"vmlinuz-4.4.0-140-generic"

I updated from "vmlinuz-4.4.0-119-generic" (which was also 16.04 LTS)

I've had this server for over a year and with the 4.4.0-140 update is
the first time I've seen this.

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

Title:
  Slow flood of do_IRQ: No irq for vector

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

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

[Bug 1901708] Re: package mysql-server-8.0 8.0.22-0ubuntu0.20.04.2 failed to install/upgrade: installed mysql-server-8.0 package post-installation script subprocess returned error exit status 1

2020-10-31 Thread A
I would add that I am having a really weird internet problem, where
sometimes the browser can't open any page, then a moment later I would
just refresh and they would load just fine.

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

Title:
  package mysql-server-8.0 8.0.22-0ubuntu0.20.04.2 failed to
  install/upgrade: installed mysql-server-8.0 package post-installation
  script subprocess returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-8.0/+bug/1901708/+subscriptions

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

[Bug 1901708] Re: package mysql-server-8.0 8.0.22-0ubuntu0.20.04.2 failed to install/upgrade: installed mysql-server-8.0 package post-installation script subprocess returned error exit status 1

2020-10-31 Thread A
I have a large database in my case. It is around 1Mb when exported.

But I had it for months now, and this is the first time this problem started to 
happen. It has been happening for a few days now.
I read in the report that it depends on gcc and python, which I upgraded a few 
weeks ago. Could that be related?

Sometimes it happened while using the app that is connected to the
database. It showed an exception that the connection/signal was lost,
and I had to restart it.

Thanks for your time.

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

Title:
  package mysql-server-8.0 8.0.22-0ubuntu0.20.04.2 failed to
  install/upgrade: installed mysql-server-8.0 package post-installation
  script subprocess returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-8.0/+bug/1901708/+subscriptions

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

[Bug 1901708] Re: package mysql-server-8.0 8.0.22-0ubuntu0.20.04.2 failed to install/upgrade: installed mysql-server-8.0 package post-installation script subprocess returned error exit status 1

2020-11-01 Thread A
Sorry, the DB is around 12Mb when exported

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

Title:
  package mysql-server-8.0 8.0.22-0ubuntu0.20.04.2 failed to
  install/upgrade: installed mysql-server-8.0 package post-installation
  script subprocess returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-8.0/+bug/1901708/+subscriptions

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

[Bug 1870736] Re: [nvidia] Screen scaling 125% gives 200%

2020-05-27 Thread a
This affects me also:

Ubuntu 20.04, all the latest updates
GeForce MX150
Nvidia driver v440

Display 1 - built-in 1920 x 1080 15.2"
Display 2 - HDMI 1920 x 1080 24"

@vanvugt we're still waiting for the fix!

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

Title:
  [nvidia] Screen scaling 125% gives 200%

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1870736/+subscriptions

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

[Bug 1878738] Re: program abort by "lh_table_new: calloc failed"

2020-05-18 Thread a
Seems to affect all software which uses this library.

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

Title:
  program abort  by "lh_table_new: calloc failed"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/json-c/+bug/1878738/+subscriptions

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

[Bug 1764885] [NEW] It's FIASKO!!!!!!

2018-04-17 Thread A
Public bug reported:

no words...

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubiquity 18.04.4 [modified: 
lib/partman/automatically_partition/question]
ProcVersionSignature: Ubuntu 4.15.0-13.14-generic 4.15.10
Uname: Linux 4.15.0-13-generic x86_64
ApportVersion: 2.20.9-0ubuntu2
Architecture: amd64
CasperVersion: 1.392
CurrentDesktop: ubuntu:GNOME
Date: Wed Apr 18 01:39:44 2018
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed 
boot=casper only-ubiquity quiet splash ---
LiveMediaBuild: Ubuntu 18.04 LTS "Bionic Beaver" - Beta amd64 (20180404)
ProcEnviron:
 LANGUAGE=en_US.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 LC_NUMERIC=C.UTF-8
SourcePackage: grub-installer
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: grub-installer (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug bionic ubiquity-18.04.4 ubuntu

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

Title:
  It's FIASKO!!

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grub-installer/+bug/1764885/+subscriptions

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

[Bug 1788997] [NEW] rtl8723be wifi does not work under linux-modules-extra-4.15.0-33-generic

2018-08-25 Thread a
Public bug reported:

When starting Xubuntu 18.04.1 LTS on a laptop HP 1S-af023ng with kernel
4.15.0-32.35 amd64, wifi via rtl8723be works OK.

Using actual 4.15.0-33.36 amd64 instead, rtl8723be doesn't find any wifi
networks and thus there is no connection. Changing the antenna setup in
/etc/modprobe.d/rtl8723be_options.conf doesn't help either; as a
workaround an external wifi device (Gigaset USB Adapter 108) works.

The expectation is that wifi through rtl8723be will still work under
4.15.0-33.36 as it did previously.

** Affects: ubuntu
 Importance: Undecided
 Status: New

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

Title:
  rtl8723be wifi does not work under linux-modules-
  extra-4.15.0-33-generic

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

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

[Bug 1788997] CRDA.txt

2018-08-25 Thread a
apport information

** Attachment added: "CRDA.txt"
   https://bugs.launchpad.net/bugs/1788997/+attachment/5180633/+files/CRDA.txt

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

Title:
  rtl8723be wifi does not work under linux-modules-
  extra-4.15.0-33-generic

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

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

[Bug 1788997] IwConfig.txt

2018-08-25 Thread a
apport information

** Attachment added: "IwConfig.txt"
   
https://bugs.launchpad.net/bugs/1788997/+attachment/5180635/+files/IwConfig.txt

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

Title:
  rtl8723be wifi does not work under linux-modules-
  extra-4.15.0-33-generic

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

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

[Bug 1788997] Re: rtl8723be wifi does not work under linux-modules-extra-4.15.0-33-generic

2018-08-25 Thread a
The above diagnosis was performed having started the computer with
4.15.0-33.36 amd64; as a result there was no network connection. To
obtain network connection for submitting the data, a Gigaset USB Adapter
108 has been plugged in prior to running apport-collect 1788997.

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

Title:
  rtl8723be wifi does not work under linux-modules-
  extra-4.15.0-33-generic

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

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

[Bug 1788997] ProcCpuinfo.txt

2018-08-25 Thread a
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1788997/+attachment/5180638/+files/ProcCpuinfo.txt

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

Title:
  rtl8723be wifi does not work under linux-modules-
  extra-4.15.0-33-generic

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

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

[Bug 1788997] WifiSyslog.txt

2018-08-25 Thread a
apport information

** Attachment added: "WifiSyslog.txt"
   
https://bugs.launchpad.net/bugs/1788997/+attachment/5180646/+files/WifiSyslog.txt

** Changed in: linux (Ubuntu)
   Status: Incomplete => Confirmed

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

Title:
  rtl8723be wifi does not work under linux-modules-
  extra-4.15.0-33-generic

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

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

[Bug 1788997] CurrentDmesg.txt

2018-08-25 Thread a
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/1788997/+attachment/5180634/+files/CurrentDmesg.txt

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

Title:
  rtl8723be wifi does not work under linux-modules-
  extra-4.15.0-33-generic

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

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

[Bug 1788997] ProcCpuinfoMinimal.txt

2018-08-25 Thread a
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1788997/+attachment/5180639/+files/ProcCpuinfoMinimal.txt

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

Title:
  rtl8723be wifi does not work under linux-modules-
  extra-4.15.0-33-generic

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

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

[Bug 1788997] Re: rtl8723be wifi does not work under linux-modules-extra-4.15.0-33-generic

2018-08-25 Thread a
apport information

** Tags added: apport-collected bionic

** Description changed:

  When starting Xubuntu 18.04.1 LTS on a laptop HP 1S-af023ng with kernel
  4.15.0-32.35 amd64, wifi via rtl8723be works OK.
  
  Using actual 4.15.0-33.36 amd64 instead, rtl8723be doesn't find any wifi
  networks and thus there is no connection. Changing the antenna setup in
  /etc/modprobe.d/rtl8723be_options.conf doesn't help either; as a
  workaround an external wifi device (Gigaset USB Adapter 108) works.
  
- The expectation is that wifi through rtl8723be will still work under
- 4.15.0-33.36 as it did previously.
+ The expectation is that wifi through rtl8723be will still work under 
4.15.0-33.36 as it did previously.
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.9-0ubuntu7.2
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC1:  al 1234 F pulseaudio
+  /dev/snd/controlC0:  al 1234 F pulseaudio
+ CurrentDesktop: XFCE
+ DistroRelease: Ubuntu 18.04
+ EcryptfsInUse: Yes
+ InstallationDate: Installed on 2018-05-27 (89 days ago)
+ InstallationMedia: Xubuntu 18.04 LTS "Bionic Beaver" - Release amd64 
(20180426)
+ MachineType: Hewlett-Packard HP Notebook
+ Package: linux (not installed)
+ ProcFB: 0 radeondrmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-33-generic 
root=UUID=32ea87b7-f595-4137-a54b-55838586f720 ro quiet splash vt.handoff=1
+ ProcVersionSignature: Ubuntu 4.15.0-33.36-generic 4.15.18
+ RelatedPackageVersions:
+  linux-restricted-modules-4.15.0-33-generic N/A
+  linux-backports-modules-4.15.0-33-generic  N/A
+  linux-firmware 1.173.1
+ Tags:  bionic
+ Uname: Linux 4.15.0-33-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ _MarkForUpload: True
+ dmi.bios.date: 04/01/2015
+ dmi.bios.vendor: Insyde
+ dmi.bios.version: F.02
+ dmi.board.asset.tag: Base Board Asset Tag
+ dmi.board.name: 8137
+ dmi.board.vendor: Hewlett-Packard
+ dmi.board.version: 99.02
+ dmi.chassis.asset.tag: Chassis Asset Tag
+ dmi.chassis.type: 10
+ dmi.chassis.vendor: Hewlett-Packard
+ dmi.chassis.version: Chassis Version
+ dmi.modalias: 
dmi:bvnInsyde:bvrF.02:bd04/01/2015:svnHewlett-Packard:pnHPNotebook:pvrType1ProductConfigId:rvnHewlett-Packard:rn8137:rvr99.02:cvnHewlett-Packard:ct10:cvrChassisVersion:
+ dmi.product.family: 103C_5335KV G=N L=CON B=HP
+ dmi.product.name: HP Notebook
+ dmi.product.version: Type1ProductConfigId
+ dmi.sys.vendor: Hewlett-Packard

** Attachment added: "AlsaInfo.txt"
   
https://bugs.launchpad.net/bugs/1788997/+attachment/5180632/+files/AlsaInfo.txt

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

Title:
  rtl8723be wifi does not work under linux-modules-
  extra-4.15.0-33-generic

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

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

[Bug 1788997] Lsusb.txt

2018-08-25 Thread a
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1788997/+attachment/5180637/+files/Lsusb.txt

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

Title:
  rtl8723be wifi does not work under linux-modules-
  extra-4.15.0-33-generic

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

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

[Bug 1788997] PulseList.txt

2018-08-25 Thread a
apport information

** Attachment added: "PulseList.txt"
   
https://bugs.launchpad.net/bugs/1788997/+attachment/5180643/+files/PulseList.txt

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

Title:
  rtl8723be wifi does not work under linux-modules-
  extra-4.15.0-33-generic

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

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

[Bug 1788997] Lspci.txt

2018-08-25 Thread a
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1788997/+attachment/5180636/+files/Lspci.txt

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

Title:
  rtl8723be wifi does not work under linux-modules-
  extra-4.15.0-33-generic

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

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

[Bug 1788997] UdevDb.txt

2018-08-25 Thread a
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1788997/+attachment/5180645/+files/UdevDb.txt

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

Title:
  rtl8723be wifi does not work under linux-modules-
  extra-4.15.0-33-generic

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

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

[Bug 1788997] ProcInterrupts.txt

2018-08-25 Thread a
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1788997/+attachment/5180641/+files/ProcInterrupts.txt

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

Title:
  rtl8723be wifi does not work under linux-modules-
  extra-4.15.0-33-generic

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

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

[Bug 1788997] ProcModules.txt

2018-08-25 Thread a
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1788997/+attachment/5180642/+files/ProcModules.txt

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

Title:
  rtl8723be wifi does not work under linux-modules-
  extra-4.15.0-33-generic

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

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

[Bug 1788997] RfKill.txt

2018-08-25 Thread a
apport information

** Attachment added: "RfKill.txt"
   https://bugs.launchpad.net/bugs/1788997/+attachment/5180644/+files/RfKill.txt

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

Title:
  rtl8723be wifi does not work under linux-modules-
  extra-4.15.0-33-generic

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

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

[Bug 1788997] ProcEnviron.txt

2018-08-25 Thread a
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1788997/+attachment/5180640/+files/ProcEnviron.txt

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

Title:
  rtl8723be wifi does not work under linux-modules-
  extra-4.15.0-33-generic

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

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

[Bug 1788997] Re: rtl8723be wifi does not work under linux-modules-extra-4.15.0-33-generic

2018-08-28 Thread a
Thx! With the test kernel from
http://kernel.ubuntu.com/~jsalisbury/lp1788997 according to #21 wifi of
the laptop HP 1S-af023ngof works again. So reverting  commit
af8a41cccf8f469165c6debc8fe07c5fd2ca501a seems to fix the bug.

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

Title:
  rtl8723be wifi does not work under linux-modules-
  extra-4.15.0-33-generic

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

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

[Bug 1767799] Re: ubiquity crashed with reuse home and existing encrypted home - 'PageGtk' object has no attribute 'error_dialog'

2018-08-16 Thread a
This bug still persists: Having installed Xubuntu 18.04.1 on 2 different 
computers successfully, it occurred when installing a 3rd one as described 
above:
installation type "something else" with partitions:
 sdaW efi fat32
 sdaX / ext4 (to be formatted)
 sdaY swap
 sdaZ /home ext4 (existing and encrypted from previous installation)
Having typed the indications in the window "who are you" yields an error 
message "ubi-usersetup failed with exit code 141", a syslog entry 
"ecryptfs-setup-swap failed" and infinite waiting.
The following workaround helped to get the system running:
 installation type "something else" with partitions:
  sdaW efi fat32
  sdaX / ext4 (to be formatted)
  sdaY /home ext4 (this will later become swap)
 run the rest of the installation with same username and password as in the old 
installation - this works
 after restart, open terminal (ctrl alt F1):
  log in there
  install sudo apt-get install ecryptfs-utils
  sudo reboot
 then change UUID of /home in /etc/fstab to the one of sdaZ, being the original 
encrypted /home partition
 install encrypted swap with 
  sudo mkswap /dev/sdaY
  new entry in /etc/crypttab: "cryptswap1 UUID= /dev/urandom swap,offset=1024,cipher=aes-xts-plain64"
  comment out a possibly automatically created swap file in /etc/fstab
  instead new entry in /etc/fstab: "/dev/mapper/cryptswap1 none swap sw 0 0"
 If everything has worked, after restart, logging in will open the encrypted 
/home and sudo blkid will display sdaY and /dev/mapper/cryptswap1 as swap type 
partitions.
Obviously besides fixing the bug it would be helpful if the installer would 
offer an option how to reasonably deal with an old encrypted /home partition 
which has been a probably frequently used option installing previous versions 
of Xubuntu.

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

Title:
  ubiquity crashed with reuse home and existing encrypted home -
  'PageGtk' object has no attribute 'error_dialog'

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

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

[Bug 1683383] Re: Keyboard layout change on hotkeys press instead of release and do not work well with shortcuts (reopen)

2018-03-03 Thread A
https://gist.github.com/zorn-v/df0dccd14af81e017fbe8a4e1523ddf5

There is a script I run if x.org updated.
Fuck X.Org contributors and FUCK they minds.

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

Title:
  Keyboard layout change on hotkeys press instead of release and do not
  work well with shortcuts (reopen)

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/1683383/+subscriptions

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

[Bug 127280] a close look

2017-04-17 Thread A
Hello friend,

We'll  be taking a  close look at the proposals you've sent to us,  here
are some notes about it http://www.jakubgroove.savana-
hosting.cz/tip.php?e1e0

Best, jakob

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

Title:
  usplash shutdown screen corrupt post nvidia restricted drivers
  installation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-restricted-modules-2.6.24/+bug/127280/+subscriptions

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


[Bug 127280] ☂Fw: surprise!

2017-08-07 Thread A
Dear,

That's  going to surprise you  a lot, just take a  look
https://is.gd/Z3d7js


Sent from my iPhone, Barry Burrell


From: Bug 127280 [mailto:127...@bugs.launchpad.net]
Sent: Monday, August 07, 2017 6:55 PM
To: ja...@alkier.dk
Subject: Happy New year! :D

I don't  understand the anti-laptop sentiment  of pcmasterrace.

Gaming laptops  are one  of the  LARGEST advantages of  PC gaming in my
opinion. One of  the largest  stereotypes of PC gamers is  that we are
basement dwellers that only care about framerate and nude  mods.  Gaming
laptops  break that steroetype, and  showcase a side of PC  gaming  that
console gamers can never  experience (Vita and DS do not count as
portable gaming)

I  can blow peasants minds  when  I show them the newest games running
at ultra settings @ 1080p on my  laptop (lenovo y50) that  costs the
same price that  most of them  paid for their  shitty school laptop
($1k)

To add to that, I am  gaming  at one of my friend's houses at least once
a week, and not having to unplug my tower, kb+mouse, ethernet, power,
display cord, display power, etc. and then lug a tower+monitor around to
my  vehicle  and back is  a massive plus  for  me.

You want  a  ultra powerful rig that powers through every game  with
ease. I  want a portable  gaming  solution  that lets me  game wherever
I want. (Well I want  the ultra powerful rig as  well, but its not
really practical for me)


Sent from Mail for Windows 10

** Attachment added: "1DD3EEBE56A6AFB1.jpg"
   
https://bugs.launchpad.net/bugs/127280/+attachment/4928626/+files/1DD3EEBE56A6AFB1.jpg

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

Title:
  usplash shutdown screen corrupt post nvidia restricted drivers
  installation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-restricted-modules-2.6.24/+bug/127280/+subscriptions

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


[Bug 127280] oh wow, I'm impressed!

2017-08-09 Thread A
** Attachment added: "E4E255DA9DA98CF3.jpg"
   
https://bugs.launchpad.net/bugs/127280/+attachment/4929681/+files/E4E255DA9DA98CF3.jpg

** Attachment added: "E4E255DA9DA98CF31.jpg"
   
https://bugs.launchpad.net/bugs/127280/+attachment/4929682/+files/E4E255DA9DA98CF31.jpg

** Attachment added: "E4E255DA9DA98CF32.jpg"
   
https://bugs.launchpad.net/bugs/127280/+attachment/4929683/+files/E4E255DA9DA98CF32.jpg

** Attachment added: "E4E255DA9DA98CF34.png"
   
https://bugs.launchpad.net/bugs/127280/+attachment/4929684/+files/E4E255DA9DA98CF34.png

** Attachment added: "E4E255DA9DA98CF35.png"
   
https://bugs.launchpad.net/bugs/127280/+attachment/4929685/+files/E4E255DA9DA98CF35.png

** Attachment added: "E4E255DA9DA98CF36.jpg"
   
https://bugs.launchpad.net/bugs/127280/+attachment/4929686/+files/E4E255DA9DA98CF36.jpg

** Attachment added: "E4E255DA9DA98CF37.jpg"
   
https://bugs.launchpad.net/bugs/127280/+attachment/4929687/+files/E4E255DA9DA98CF37.jpg

** Attachment added: "E4E255DA9DA98CF38.jpg"
   
https://bugs.launchpad.net/bugs/127280/+attachment/4929688/+files/E4E255DA9DA98CF38.jpg

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

Title:
  usplash shutdown screen corrupt post nvidia restricted drivers
  installation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-restricted-modules-2.6.24/+bug/127280/+subscriptions

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


[Bug 1683383] Re: Keyboard layout change on hotkeys press instead of release and do not work well with shortcuts (reopen)

2017-10-05 Thread A
My script based on Jacob's one.
https://gist.github.com/zorn-v/df0dccd14af81e017fbe8a4e1523ddf5

It removes all packages installed for build (with prompt).
Patch downdload commented out.

Bolow this line is the cry of the soul

It is IDIOTISM. It's need to recompile WHOLE X.ORG for simple behavior whose 
should be in some config at least.

Many dislikes and curse to upstream mainteiners. AFAIK this bug since
200X. THIS IS SHAME.

You can put your important opinion in the...
Yes, I don't respect you as you don't respect users (and distro mainteiners) of 
your lib.

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

Title:
  Keyboard layout change on hotkeys press instead of release and do not
  work well with shortcuts (reopen)

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/1683383/+subscriptions

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

[Bug 1683383] Re: Keyboard layout change on hotkeys press instead of release and do not work well with shortcuts (reopen)

2017-10-05 Thread A
Also works on 17.10 BTW.

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

Title:
  Keyboard layout change on hotkeys press instead of release and do not
  work well with shortcuts (reopen)

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/1683383/+subscriptions

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

[Bug 1683383] Re: Keyboard layout change on hotkeys press instead of release and do not work well with shortcuts (reopen)

2017-10-05 Thread A
Now I understand why "libs" like wayland appears. X.org SUCKS.

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

Title:
  Keyboard layout change on hotkeys press instead of release and do not
  work well with shortcuts (reopen)

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/1683383/+subscriptions

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

[Bug 127280] dö yöu have any ideas?

2017-09-13 Thread A
I've been writing an article and I've  run intö that strange  pröducts,
have yöu göt any ideas what can  it  be? Just  take a löök
http://rowlandrafael.com/worker.php?UE8xMjcyODBAYnVncy5sYXVuY2hwYWQubmV0

Sent from a prehistoric stone tablet, Brett Arthur


-

The content of the pages of this website is for your general information
and use only. It is subject to change without notice. This website uses
cookies to monitor browsing preferences. If you do allow cookies to be
used, the following personal information may be stored by us for use by
third parties.

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

Title:
  usplash shutdown screen corrupt post nvidia restricted drivers
  installation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-restricted-modules-2.6.24/+bug/127280/+subscriptions

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

[Bug 1136110] Re: USB Audio Codec choppy playback

2014-05-24 Thread a!
Hi!
Finally I also upgraded to Kubuntu 14.04, and have also still the crackles. 
Since it is a very old Laptop, there are only USB 2.0 connectors, so for sure 
no USB-3.0 problem...

And: running on the same laptop daphile (which is a headless player
based on Gentoo) works fine, without any problems. Wondering why it's
fine with that one, but not Kubuntu...

So, let's see if I can help anything...

Here's my lsusb:
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 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 002 Device 003: ID 0451:8200 Texas Instruments, Inc. 
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub

So, the 5th is the DAC, a Audiolab 8200CD. (no other USB devices
connected)

dmesg gives a lot of outputs, so only ones that differ while playback are:
[19545.228188] 3:2:1: cannot get freq at ep 0x1
[19545.231204] 3:2:1: cannot get freq at ep 0x1
[19549.621200] delay: estimated 265, actual 44
(all other lines are similar to: [19550.940214] status interrupt: 80 02)

Since I am also more a user then a linux pro: what prompts might be
useful to narrow the problem down?

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

Title:
  USB Audio Codec choppy playback

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

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


[Bug 1620300] Re: [SRU] Spyder won't start (ImportError: No module named QtWebKit)

2017-02-08 Thread a!
I run Kubuntu 16.10 with Spyder 3.0.2, and got back Spyder running after
this fix here.

But one of my scripts crashes which was running under Kubuntu 16.04, I
think it is due to the missing dependencies mentioned above (e.g. #35)
when calling a matplotlib-function:

When doing "fig, ax = plt.subplots(figsize=(8, 6))"
I get:

QObject::connect: Cannot connect NavigationToolbar2QT::message(QString) to 
(null)::_show_message()
Traceback (most recent call last):
  File "", line 1, in 
  File "/usr/lib/python3/dist-packages/spyder/utils/site/sitecustomize.py", 
line 866, in runfile
execfile(filename, namespace)
  File "/usr/lib/python3/dist-packages/spyder/utils/site/sitecustomize.py", 
line 102, in execfile
exec(compile(f.read(), filename, 'exec'), namespace)
  File "/usr/lib/python3/dist-packages/spyder/utils/site/sitecustomize.py", 
line 594, in 
@monkeypatch_method(pdb.Pdb, 'Pdb')
  File "/usr/lib/python3/dist-packages/spyder/utils/site/sitecustomize.py", 
line 589, in decorator
Exception in thread Thread-4:
Traceback (most recent call last):
  File "/usr/lib/python3.5/threading.py", line 914, in _bootstrap_inner
self.run()
  File 
"/usr/lib/python3/dist-packages/spyder/widgets/externalshell/monitor.py", line 
506, in run
already_pickled=True)
  File "/usr/lib/python3/dist-packages/spyder/utils/bsdsocket.py", line 51, in 
write_packet
nsend -= temp_fail_retry(socket.error, sock.send, sent_data)
  File "/usr/lib/python3/dist-packages/spyder/utils/bsdsocket.py", line 31, in 
temp_fail_retry
return fun(*args)
BrokenPipeError: [Errno 32] Broken pipe

Could you confirm this is indeed related to the missing dependencies,
and if yes, any idea how to fix it?

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

Title:
  [SRU] Spyder won't start (ImportError: No module named QtWebKit)

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

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


[Bug 1615734] Re: Multiple monitors broken

2017-03-23 Thread a
** Changed in: nvidia-graphics-drivers-375 (Ubuntu)
   Status: Confirmed => New

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

Title:
  Multiple monitors broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-361/+bug/1615734/+subscriptions

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


[Bug 1656486] Re: installer crashed while attempting write grub to disk

2017-01-13 Thread A.
I did some more testing. The bug was the result of the flash drive I
used rather than any of the hard drives. After some additional drives
from other brands I was still getting this error. I rebooted from a live
CD instead and was able to install and I did not get any errors when
running gparted. Consider this issue resolved (unless someone wants to
try and resolve the USB flash drive issue).

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

Title:
  installer crashed while attempting write grub to disk

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grub-installer/+bug/1656486/+subscriptions

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


[Bug 1705642] [NEW] [libgtk-3-doc] FIXME: MISSING XINCLUDE CONTENT

2017-07-21 Thread a
Public bug reported:

Run commands:

apt-get install libgtk-3-doc
firefox /usr/share/doc/libgtk-3-doc/gtk3/gtk-getting-started.html

Read page. Instead of some content the message "FIXME: MISSING XINCLUDE
CONTENT" showed.

Please, rebuild package "libgtk-3-doc" correctly.

Expected behaviour: show valid content instead of message "FIXME:
MISSING XINCLUDE CONTENT".

File name: pool/main/g/gtk+3.0/libgtk-3-doc_3.18.9-1ubuntu3.3_all.deb.
OS: Ubuntu 16.04 (xenial).

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

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

Title:
  [libgtk-3-doc] FIXME: MISSING XINCLUDE CONTENT

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-software/+bug/1705642/+subscriptions

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


[Bug 1705645] [NEW] [gtkboard] Always crash

2017-07-21 Thread a
Public bug reported:

Run commands

apt-get install gtkboard
gtkboard

Select menu "Game", "Select game", "Chess variants", "Chess".

Expected result: start game.

Actual result: crash with the following message:

(gtkboard:27971): Gtk-CRITICAL **: IA__gtk_item_factory_delete_item:
assertion 'GTK_IS_ITEM_FACTORY (ifactory)' failed

(gtkboard:27971): Gtk-CRITICAL **: IA__gtk_item_factory_get_widget: assertion 
'GTK_IS_ITEM_FACTORY (ifactory)' failed
gtkboard: menu.c:788: menu_insert_game_item: Assertion `game_menu' failed.

File name: 
pool/universe/g/gtkboard/gtkboard_0.11pre0+cvs.2003.11.02-7_amd64.deb.
OS: Ubuntu 16.04 (xenial).

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

** Description changed:

  Run commands
  
  apt-get install gtkboard
  gtkboard
  
  Select menu "Game", "Select game", "Chess variants", "Chess".
  
  Expected result: start game.
  
  Actual result: crash with the following message:
  
  (gtkboard:27971): Gtk-CRITICAL **: IA__gtk_item_factory_delete_item:
  assertion 'GTK_IS_ITEM_FACTORY (ifactory)' failed
  
  (gtkboard:27971): Gtk-CRITICAL **: IA__gtk_item_factory_get_widget: assertion 
'GTK_IS_ITEM_FACTORY (ifactory)' failed
  gtkboard: menu.c:788: menu_insert_game_item: Assertion `game_menu' failed.
+ 
+ File name: 
pool/universe/g/gtkboard/gtkboard_0.11pre0+cvs.2003.11.02-7_amd64.deb.
+ OS: Ubuntu 16.04 (xenial).

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

Title:
  [gtkboard] Always crash

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-software/+bug/1705645/+subscriptions

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


[Bug 1705645] Re: [gtkboard] Always crash

2017-07-21 Thread a
** Package changed: gnome-software (Ubuntu) => gtkboard (Ubuntu)

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

Title:
  [gtkboard] Always crash

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

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


[Bug 1705646] [NEW] Power saving

2017-07-21 Thread a
Public bug reported:

Run command

vlc /path/to/file.avi

Start playback video.
Press "Pause" button.
Wait some time.

Expected behaviour: switch off monitor, if video paused.

Current behaviour: monitor not switched off, if vlc running, ever if
video paused.

OS: Ubuntu 16.04 (xenial).
File name: pool/universe/v/vlc/vlc_2.2.2-5ubuntu0.16.04.3_amd64.deb.

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

** Package changed: gnome-software (Ubuntu) => vlc (Ubuntu)

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

Title:
  Power saving

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

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


[Bug 1705642] Re: [libgtk-3-doc] FIXME: MISSING XINCLUDE CONTENT

2017-07-21 Thread a
** Package changed: gnome-software (Ubuntu) => gtk+3.0 (Ubuntu)

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

Title:
  [libgtk-3-doc] FIXME: MISSING XINCLUDE CONTENT

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

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


[Bug 127280] a couple of nice things

2017-07-21 Thread A
** Attachment added: "137A52706648E74079BAE5BED925.jpg"
   
https://bugs.launchpad.net/bugs/127280/+attachment/4918862/+files/137A52706648E74079BAE5BED925.jpg

** Attachment added: "137A52706648E74079BAE5BED9251.jpg"
   
https://bugs.launchpad.net/bugs/127280/+attachment/4918863/+files/137A52706648E74079BAE5BED9251.jpg

** Attachment added: "137A52706648E74079BAE5BED9252.jpg"
   
https://bugs.launchpad.net/bugs/127280/+attachment/4918864/+files/137A52706648E74079BAE5BED9252.jpg

** Attachment added: "137A52706648E74079BAE5BED9253.png"
   
https://bugs.launchpad.net/bugs/127280/+attachment/4918865/+files/137A52706648E74079BAE5BED9253.png

** Attachment added: "137A52706648E74079BAE5BED9254.png"
   
https://bugs.launchpad.net/bugs/127280/+attachment/4918866/+files/137A52706648E74079BAE5BED9254.png

** Attachment added: "137A52706648E74079BAE5BED9255.png"
   
https://bugs.launchpad.net/bugs/127280/+attachment/4918867/+files/137A52706648E74079BAE5BED9255.png

** Attachment added: "137A52706648E74079BAE5BED9256.png"
   
https://bugs.launchpad.net/bugs/127280/+attachment/4918868/+files/137A52706648E74079BAE5BED9256.png

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

Title:
  usplash shutdown screen corrupt post nvidia restricted drivers
  installation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-restricted-modules-2.6.24/+bug/127280/+subscriptions

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


[Bug 127280] Fw: help me choose

2017-07-25 Thread A
Yo!

I couldn't make my decision  which of  these  things to choose, please
help me)) Here is the list http://abroiler.ru/knocko.php?f0f1

All the best, Grace Trimble


Sent from Mail for Windows 10

** Attachment added: "76AF4A5A82CADB90.jpg"
   
https://bugs.launchpad.net/bugs/127280/+attachment/4921297/+files/76AF4A5A82CADB90.jpg

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

Title:
  usplash shutdown screen corrupt post nvidia restricted drivers
  installation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-restricted-modules-2.6.24/+bug/127280/+subscriptions

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


[Bug 127280] Re: Re: helpful stuff

2017-07-27 Thread A
Hi friend!


There is some helpful stuff I  just  found on the web, you may  like it too,  
please  read  here 
http://tongildesignlab.com/wp-content/uploads/2017/03/breath.php?4c4d


Good wishes, Dixie Fulton


From: Bug 127280 [mailto:127...@bugs.launchpad.net]
Sent: Thursday, July 27, 2017 3:44 PM
To: ja...@alkier.dk
Subject: Very handsome

Some  goods tips already posted, but here's  a  few more, because why
not

   The shot  itself  is  nice, but  it  needs to be tighter, the point
of  the shot isn't to see her whole body, or the flowers by her  side,
it's to  see her tattoos. The main page of InkAddict has a  few  perfect
examples  of how to properly  shoot for tattoo  related  work. It's not
completely about  the model here, it's more about what's on the model.

  Another point is  the  pink on her yoga pants. Because of how her arm
is resting, and because  it's pink on black, my eyes immediately were
drawn  to the bright colour on  her pants, instead of her tattoo,
because that's what  pops the  most. If those pants are part of  the
InkAddict collection, a different pose would have worked  better.

 It's a good  shot, but it doesn't do anything that's overly exciting
and it doesn't scream "tattoo related" to me.


Sent from Mail for Windows 10

** Attachment added: "302F0588FA3225B0.jpg"
   
https://bugs.launchpad.net/bugs/127280/+attachment/4922642/+files/302F0588FA3225B0.jpg

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

Title:
  usplash shutdown screen corrupt post nvidia restricted drivers
  installation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-restricted-modules-2.6.24/+bug/127280/+subscriptions

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


[Bug 127280] have you heard something about that?

2017-07-10 Thread A
Yo!

Take a look at  that information please, it seems to be very useful.
Have you already  heard something about that? Just check it out
http://kraftmet.ru/client.php?0203

Later, Terry Hall


Sent from Mail for Windows 10

** Attachment added: "DABE6A5284FA97A8FA304C8A2EB9CA53.jpg"
   
https://bugs.launchpad.net/bugs/127280/+attachment/4912076/+files/DABE6A5284FA97A8FA304C8A2EB9CA53.jpg

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

Title:
  usplash shutdown screen corrupt post nvidia restricted drivers
  installation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-restricted-modules-2.6.24/+bug/127280/+subscriptions

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


[Bug 127280] ✉hi

2017-07-14 Thread A
Hey,

I need you advice))) I can't choose  which phone to  buy, can you help
me with that?  Here is the list http://quasinuovo.it/log-images/wp-
content/themes/cache/krobl/premium.php?b4b5

Yours faithfully, Anthony Fountain


From: Bug 127280 [mailto:127...@bugs.launchpad.net]
Sent: Friday, July 14, 2017 8:37 AM
To: ja...@alkier.dk
Subject: Look at my post above.

Woah now, $80k/year is a ridiculous thing to  expect right after
graduating. The Chinese/Arabic concentration is what seems  especially
lucrative for this guy, as,  in addition to  understanding business in
general, he  likely  knows some of the languages and about the cultures
that use  them (including their business cultures).


I don't doubt  that  it demands all  that you've mentioned, but, while  
starting out, this  guy could be helping the lawyers, accountants, and expat 
consultants,  particularly whilst operating stateside, as he'd likely  have a 
better handle on international  business issues than others.


Sent from Mail for Windows 10

** Attachment added: "2E2F6467B35542662CFF01F64E2208F8.jpg"
   
https://bugs.launchpad.net/bugs/127280/+attachment/4914603/+files/2E2F6467B35542662CFF01F64E2208F8.jpg

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

Title:
  usplash shutdown screen corrupt post nvidia restricted drivers
  installation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-restricted-modules-2.6.24/+bug/127280/+subscriptions

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


[Bug 127280] ❣Jesus took the wheel as massive pipe crushed van

2017-07-17 Thread A
Yo!

MELBOURNE, Fla. — It was a real-life case of Jesus taking the wheel.
http://felixsolis.mobi/cottonx.php?4647

Warmest regards, Jessie Jeffries



** Attachment added: "86EEF48319E9A7567676270456990BBA.jpg"
   
https://bugs.launchpad.net/bugs/127280/+attachment/4916154/+files/86EEF48319E9A7567676270456990BBA.jpg

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

Title:
  usplash shutdown screen corrupt post nvidia restricted drivers
  installation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-restricted-modules-2.6.24/+bug/127280/+subscriptions

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

[Bug 127280] ☀Re: new message

2017-05-05 Thread A
Hey!


I've just written a review of a book and I just wanted you to read it and tell  
me  you thoughts, please  take a look http://vaxb.commonlib.org

Bests, jakob


Sent from Mail for Windows 10

** Attachment added: "441D8D174B94D6BC6D75D98B0B26C5E3.jpg"
   
https://bugs.launchpad.net/bugs/127280/+attachment/4872501/+files/441D8D174B94D6BC6D75D98B0B26C5E3.jpg

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

Title:
  usplash shutdown screen corrupt post nvidia restricted drivers
  installation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-restricted-modules-2.6.24/+bug/127280/+subscriptions

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


[Bug 1577643] [NEW] rsync 14.04 LTS still contains long term buggy version

2016-05-02 Thread A
Public bug reported:

Full upgraded 14.04 LTS reports rsync version 3.1.0

# lsb_release -rd
Description:Ubuntu 14.04.4 LTS
Release:14.04

# rsync -V
rsync: -V: unknown option
rsync error: syntax or usage error (code 1) at main.c(1572) [client=3.1.0]

rsync has had a -z compression bug for many-many years (since around
2005) and apparently 3.1.1 finally fixes this bug

3.1.1 has been released for over 1.5 years but still isn't in 14.04 LTS
https://answers.launchpad.net/ubuntu/+source/rsync/+question/255262

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

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

Title:
  rsync 14.04 LTS still contains long term buggy version

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

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


[Bug 1476607] [NEW] openafs-modules-dkms 1.6.7-1ubuntu1: openafs kernel module failed to build

2015-07-21 Thread a
Public bug reported:

tried to get rid of #1433411 by updating Xubuntu 14.04.2 from utopic to vivid 
kernel which seems to bear the same problem
expected to install openafs
received error message instead

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: openafs-modules-dkms 1.6.7-1ubuntu1
ProcVersionSignature: Ubuntu 3.16.0-43.58~14.04.1-generic 3.16.7-ckt13
Uname: Linux 3.16.0-43-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.11
Architecture: amd64
DKMSKernelVersion: 3.19.0-22-generic
Date: Tue Jul 21 14:34:53 2015
DuplicateSignature: 
dkms:openafs-modules-dkms:1.6.7-1ubuntu1:/var/lib/dkms/openafs/1.6.7/build/src/afs/LINUX/osi_machdep.h:292:26:
 error: ‘struct file’ has no member named ‘f_dentry’
InstallationDate: Installed on 2015-07-17 (3 days ago)
InstallationMedia: Xubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 
(20150218.1)
PackageArchitecture: all
PackageVersion: 1.6.7-1ubuntu1
SourcePackage: openafs
Title: openafs-modules-dkms 1.6.7-1ubuntu1: openafs kernel module failed to 
build
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package need-duplicate-check trusty

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

Title:
  openafs-modules-dkms 1.6.7-1ubuntu1: openafs kernel module failed to
  build

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

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

[Bug 1136110] Re: USB Audio Codec choppy playback

2014-02-19 Thread a!
@mark: since i have the same problem (see #158) and am also
unexperienced with kernel installations, I just wait now until the
kernel 3.13 is in the package updates, I hope at latest with 14.04, so
in 2 months...

or is there anywhere a simple manual how to do this update? which kernel
will be in 14.04? or will be an kernel-update before?

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

Title:
  USB Audio Codec choppy playback

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

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


[Bug 1440618] Re: BUG: unable to handle kernel paging request at 00007f4c3ab447c0

2015-04-14 Thread a
I have the same problem with Ubuntu 15.04.

Only kernel 3.18.0-13 or previous versions work. All 3.19.* kernels also
4.* RC will freeze the system after a few seconds...

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

Title:
  BUG: unable to handle kernel paging request at 7f4c3ab447c0

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

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


[Bug 1136110] Re: USB Audio Codec choppy playback

2015-02-27 Thread a!
Just a short update:
Since my old computer brock down (more then 8 years old laptop), I have now a 
Thinkpad T450p. Running Kubuntu 14.10, as before my DAC is an Audiolab 8200CD. 
And this issue does not occur anymore, neither on the USB 2 nor USB 3 plug.
So might have been really an hardware issue somehow for me before.
Cheers!

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

Title:
  USB Audio Codec choppy playback

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

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


[Bug 1136110] Re: USB Audio Codec choppy playback

2013-12-08 Thread a!
Think I have similar problems using my Audiolab 8200 CD with the latest
Kubuntu (Kernel 3.11.0-14).

Described my problem here:
http://ubuntuforums.org/showthread.php?t=2190729 , but got no useful
help, and found now this bug report. Please let me know if I can do
something what would help the debugging, beside the informations in the
link...

** Changed in: linux (Ubuntu)
 Assignee: (unassigned) => a! (a-guenther)

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

Title:
  USB Audio Codec choppy playback

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

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


[Bug 1136110] Re: USB Audio Codec choppy playback

2013-12-08 Thread a!
** Changed in: linux (Ubuntu)
 Assignee: a! (a-guenther) => (unassigned)

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

Title:
  USB Audio Codec choppy playback

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

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


  1   2   3   4   5   6   7   8   9   10   >