[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 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 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 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 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 1521762] [NEW] package tzdata-java 2015g-0ubuntu0.14.04 failed to install/upgrade: package tzdata-java is already installed and configured

2015-12-01 Thread a
Public bug reported:

123

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: tzdata-java 2015g-0ubuntu0.14.04
ProcVersionSignature: Ubuntu 3.19.0-37.42~14.04.1-generic 3.19.8-ckt9
Uname: Linux 3.19.0-37-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.19
AptdaemonVersion: 1.1.1-1ubuntu5.2
Architecture: amd64
Date: Tue Dec  1 21:49:29 2015
DuplicateSignature: package:tzdata-java:2015g-0ubuntu0.14.04:package 
tzdata-java is already installed and configured
ErrorMessage: package tzdata-java is already installed and configured
InstallationDate: Installed on 2015-12-01 (0 days ago)
InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.17.5ubuntu5.5
 apt  1.0.1ubuntu2.10
SourcePackage: dpkg
Title: package tzdata-java 2015g-0ubuntu0.14.04 failed to install/upgrade: 
package tzdata-java is already installed and configured
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: already-installed 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/1521762

Title:
  package tzdata-java 2015g-0ubuntu0.14.04 failed to install/upgrade:
  package tzdata-java is already installed and configured

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

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


[Bug 1514302] [NEW] package shared-mime-info 1.3-1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 139

2015-11-08 Thread A
Public bug reported:

.

ProblemType: Package
DistroRelease: Ubuntu 15.04
Package: shared-mime-info 1.3-1
ProcVersionSignature: Ubuntu 3.19.0-32.37-generic 3.19.8-ckt7
Uname: Linux 3.19.0-32-generic i686
ApportVersion: 2.17.2-0ubuntu1.7
Architecture: i386
Date: Fri Nov  6 14:44:59 2015
DuplicateSignature: package:shared-mime-info:1.3-1:subprocess installed 
post-installation script returned error exit status 139
ErrorMessage: subprocess installed post-installation script returned error exit 
status 139
InstallationDate: Installed on 2015-10-02 (37 days ago)
InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release i386 (20150422)
RelatedPackageVersions:
 dpkg 1.17.25ubuntu1
 apt  1.0.9.7ubuntu4.2
SourcePackage: shared-mime-info
Title: package shared-mime-info 1.3-1 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 139
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: shared-mime-info (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 need-duplicate-check vivid

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

Title:
  package shared-mime-info 1.3-1 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 139

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/shared-mime-info/+bug/1514302/+subscriptions

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


[Bug 1504688] Re: fsck runs on every boot (clean install, single ext4 filesystem)

2015-10-24 Thread A.
same issue here..

Distributor ID: Ubuntu
Description:Ubuntu 15.10
Release:15.10
Codename:   wily

from boot.log...

[ESC[32m  OK  ESC[0m] Activated swap 
/dev/disk/by-uuid/237df0a8-e41a-4377-8902-92c3ea931804.
[ESC[32m  OK  ESC[0m] Reached target Swap.
[ESC[32m  OK  ESC[0m] Started File System Check on 
/dev/d...fbe-61dd-49e1-9ace-950d1bb2aaf0.
^MChecking in progress on 1 disk (0.0% complete)^M Mounting /home...
[ESC[32m  OK  ESC[0m] Found device ST3000DM001-1CH166 2.
 Starting File System Check on /dev/...d-76d1-4db8-b1b4-d290c8584eaa...
[ESC[32m  OK  ESC[0m] Mounted /home.
[ESC[32m  OK  ESC[0m] Started File System Check on 
/dev/d...c6d-76d1-4db8-b1b4-d290c8584eaa.

Every single boot without fail... Only an issue after upgrading from
15.04 to 15.10.

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

Title:
  fsck runs on every boot (clean install, single ext4 filesystem)

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

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


[Bug 1504688] Re: fsck runs on every boot (clean install, single ext4 filesystem)

2015-10-31 Thread A.
Any ideas why this happening?

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

Title:
  fsck runs on every boot (clean install, single ext4 filesystem)

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

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


[Bug 1504688] Re: fsck runs on every boot (clean install, single ext4 filesystem)

2015-11-02 Thread A.
@James - no. I am just an ordinary end user affected by this annoying
bug. The silence from the developers is deafening.

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

Title:
  fsck runs on every boot (clean install, single ext4 filesystem)

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

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


[Bug 1514124] [NEW] openafs 1.6.14-1 causes kernel bug in 15.10

2015-11-07 Thread a
Public bug reported:

Installing the package openafs-modules-dkms 1.6.14-1 in Xubuntu 15.10 builds 
openafs without error messages. Prior to a restart of the machine file 
admission sometimes seems slow but finally works, also on afs.
Subsequent shutdown of the computer is unsuccessful. After hard reset a restart 
will fail; syslog states a tainted kernel and a kernel bug as follows:
"Nov  7 00:31:30 hp kernel: [  206.737813] openafs: module license 
'http://www.openafs.org/dl/license10.html' taints kernel.
Nov  7 00:31:30 hp kernel: [  206.738886] openafs: module verification failed: 
signature and/or required key missing - tainting kernel
Nov  7 00:31:37 hp kernel: [  213.563023] kernel BUG at 
/var/lib/dkms/openafs/1.6.14/build/src/libafs/MODLOAD-4.2.0-17-generic-SP/osi_alloc.c:356!
Nov  7 00:31:37 hp kernel: [  213.569081] Modules linked in: ctr ccm 
openafs(POE) binfmt_misc bnep drbg ansi_cprng dm_crypt nls_iso8859_1 ar5523 
amd_freq_sensitivity kvm crct10dif_pclmul crc32_pclmul ghash_clmulni_intel 
aesni_intel aes_x86_64 lrw hp_wmi gf128mul sparse_keymap glue_helper uvcvideo 
videobuf2_vmalloc ablk_helper videobuf2_memops cryptd videobuf2_core arc4 
v4l2_common videodev rtl8723be btcoexist media btusb btrtl btbcm rtl8723_common 
rtl_pci btintel bluetooth joydev rtlwifi input_leds mac80211 serio_raw cfg80211 
snd_hda_codec_realtek edac_core snd_hda_codec_generic snd_hda_codec_hdmi 
edac_mce_amd fam15h_power k10temp snd_hda_intel snd_hda_codec snd_seq_midi 
snd_seq_midi_event snd_hda_core i2c_piix4 snd_rawmidi snd_hwdep snd_seq snd_pcm 
snd_seq_device snd_timer snd soundcore shpchp hp_wireless mac_hid parport_pc 
ppdev lp parport autofs4 hid_generic usbhid hid sdhci_pci psmouse sdhci 
i2c_algo_bit ttm ahci drm_kms_helper libahci drm r8169 mii wmi video
Nov  7 00:31:37 hp-tragbar-2015 kernel: [  213.601107] RIP: 
0010:[]  [] osi_linux_free+0xb1/0xc0 
[openafs]
Nov  7 00:31:37 hp kernel: [  213.656682]  [] 
afs_osi_Free+0x2b/0x30 [openafs]
Nov  7 00:31:37 hp kernel: [  213.660510]  [] 
afs_fill_super+0x261/0x3f0 [openafs]
Nov  7 00:31:37 hp kernel: [  213.664303]  [] ? 
afs_alloc_inode+0x20/0x20 [openafs]
Nov  7 00:31:37 hp kernel: [  213.671760]  [] 
afs_mount+0x18/0x20 [openafs]
Nov  7 00:31:37 hp kernel: [  213.709672] RIP  [] 
osi_linux_free+0xb1/0xc0 [openafs]
Nov  7 00:31:37 hp systemd[1]: openafs-client.service: Control process exited, 
code=killed status=11
Nov  7 00:31:37 hp systemd[1]: openafs-client.service: Unit entered failed 
state.
Nov  7 00:31:37 hp systemd[1]: openafs-client.service: Failed with result 
'signal'."

As a remedy openafs-modules-dkms must be removed in recovery mode.
Openafs thus can't be used as intended.

** Affects: openafs (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/1514124

Title:
  openafs 1.6.14-1 causes kernel bug in 15.10

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

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


[Bug 1384503] Re: rsync fails on large files with compression

2015-12-15 Thread A
It's an ongoing problem with rsync that's been around for about 10 years
or so.

Compressed files transferred with -z fail on occasion - though once you find a 
file that fails, that file will always fail
I even use --skip-compress=bz2 but that doesn't work either

Last time I got it was ... today.

1.6G -rw-rw-r-- 1 1004 1004 1.6G Dec 14 14:59 log.bz2

Wed Dec 16 07:01:01 AEDT 2015
receiving incremental file list
log.bz2
inflate returned -3 (0 bytes)
rsync error: error in rsync protocol data stream (code 12) at token.c(557) 
[receiver=3.1.0]
rsync: connection unexpectedly closed (163300 bytes received so far) [generator]
rsync error: error in rsync protocol data stream (code 12) at io.c(226) 
[generator=3.1.0]
Wed Dec 16 07:02:01 AEDT 2015

Same LTS version as above post

rsync:
  Installed: 3.1.0-2ubuntu0.1
  Candidate: 3.1.0-2ubuntu0.1
  Version table:
 *** 3.1.0-2ubuntu0.1 0
500 http://us.archive.ubuntu.com/ubuntu/ trusty-updates/main amd64 
Packages
500 http://security.ubuntu.com/ubuntu/ trusty-security/main amd64 
Packages
100 /var/lib/dpkg/status
 3.1.0-2 0
500 http://us.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages

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

Title:
  rsync fails on large files with compression

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

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


[Bug 1282294] Re: "Cannot open pixbuf loader module file"

2015-10-14 Thread A
arch:core-4.1-amd64:core-4.1-noarch:cxx-3.0-amd64:cxx-3.0-noarch:cxx-3.1-amd64:cxx-3.1-noarch:cxx-3.2-amd64:cxx-3.2-noarch:cxx-4.0-amd64:cxx-4.0-noarch:cxx-4.1-amd64:cxx-4.1-noarch:desktop-3.1-amd64:desktop-3.1-noarch:desktop-3.2-amd64:desktop-3.2-noarch:desktop-4.0-amd64:desktop-4.0-noarch:desktop-4.1-amd64:desktop-4.1-noarch:graphics-2.0-amd64:graphics-2.0-noarch:graphics-3.0-amd64:graphics-3.0-noarch:graphics-3.1-amd64:graphics-3.1-noarch:graphics-3.2-amd64:graphics-3.2-noarch:graphics-4.0-amd64:graphics-4.0-noarch:graphics-4.1-amd64:graphics-4.1-noarch:languages-3.2-amd64:languages-3.2-noarch:languages-4.0-amd64:languages-4.0-noarch:languages-4.1-amd64:languages-4.1-noarch:multimedia-3.2-amd64:multimedia-3.2-noarch:multimedia-4.0-amd64:multimedia-4.0-noarch:multimedia-4.1-amd64:multimedia-4.1-noarch:printing-3.2-amd6
 
4:printing-3.2-noarch:printing-4.0-amd64:printing-4.0-noarch:printing-4.1-amd64:printing-4.1-noarch:qt4-3.1-amd64:qt4-3.1-noarch:security-4.0-amd64:security-4.0-noarch:security-4.1-amd64:security-4.1-noarch
apb@orange:~$ lsb_release -rd
Description:Ubuntu 14.04.3 LTS
Release:14.04

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

Title:
  "Cannot open pixbuf loader module file"

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

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


[Bug 992505] [NEW] Software Center not removable.

2012-05-01 Thread a
Public bug reported:

Ubuntu Software Center, version 5.2, can not be removed from Ubuntu
12.04 Precise Pangolin without removing "ubuntu-desktop". This was not
an issue in previous Ubuntu releases.

** Affects: software-center (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/992505

Title:
  Software Center not removable.

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

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


[Bug 1265343] Re: Thinkpad T440s - sound fails after some supsends

2014-01-08 Thread A
Also happens to my T440s. Runing Linux Mint 16 with Xfce (Ubuntu 13.10).

Restarting pulseaudio helps.

Restart with:
killall pulseaudio
/usr/bin/pulseaudio --start --log-target=syslog

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

Title:
  Thinkpad T440s - sound fails after some supsends

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


[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 1325884] Re: [Asus X550LD] Microphone not working Ubuntu 14.04

2014-10-15 Thread A
This same bug with the same hardware exists. I have a fresh install of
kubuntu 14.0.1 fully updated and I have this issue on my X550L laptop.

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

Title:
  [Asus X550LD] Microphone not working Ubuntu 14.04

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

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


[Bug 1317449] Re: sqlite3 version 3.8.2 breaks digikam

2014-09-07 Thread A
So will you finally fix this PLEASE?

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

Title:
  sqlite3 version 3.8.2 breaks digikam

To manage notifications about this bug go to:
https://bugs.launchpad.net/digikam/+bug/1317449/+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-06-03 Thread a!
Not sure if uploading my attachment worked right, got a confirmation,
but can't find it in my comment. Used the "add attachment" below the
comment field. If it is lost somewhere, I could upload it again.

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

2014-06-03 Thread a!
Ok, finally got the time. Attached is the output stream with some
audible cracks, like explained above. Hope I did it right...

Not sure if the output of cat /sys/kernel/debug/usb/devices is of any
interest, but here it is:

T:  Bus=02 Lev=01 Prnt=01 Port=00 Cnt=01 Dev#=  3 Spd=12   MxCh= 0
D:  Ver= 2.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS= 8 #Cfgs=  1
P:  Vendor=0451 ProdID=8200 Rev= 1.60
S:  Manufacturer=Lakewest Audio
S:  Product=Audiolab 8200 Series
C:* #Ifs= 3 Cfg#= 1 Atr=c0 MxPwr=  0mA
I:* If#= 0 Alt= 0 #EPs= 1 Cls=03(HID  ) Sub=00 Prot=00 Driver=usbhid
E:  Ad=82(I) Atr=03(Int.) MxPS=   1 Ivl=32ms
I:* If#= 1 Alt= 0 #EPs= 1 Cls=01(audio) Sub=01 Prot=00 Driver=snd-usb-audio
E:  Ad=83(I) Atr=03(Int.) MxPS=   2 Ivl=32ms
I:* If#= 2 Alt= 0 #EPs= 0 Cls=01(audio) Sub=02 Prot=00 Driver=snd-usb-audio
I:  If#= 2 Alt= 1 #EPs= 2 Cls=01(audio) Sub=02 Prot=00 Driver=snd-usb-audio
E:  Ad=01(O) Atr=05(Isoc) MxPS= 582 Ivl=1ms
E:  Ad=81(I) Atr=11(Isoc) MxPS=   3 Ivl=1ms


** Attachment added: "output"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1136110/+attachment/4124889/+files/1.mon.out

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

2014-06-03 Thread a!
Thanks for looking into it!
But I wonder, if this should be an issue of my hardware, why I can use the same 
laptop with the same DAC without problems with daphile (http://www.daphile.com/ 
, a headless Gentoo-based player)? Shouldn't daphile have the same problems? Or 
is there a way to configure the PCI bus to get it working?

-- 
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 1062332] Re: Can not start sound-juicer

2013-06-26 Thread A
James solution works.
Though I had this problem on Debian Squeeze (oldstable) with sound-juicer 
2.28.2-3 ...
Happened after I accidentaly rm -fr in /home. So only hidden files were spared. 
I don't know if debugging with --brasero-media-debug is useful. 
diff'ing broken and working registry.*.bin ... gives me a 1 MB file ...

** Attachment added: "sound-juicer --brasero-media-debug Log"
   
https://bugs.launchpad.net/ubuntu/+source/sound-juicer/+bug/1062332/+attachment/3714568/+files/sound-juicer--brasero-media-debug.log

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

Title:
  Can not start sound-juicer

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

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


[Bug 1017326] Re: Trivial fix; need to add device ID 0572:1340 for USB modem to work

2012-07-02 Thread A.
Tested with http://kernel.ubuntu.com/~kernel-
ppa/mainline/v3.5-rc3-quantal/

No go.

 uname -a
Linux penguin 3.5.0-030500rc3-generic #201206162135 SMP Sun Jun 17 01:43:31 UTC 
2012 i686 i686 i386 GNU/Linux

dmesg

[   44.602595] usb 2-1.2: new full-speed USB device number 3 using ehci_hcd
[   44.768905] cdc_acm 2-1.2:1.0: Zero length descriptor references
[   44.768915] cdc_acm: probe of 2-1.2:1.0 failed with error -22
[   44.768932] usbcore: registered new interface driver cdc_acm
[   44.768934] cdc_acm: USB Abstract Control Model driver for USB modems and 
ISDN adapters

ls /dev/*ACM*
ls: cannot access /dev/*ACM*: No such file or directory


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

** Tags removed: needs-upstream-testing

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

Title:
  Trivial fix; need to add device ID 0572:1340 for USB modem to work

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

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


[Bug 1017326] [NEW] Trivial fix; need to add device ID 0572:1340 for USB modem to work

2012-06-24 Thread A.
Public bug reported:

SRU justification:

Impact: Missing ID causes hardware not to be supported.

Fix: Add ID

Testcase: see below

A GNU/Linux company is distributing hardware USB 56k modems with a
Conexant CX93010 chipset. It uses module: cdc_acm

These are not supported in Ubuntu 12.04 or any prior version, though the
kernel module changes required to get it to work are trivial, see
http://ubuntuforums.org/showthread.php?p=3684574

root@x:~# lsb_release -rd

Description:Ubuntu  12.04
Release:12.04

root@x:~# lsusb | grep Conex
Bus 002 Device 010: ID 0572:1340 Conexant Systems (Rockwell), Inc.

Ubuntu 12.04 with latest updates on plug in of this device gives dmesg
entries as follows:

[ 1440.905539] usb 2-1.1: USB disconnect, device number 9
[ 1444.687438] usb 2-1.1: new full speed USB device number 10 using ehci_hcd
[ 1444.801001] cdc_acm 2-1.1:1.0: Zero length descriptor references
[ 1444.801021] cdc_acm: probe of 2-1.1:1.0 failed with error -22

root@x:~# ls -al /dev/ttyACM*
ls: cannot access /dev/ttyACM*: No such file or directory

** Affects: linux (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/1017326

Title:
  Trivial fix; need to add device ID 0572:1340 for USB modem to work

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

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


[Bug 1017326] Re: Trivial fix; need to add device ID 0572:1340 for USB modem to work

2012-06-24 Thread A.
apport information

** Tags added: apport-collected

** Description changed:

  SRU justification:
  
  Impact: Missing ID causes hardware not to be supported.
  
  Fix: Add ID
  
  Testcase: see below
  
  A GNU/Linux company is distributing hardware USB 56k modems with a
  Conexant CX93010 chipset. It uses module: cdc_acm
  
  These are not supported in Ubuntu 12.04 or any prior version, though the
  kernel module changes required to get it to work are trivial, see
  http://ubuntuforums.org/showthread.php?p=3684574
  
  root@x:~# lsb_release -rd
  
  Description:  Ubuntu  12.04
  Release:  12.04
  
  root@x:~# lsusb | grep Conex
  Bus 002 Device 010: ID 0572:1340 Conexant Systems (Rockwell), Inc.
  
  Ubuntu 12.04 with latest updates on plug in of this device gives dmesg
  entries as follows:
  
  [ 1440.905539] usb 2-1.1: USB disconnect, device number 9
  [ 1444.687438] usb 2-1.1: new full speed USB device number 10 using ehci_hcd
  [ 1444.801001] cdc_acm 2-1.1:1.0: Zero length descriptor references
  [ 1444.801021] cdc_acm: probe of 2-1.1:1.0 failed with error -22
  
  root@x:~# ls -al /dev/ttyACM*
  ls: cannot access /dev/ttyACM*: No such file or directory
+ --- 
+ AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
+ ApportVersion: 2.0.1-0ubuntu5
+ Architecture: i386
+ ArecordDevices:
+   List of CAPTURE Hardware Devices 
+  card 0: Intel [HDA Intel], device 0: ALC268 Analog [ALC268 Analog]
+Subdevices: 1/1
+Subdevice #0: subdevice #0
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  ubuntu 3279 F pulseaudio
+ Card0.Amixer.info:
+  Card hw:0 'Intel'/'HDA Intel at 0xf2a0 irq 47'
+Mixer name : 'Intel Cantiga HDMI'
+Components : 'HDA:10ec0268,14c0003c,00100101 
HDA:80862802,80860101,0010'
+Controls  : 22
+Simple ctrls  : 10
+ CasperVersion: 1.315
+ DistroRelease: Ubuntu 12.04
+ LiveMediaBuild: Ubuntu 12.04 LTS "Precise Pangolin" - Release i386 (20120423)
+ Package: linux (not installed)
+ ProcEnviron:
+  TERM=xterm
+  PATH=(custom, no user)
+  LANG=en_US.UTF-8
+  SHELL=/bin/bash
+ ProcFB: 0 inteldrmfb
+ ProcKernelCmdLine: file=/cdrom/preseed/ubuntu.seed boot=casper 
initrd=/casper/initrd.lz quiet splash -- maybe-ubiquity
+ ProcVersionSignature: Ubuntu 3.2.0-23.36-generic-pae 3.2.14
+ RelatedPackageVersions:
+  linux-restricted-modules-3.2.0-23-generic-pae N/A
+  linux-backports-modules-3.2.0-23-generic-pae  N/A
+  linux-firmware1.79
+ RfKill:
+  0: phy0: Wireless LAN
+   Soft blocked: no
+   Hard blocked: no
+ SourcePackage: linux
+ Tags:  precise precise
+ Uname: Linux 3.2.0-23-generic-pae i686
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ dmi.bios.date: 12/01/2009
+ dmi.bios.version: 1.07
+ dmi.board.name: KHLB0
+ dmi.board.version: REFERENCE
+ dmi.chassis.type: 1
+ dmi.chassis.version: N/A
+ dmi.modalias: 
dmi:bvn:bvr1.07:bd12/01/2009:svn:pn:pvr:rvn:rnKHLB0:rvrREFERENCE:cvn:ct1:cvrN/A:

** Attachment added: "AcpiTables.txt"
   
https://bugs.launchpad.net/bugs/1017326/+attachment/3203194/+files/AcpiTables.txt

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

Title:
  Trivial fix; need to add device ID 0572:1340 for USB modem to work

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

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


[Bug 1017326] AlsaDevices.txt

2012-06-24 Thread A.
apport information

** Attachment added: "AlsaDevices.txt"
   
https://bugs.launchpad.net/bugs/1017326/+attachment/3203195/+files/AlsaDevices.txt

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

Title:
  Trivial fix; need to add device ID 0572:1340 for USB modem to work

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

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


[Bug 1017326] AplayDevices.txt

2012-06-24 Thread A.
apport information

** Attachment added: "AplayDevices.txt"
   
https://bugs.launchpad.net/bugs/1017326/+attachment/3203196/+files/AplayDevices.txt

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

Title:
  Trivial fix; need to add device ID 0572:1340 for USB modem to work

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

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


[Bug 1017326] BootDmesg.txt

2012-06-24 Thread A.
apport information

** Attachment added: "BootDmesg.txt"
   
https://bugs.launchpad.net/bugs/1017326/+attachment/3203197/+files/BootDmesg.txt

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

Title:
  Trivial fix; need to add device ID 0572:1340 for USB modem to work

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

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


[Bug 1017326] CRDA.txt

2012-06-24 Thread A.
apport information

** Attachment added: "CRDA.txt"
   https://bugs.launchpad.net/bugs/1017326/+attachment/3203198/+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/1017326

Title:
  Trivial fix; need to add device ID 0572:1340 for USB modem to work

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

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


[Bug 1017326] Card0.Amixer.values.txt

2012-06-24 Thread A.
apport information

** Attachment added: "Card0.Amixer.values.txt"
   
https://bugs.launchpad.net/bugs/1017326/+attachment/3203199/+files/Card0.Amixer.values.txt

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

Title:
  Trivial fix; need to add device ID 0572:1340 for USB modem to work

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

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


[Bug 1017326] Card0.Codecs.codec.0.txt

2012-06-24 Thread A.
apport information

** Attachment added: "Card0.Codecs.codec.0.txt"
   
https://bugs.launchpad.net/bugs/1017326/+attachment/3203200/+files/Card0.Codecs.codec.0.txt

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

Title:
  Trivial fix; need to add device ID 0572:1340 for USB modem to work

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

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


[Bug 1017326] Card0.Codecs.codec.2.txt

2012-06-24 Thread A.
apport information

** Attachment added: "Card0.Codecs.codec.2.txt"
   
https://bugs.launchpad.net/bugs/1017326/+attachment/3203201/+files/Card0.Codecs.codec.2.txt

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

Title:
  Trivial fix; need to add device ID 0572:1340 for USB modem to work

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

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


[Bug 1017326] CurrentDmesg.txt

2012-06-24 Thread A.
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/1017326/+attachment/3203202/+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/1017326

Title:
  Trivial fix; need to add device ID 0572:1340 for USB modem to work

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

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


[Bug 1017326] IwConfig.txt

2012-06-24 Thread A.
apport information

** Attachment added: "IwConfig.txt"
   
https://bugs.launchpad.net/bugs/1017326/+attachment/3203203/+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/1017326

Title:
  Trivial fix; need to add device ID 0572:1340 for USB modem to work

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

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


[Bug 1017326] Lspci.txt

2012-06-24 Thread A.
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1017326/+attachment/3203204/+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/1017326

Title:
  Trivial fix; need to add device ID 0572:1340 for USB modem to work

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

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


[Bug 1017326] Lsusb.txt

2012-06-24 Thread A.
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1017326/+attachment/3203205/+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/1017326

Title:
  Trivial fix; need to add device ID 0572:1340 for USB modem to work

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

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


[Bug 1017326] PciMultimedia.txt

2012-06-24 Thread A.
apport information

** Attachment added: "PciMultimedia.txt"
   
https://bugs.launchpad.net/bugs/1017326/+attachment/3203206/+files/PciMultimedia.txt

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

Title:
  Trivial fix; need to add device ID 0572:1340 for USB modem to work

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

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


[Bug 1017326] ProcCpuinfo.txt

2012-06-24 Thread A.
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1017326/+attachment/3203207/+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/1017326

Title:
  Trivial fix; need to add device ID 0572:1340 for USB modem to work

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

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


[Bug 1017326] ProcModules.txt

2012-06-24 Thread A.
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1017326/+attachment/3203209/+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/1017326

Title:
  Trivial fix; need to add device ID 0572:1340 for USB modem to work

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

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


[Bug 1017326] ProcInterrupts.txt

2012-06-24 Thread A.
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1017326/+attachment/3203208/+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/1017326

Title:
  Trivial fix; need to add device ID 0572:1340 for USB modem to work

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

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


[Bug 1017326] PulseList.txt

2012-06-24 Thread A.
apport information

** Attachment added: "PulseList.txt"
   
https://bugs.launchpad.net/bugs/1017326/+attachment/3203210/+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/1017326

Title:
  Trivial fix; need to add device ID 0572:1340 for USB modem to work

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

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


[Bug 1017326] UdevDb.txt

2012-06-24 Thread A.
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1017326/+attachment/3203211/+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/1017326

Title:
  Trivial fix; need to add device ID 0572:1340 for USB modem to work

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

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


[Bug 1017326] UdevLog.txt

2012-06-24 Thread A.
apport information

** Attachment added: "UdevLog.txt"
   
https://bugs.launchpad.net/bugs/1017326/+attachment/3203212/+files/UdevLog.txt

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

Title:
  Trivial fix; need to add device ID 0572:1340 for USB modem to work

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

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


[Bug 1017326] WifiSyslog.txt

2012-06-24 Thread A.
apport information

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

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

Title:
  Trivial fix; need to add device ID 0572:1340 for USB modem to work

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

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


[Bug 636045] Re: intel ips 0000:00:1f.6: MCP power or thermal limit exceeded

2012-10-07 Thread A
I spilled coffee on my laptop and quite a bit after that I started
getting messages such as these. I dual boot windows and linux and the
sudden shutdown after a while of working normally happens on both
systems.

This is likely indicative of a real hardware problem and NOT something
to be ignored and hidden.

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

Title:
  intel ips :00:1f.6: MCP power or thermal limit exceeded

To manage notifications about this bug go to:
https://bugs.launchpad.net/system76/+bug/636045/+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 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 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 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 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 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 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 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 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 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 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 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 312756] Re: support graphics card hot switch

2010-10-16 Thread A
# dmidecode -s system-product-name
MacBookPro5,1
# dmidecode -s system-version 
1.0
# lspci -vnnn | perl -lne 'print if /^\d+\:.+(\[\S+\:\S+\])/' | grep VGA
02:00.0 VGA compatible controller [0300]: nVidia Corporation G96 [GeForce 9600M 
GT] [10de:0647] (rev a1) (prog-if 00 [VGA controller])

(there is also an integrated GPU, a 9400M G, on the nvidia controller,
even though it doesn't show up under Linux in lspci)

Running 'test_off.sh' gives all failed; but

# echo '\_SB.PCI0.IXVE.IGPU._DSM' > /proc/acpi/call
# cat /proc/acpi/call
0x8002

though I'm not sure it does anything.

** Attachment added: "DSDT.dsl for MBP 5,1"
   
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/312756/+attachment/1696086/+files/DSDT.dsl

-- 
support graphics card hot switch
https://bugs.launchpad.net/bugs/312756
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 312756] Re: support graphics card hot switch

2010-10-16 Thread A
# dmidecode -s system-product-name
MacBookPro5,1
# dmidecode -s system-version 
1.0
# lspci -vnnn | perl -lne 'print if /^\d+\:.+(\[\S+\:\S+\])/' | grep VGA
02:00.0 VGA compatible controller [0300]: nVidia Corporation G96 [GeForce 9600M 
GT] [10de:0647] (rev a1) (prog-if 00 [VGA controller])

(there is also an integrated GPU, a 9400M G, on the nvidia controller,
even though it doesn't show up under Linux in lspci)

Running 'test_off.sh' gives all failed; but

# echo '\_SB.PCI0.IXVE.IGPU._DSM' > /proc/acpi/call
# cat /proc/acpi/call
0x8002

though I'm not sure it actually does anything.

** Attachment added: "DSDT.dsl for MBP 5,1"
   
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/312756/+attachment/1696087/+files/DSDT.dsl

** Attachment removed: "DSDT.dsl for MBP 5,1"
   
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/312756/+attachment/1696087/+files/DSDT.dsl

-- 
support graphics card hot switch
https://bugs.launchpad.net/bugs/312756
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 743431] [NEW] package fglrx 2:8.780-0ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-03-26 Thread A
Public bug reported:

Notebook uses AMD E-350 APU (sort of "CPU") which includes an ATI Radeon HD 
6310M. Driver for this hardware returned an error message and (twice for me 
already) unable to install correctly.
Ubuntu veresion is 32-bits netbook edition 10.10

ProblemType: Package
DistroRelease: Ubuntu 10.10
Package: fglrx 2:8.780-0ubuntu2
ProcVersionSignature: Ubuntu 2.6.35-22.33-generic 2.6.35.4
Uname: Linux 2.6.35-22-generic i686
Architecture: i386
CurrentDmesg:
 [   37.586273] eth0: no IPv6 routers present
 [   42.320234] hda-intel: IRQ timing workaround is activated for card #0. 
Suggest a bigger bdl_pos_adj.
 [  179.873260] mtrr: no MTRR for c000,100 found
 [  241.821735] mtrr: no MTRR for c000,100 found
Date: Sun Mar 27 02:57:52 2011
DkmsStatus:
 
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
GdmLog2: Error: command ['cat', '/var/log/gdm/:0.log.2'] failed with exit code 
1: cat: /var/log/gdm/:0.log.2: No such file or directory
LiveMediaBuild: Ubuntu-Netbook 10.10 "Maverick Meerkat" - Release i386 
(20101007)
MachineType: Hewlett-Packard HP Pavilion dm1 Notebook PC
ProcCmdLine: noprompt cdrom-detect/try-usb=true persistent 
file=/cdrom/preseed/hostname-netbook.seed boot=casper initrd=/casper/initrd.lz 
splash -- maybe-ubiquity
SourcePackage: fglrx-installer
Title: package fglrx 2:8.780-0ubuntu2 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
dmi.bios.date: 12/20/2010
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: F.03
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: 1611
dmi.board.vendor: Hewlett-Packard
dmi.board.version: 96.19
dmi.chassis.asset.tag: Chassis Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: Hewlett-Packard
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnHewlett-Packard:bvrF.03:bd12/20/2010:svnHewlett-Packard:pnHPPaviliondm1NotebookPC:pvr058910252B0320100:rvnHewlett-Packard:rn1611:rvr96.19:cvnHewlett-Packard:ct10:cvrChassisVersion:
dmi.product.name: HP Pavilion dm1 Notebook PC
dmi.product.version: 058910252B0320100
dmi.sys.vendor: Hewlett-Packard
glxinfo: Error: [Errno 2] No existe el archivo o directorio
system:
 distro: Ubuntu
 codename:   maverick
 architecture:   i686
 kernel: 2.6.35-22-generic

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


** Tags: apport-package i386 maverick ubuntu-une

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

Title:
  package fglrx 2:8.780-0ubuntu2 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

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


[Bug 743431] Re: package fglrx 2:8.780-0ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-03-26 Thread A
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/743431

Title:
  package fglrx 2:8.780-0ubuntu2 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

-- 
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 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 1862552] Re: AC Odyssey caves are dark again in 440.59

2020-03-17 Thread A
Hi,

Thanks for pointing that out, did you try the latest version if it fixes the 
issue?
I mean 440.64

Best regards

-- 
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 1683383] Re: Keyboard layout change on hotkeys press instead of release and do not work well with shortcuts (reopen)

2019-07-23 Thread A
Its not a bug, its a feature... of X server ))

DAMN, the little patch and so many bustles

One more time (how long wait about wayland for nvidia on KDE ? :))

https://gist.github.com/zorn-v/df0dccd14af81e017fbe8a4e1523ddf5

-- 
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 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 1958421] [NEW] rtl8821ce-dkms 5.5.2.1-0ubuntu4~20.04.3: rtl8821ce kernel module failed to build

2022-01-19 Thread A
Public bug reported:

It said there was a problem.  I'm reporting it.  That's all I know.

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: rtl8821ce-dkms 5.5.2.1-0ubuntu4~20.04.3
ProcVersionSignature: Ubuntu 5.11.0-41.45~20.04.1-generic 5.11.22
Uname: Linux 5.11.0-41-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.21
Architecture: amd64
CasperMD5CheckResult: skip
DKMSKernelVersion: 5.13.0-27-generic
Date: Wed Jan 19 08:40:00 2022
DuplicateSignature: 
dkms:rtl8821ce-dkms:5.5.2.1-0ubuntu4~20.04.3:/var/lib/dkms/rtl8821ce/5.5.2.1/build/os_dep/linux/recv_linux.c:358:55:
 error: ‘GRO_DROP’ undeclared (first use in this function)
InstallationDate: Installed on 2021-04-30 (263 days ago)
InstallationMedia: Ubuntu 20.04.2.0 LTS "Focal Fossa" - Release amd64 
(20210209.1)
PackageArchitecture: all
PackageVersion: 5.5.2.1-0ubuntu4~20.04.3
Python3Details: /usr/bin/python3.8, Python 3.8.10, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: N/A
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.6
SourcePackage: rtl8821ce
Title: rtl8821ce-dkms 5.5.2.1-0ubuntu4~20.04.3: rtl8821ce kernel module failed 
to build
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  rtl8821ce-dkms 5.5.2.1-0ubuntu4~20.04.3: rtl8821ce kernel module
  failed to build

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


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

[Bug 1959916] [NEW] rtl8821ce-dkms 5.5.2.1-0ubuntu4~20.04.3: rtl8821ce kernel module failed to build

2022-02-03 Thread A
Public bug reported:

Every night before I go to sleep I close my laptop which shuts it off -
and puts the OS to sleep.  That's nothing new, you know this.

I opened my laptop this morning and walked away to let it do it's thing
as I always do.  I sat down to do some browsing and there was the error
about a "problem detected".

A few days ago I was trying to take screenshots.  I tried multiple ways
including Nimbus.  It simply does nothing at all. I have no idea if
that's related or not.  That's all I know.

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: rtl8821ce-dkms 5.5.2.1-0ubuntu4~20.04.3
ProcVersionSignature: Ubuntu 5.11.0-41.45~20.04.1-generic 5.11.22
Uname: Linux 5.11.0-41-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.21
Architecture: amd64
CasperMD5CheckResult: skip
DKMSKernelVersion: 5.13.0-28-generic
Date: Thu Feb  3 07:40:05 2022
DuplicateSignature: 
dkms:rtl8821ce-dkms:5.5.2.1-0ubuntu4~20.04.3:/var/lib/dkms/rtl8821ce/5.5.2.1/build/os_dep/linux/recv_linux.c:358:55:
 error: ‘GRO_DROP’ undeclared (first use in this function)
InstallationDate: Installed on 2021-04-30 (278 days ago)
InstallationMedia: Ubuntu 20.04.2.0 LTS "Focal Fossa" - Release amd64 
(20210209.1)
PackageArchitecture: all
PackageVersion: 5.5.2.1-0ubuntu4~20.04.3
Python3Details: /usr/bin/python3.8, Python 3.8.10, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: N/A
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.6
SourcePackage: rtl8821ce
Title: rtl8821ce-dkms 5.5.2.1-0ubuntu4~20.04.3: rtl8821ce kernel module failed 
to build
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  rtl8821ce-dkms 5.5.2.1-0ubuntu4~20.04.3: rtl8821ce kernel module
  failed to build

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


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

[Touch-packages] [Bug 1967935] Re: there is no bluetooth in 22.04

2022-04-18 Thread a
On Arch I got bluetooh but no WiFi from 13d3:3393 (a BT/WF card buyed
from AliExpress who used to work fine until today)

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

Title:
  Bluetooth doesn't work on Google Beltino board (AR9462 PCI, IMC
  Networks USB)

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


  1   2   3   4   5   6   7   8   9   10   >