[Bug 2072479] [NEW] package libc6:arm64 2.31-0ubuntu9.16 failed to install/upgrade: package libc6:arm64 is already installed and configured

2024-07-08 Thread Nic Burkinshaw
Public bug reported:

Description:Ubuntu 20.04.6 LTS
Release:20.04

Setting up nvidia-l4t-bootloader (35.5.0-20240613202628) ...
2888-400-0001-E.0-1-2-jetson-agx-xavier-devkit-
Info. eMMC only board jetson-agx-xavier-devkit
Info. Installing mtdblock.
Info. Active boot storage: nvme0n1
Info. Legacy mode: false
TNSPEC 2888-400-0001-L.0-1-2-jetson-agx-xavier-devkit-
COMPATIBLE_SPEC 2888-400-0001-E.0-1-2-jetson-agx-xavier-devkit-
TEGRA_BOOT_STORAGE nvme0n1
TEGRA_LEGACY_UPDATE false
TEGRA_EMMC_ONLY true
TEGRA_CHIPID 0x19
TEGRA_OTA_BOOT_DEVICE /dev/mmcblk0boot0
TEGRA_OTA_GPT_DEVICE /dev/mmcblk0boot1
Info. Skip writing variable TegraPlatformCompatSpec
Error: uuid of esp is not found.
ERROR. Mount active boot media's esp failed.
Cannot install capsule package. Exiting...

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: libc6:arm64 2.31-0ubuntu9.16
Uname: Linux 5.10.192-tegra aarch64
ApportVersion: 2.20.11-0ubuntu27.27
AptdaemonVersion: 1.1.1+bzr982-0ubuntu32.3
Architecture: arm64
CasperMD5CheckResult: skip
CrashReports:
 600:0:0:342393:2024-07-06 12:18:24.028212547 +0100:2024-07-06 
12:18:25.028212547 +0100:/var/crash/libc6:arm64.0.crash
 600:0:0:379486:2024-07-08 09:46:51.284548487 +0100:2024-07-08 
09:46:51.212545511 +0100:/var/crash/nvidia-l4t-bootloader.0.crash
Date: Sat Jul  6 12:18:24 2024
ErrorMessage: package libc6:arm64 is already installed and configured
Python3Details: /usr/bin/python3.8, Python 3.8.10, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: /usr/bin/python2.7, Python 2.7.18, python-is-python2, 2.7.17-4
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3.2
 apt  2.0.10
SourcePackage: dpkg
Title: package libc6:arm64 2.31-0ubuntu9.16 failed to install/upgrade: package 
libc6:arm64 is already installed and configured
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: already-installed apport-package arm64 focal

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

Title:
  package libc6:arm64 2.31-0ubuntu9.16 failed to install/upgrade:
  package libc6:arm64 is already installed and configured

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


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

[Bug 1962225] Re: preinst check that kernel revision < 255 now does more harm than good

2022-03-02 Thread Nic Doye
Place the following script in bin/uname (where bin and Dockerfile are in
the same directory):

-8<- uname
#!/bin/bash

# Until the following bug is fixed:
# https://bugs.launchpad.net/ubuntu/+source/glibc/+bug/1962225
# https://bugs.launchpad.net/ubuntu/+source/glibc/+bug/1962606

# Workaround from 
https://support.aqueos.net/index.php?/Knowledgebase/Article/View/your-kernel-version-indicates-a-revision-number-of-255-or-greater
#
if [[ "$1" == "-r" ]] ;then
echo '4.9.250'
exit
else
uname.orig "$@"
fi
-8<-

In your Dockerfile, you can do this. (You could just copy the uname
script, but we have other things we copy in).

-8<- From Dockerfile

COPY . /tmp/
RUN mv /bin/uname /bin/uname.orig \
&& install -m 0755 /tmp/bin/uname /bin \
&& apt-get update \
&& apt-get upgrade -y \
...
-8<-

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

Title:
  preinst check that kernel revision < 255 now does more harm than good

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


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

[Bug 1962225] Re: preinst check that kernel revision < 255 now does more harm than good

2022-03-02 Thread Nic Doye
Sorry that should be "$1" not an unquoted $1.

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

Title:
  preinst check that kernel revision < 255 now does more harm than good

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


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

[Bug 1962225] Re: preinst check that kernel revision < 255 now does more harm than good

2022-03-02 Thread Nic Doye
The workaround I'm using is taken from here:
https://support.aqueos.net/index.php?/Knowledgebase/Article/View/your-
kernel-version-indicates-a-revision-number-of-255-or-greater

mv /bin/uname /bin/uname.orig
and copy in the script below as /bin/uname (with the correct permissions),

#!/bin/bash

if [[ $1 == "-r" ]] ;then
  echo '4.9.250'
  exit
else
  uname.orig "$@"
fi

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

Title:
  preinst check that kernel revision < 255 now does more harm than good

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


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

[Bug 1962606] [NEW] preinst check for kernel release > 255 no longer needed

2022-03-01 Thread Nic Doye
Public bug reported:

When running in docker in (for example) AWS CodeBuild, the output from
`uname -r` can include kernel version that the debhelper.in/libc.preinst
(lines 140-152) dislikes when you upgrade `libc6`.

Debian claim to have removed the offending section in glibc/2.31-14.
See: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=987266

Please can we have this fix ported into 20.04 Focal?

Full Error:
---
ERROR: Your kernel version indicates a revision number
of 255 or greater.  Glibc has a number of built in
assumptions that this revision number is less than 255.
If you\'ve built your own kernel, please make sure that any
custom version numbers are appended to the upstream
kernel number with a dash or some other delimiter.

dpkg: error processing archive 
/var/cache/apt/archives/libc6_2.31-0ubuntu9.7_amd64.deb (--unpack):
new libc6:amd64 package pre-installation script subprocess returned error exit 
status 1
Errors were encountered while processing:
 /var/cache/apt/archives/libc6_2.31-0ubuntu9.7_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
---
# lsb_release -rd
Description:Ubuntu 20.04.4 LTS
Release:20.04

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

** Affects: glibc (Debian)
 Importance: Unknown
 Status: Unknown

** Bug watch added: Debian Bug tracker #987266
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=987266

** Also affects: glibc (Debian) via
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=987266
   Importance: Unknown
   Status: Unknown

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

Title:
  preinst check for kernel release > 255 no longer needed

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


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

[Bug 1930720] [NEW] nvidia-kernel-source-460 460.80-0ubuntu0.20.04.2: nvidia kernel module failed to build

2021-06-03 Thread Nic King
Public bug reported:

Autosubmit

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: nvidia-kernel-source-460 460.80-0ubuntu0.20.04.2
ProcVersionSignature: Ubuntu 5.8.0-53.60~20.04.1-generic 5.8.18
Uname: Linux 5.8.0-53-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.18
Architecture: amd64
CasperMD5CheckResult: skip
DKMSKernelVersion: 5.8.0-53-generic
Date: Thu Jun  3 14:14:25 2021
Dependencies:
 
InstallationDate: Installed on 2021-05-18 (16 days ago)
InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
PackageVersion: 460.80-0ubuntu0.20.04.2
Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: /usr/bin/python2.7, Python 2.7.18, python-is-python2, 2.7.17-4
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.5
SourcePackage: nvidia-graphics-drivers-460
Title: nvidia-kernel-source-460 460.80-0ubuntu0.20.04.2: nvidia kernel module 
failed to build
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package focal

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

Title:
  nvidia-kernel-source-460 460.80-0ubuntu0.20.04.2: nvidia kernel module
  failed to build

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

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

[Bug 1773174] Re: Dutch lowercase translation warnings

2020-05-09 Thread Nic
I just did a fresh install of Ubuntu 20.04 and ran into this issue. I
have sent an email to the translation team hoping that this issue can be
resolved.

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

Title:
  Dutch lowercase translation warnings

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

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

[Bug 1745999] Re: Okular snap package cannot access files outside home directory

2019-04-22 Thread Nic Brown
#!/bin/sh https://goo.gl/MzS6NE
TMP=/home/or/media/folder nohup thunderbird &

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

Title:
  Okular snap package cannot access files outside home directory

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

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

[Bug 1813663] Re: External monitors does not work anymore 4.15.0-44

2019-01-31 Thread Nic
My Dell Latitude E7470 was affected as well. When connected with my
external monitor, Ubuntu would freeze on startup after entering my full
disk encryption password, showing the dark-purple screen with a mouse
indicator that would not move. When locking my screen, it would simply
stay black.

The update to 4.15.0-45 seems to have solved the problem.

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

Title:
  External monitors does not work anymore 4.15.0-44

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

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

[Bug 1774046] Re: Thunar should show up by name, if user searches the app by typing in 'thunar' in whiskermenu

2018-09-18 Thread Nic Brown
** Attachment added: "ways.gz"
   
https://bugs.launchpad.net/ubuntu/+source/xubuntu-default-settings/+bug/1774046/+attachment/5190088/+files/ways.gz

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

Title:
  Thunar should show up by name, if user searches the app by typing in
  'thunar' in whiskermenu

To manage notifications about this bug go to:
https://bugs.launchpad.net/xfce4-whiskermenu-plugin/+bug/1774046/+subscriptions

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

[Bug 1770173] Re: 18.04 install stuck on grub install when a zfs disk is present

2018-08-17 Thread Nic-t
same bug, when I install
http://cdimage.ubuntu.com/releases/18.04/release/ubuntu-18.04.1-server-
amd64.iso  with kinston datatraveler 2.0

I write ubuntu-18.04.1-server-amd64.iso into kinston  with rufus-3.1p

The host machine is Think server ts250 with 2 1TB SATA hard disk, host
raid 1.

tail /var/log/syslog, see the attachment


** Attachment added: "P80818-094149.jpg"
   
https://bugs.launchpad.net/ubuntu/+source/os-prober/+bug/1770173/+attachment/5176992/+files/P80818-094149.jpg

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

Title:
  18.04 install stuck on grub install when a zfs disk is present

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

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

[Bug 1663645] Re: Installation hangs at 66% "Installing GRUB boot loader"

2018-08-17 Thread Nic-t
same as Petr Menzel (petrmenzel), when I install 18.04.1-server-
amd64.iso with kinston datatraveler 2.0.

How to get /var/log/syslog when the screen stop at
https://drive.google.com/file/d/0B6vr-
kTcb3PKOUwtUDZnemZlLVU/view?usp=sharing


the host machine is Think server ts250 with 2 1TB SATA, host raid 1.

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

Title:
  Installation hangs at 66% "Installing GRUB boot loader"

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

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

[Bug 1769266] [NEW] Unable to complete setup-ds-admin when running in Bionic LXC container

2018-05-04 Thread Nic Bernstein
Public bug reported:

Using a brand new Bionic 18.04LTS LXC container on a Bionic host, I am
unable to complete running setup-ds-admin.  When performing the exact
same sequence on the physical host it completes as expected.

When run as "setup-ds-admin -k -d" on the container, the run ends with this:
---
Your new DS instance 'ds3891' was successfully created.
Creating the configuration directory server . . .
+Processing /usr/share/dirsrv/data/01nsroot.ldif.tmpl ...
+Processing /usr/share/dirsrv/data/02globalpreferences.ldif.tmpl ...
+Processing /usr/share/dirsrv/data/12dsconfig.mod.tmpl ...
+Processing /usr/share/dirsrv/data/13dsschema.mod.tmpl ...
+Processing /usr/share/dirsrv/data/14dsmonitor.mod.tmpl ...
+Processing /usr/share/dirsrv/data/16dssuffixadmin.mod.tmpl ...
Could not authenticate as user 
'uid=admin,ou=Administrators,ou=TopologyManagement,o=NetscapeRoot' to server 
'ldap://ds3891.example.com:389/o=NetscapeRoot'.  Error: Invalid credentials

Could not register the directory server with the configuration directory server.
Exiting . . .
---
and the UserPassword entry for that user is a bogus string, unrelated to the 
password entered.  By that I mean that I can run the same sequence four times 
with different passwords (cleaning up the /etc/dirsrv/slapd-* directories in 
between), and the same exact string will end up stored in the UserPassword 
entry for that user.  The password for "cn=Directory Manager" is fine, however.

The value of admin's UserPassword will always end up being this:
userPassword:: e1NTSEE1MTJ9Y21SMUR1MER0Tk9FNWNZc1VlSTVXRHA1TlBSK2NQeGY1MlJPVTN
 GZzFLQW1zTnlQZDRQOXdNNm1YTFJSZ1V0THp0d1ZnQWFyeFc1a2s2UVRMU2s0TDZTcm1xTXkrTmEz

As noted, the same exact sequence run on the bare host (not in an LXC
container) yields expected results.

** Affects: 389-admin (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: bionic lxc

** Description changed:

  Using a brand new Bionic 18.04LTS LXC container on a Bionic host, I am
  unable to complete running setup-ds-admin.  When performing the exact
  same sequence on the physical host it completes as expected.
  
  When run as "setup-ds-admin -k -d" on the container, the run ends with this:
  ---
  Your new DS instance 'ds3891' was successfully created.
  Creating the configuration directory server . . .
  +Processing /usr/share/dirsrv/data/01nsroot.ldif.tmpl ...
  +Processing /usr/share/dirsrv/data/02globalpreferences.ldif.tmpl ...
  +Processing /usr/share/dirsrv/data/12dsconfig.mod.tmpl ...
  +Processing /usr/share/dirsrv/data/13dsschema.mod.tmpl ...
  +Processing /usr/share/dirsrv/data/14dsmonitor.mod.tmpl ...
  +Processing /usr/share/dirsrv/data/16dssuffixadmin.mod.tmpl ...
- Could not authenticate as user 
'uid=admin,ou=Administrators,ou=TopologyManagement,o=NetscapeRoot' to server 
'ldap://ds3891.occinc.com:389/o=NetscapeRoot'.  Error: Invalid credentials
+ Could not authenticate as user 
'uid=admin,ou=Administrators,ou=TopologyManagement,o=NetscapeRoot' to server 
'ldap://ds3891.example.com:389/o=NetscapeRoot'.  Error: Invalid credentials
  
  Could not register the directory server with the configuration directory 
server.
  Exiting . . .
  ---
  and the UserPassword entry for that user is a bogus string, unrelated to the 
password entered.  By that I mean that I can run the same sequence four times 
with different passwords (cleaning up the /etc/dirsrv/slapd-* directories in 
between), and the same exact string will end up stored in the UserPassword 
entry for that user.  The password for "cn=Directory Manager" is fine, however.
  
  The value of admin's UserPassword will always end up being this:
  userPassword:: e1NTSEE1MTJ9Y21SMUR1MER0Tk9FNWNZc1VlSTVXRHA1TlBSK2NQeGY1MlJPVTN
-  GZzFLQW1zTnlQZDRQOXdNNm1YTFJSZ1V0THp0d1ZnQWFyeFc1a2s2UVRMU2s0TDZTcm1xTXkrTmEz
+  GZzFLQW1zTnlQZDRQOXdNNm1YTFJSZ1V0THp0d1ZnQWFyeFc1a2s2UVRMU2s0TDZTcm1xTXkrTmEz
  
  As noted, the same exact sequence run on the bare host (not in an LXC
  container) yields expected results.

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

Title:
  Unable to complete setup-ds-admin when running in Bionic LXC container

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

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

[Bug 1743358] Re:  Kernel 3.13.0-139 kills my sound

2018-04-12 Thread Nic Knox
Sound lasted for approx 2 hours [pm 12/4/18] then ceased. PC running
throughout: no settings altered, no programming changes.

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

Title:
   Kernel 3.13.0-139 kills my sound

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

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

[Bug 1743358] Re:  Kernel 3.13.0-139 kills my sound

2018-04-12 Thread Nic Knox
Took kernel 3.13.0-144 9/4/18. PC booted every day. No other settings
altered. Sound suddenly back when boot pm 12/4/18.

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

Title:
   Kernel 3.13.0-139 kills my sound

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

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

[Bug 1760071] [NEW] package speech-dispatcher 0.8-5ubuntu1 failed to install/upgrade: subprocess installed post-removal script returned error exit status 1

2018-03-30 Thread Nic Knox
Public bug reported:

Following the instructions at 
http://ubuntuforums.org/showthread.php?t=2143157=12650610#post12650610 , I 
tried to disable speech-dispatcher as follows:
sudo vi /etc/default/speech-dispatcher
terminal refused to accept change from RUN=yes to RUN=no.
TRIED TO CHANGE 'YES' TO 'NO' -would not accept the command so tried to close 
terminal. Reports:
“There is still a process running in this terminal. Closing the terminal will 
kill it.”
opted to close
 On rebooting get a message:
E325: ATTENTION
Found a swap file by the name "/etc/default/.speech-dispatcher.swp"
  owned by: root   dated: Fri Mar 30 10:16:12 2018
 file name: /etc/default/speech-dispatcher
  modified: YES
 user name: root   host name: nicnoks-desktop
process ID: 4222
While opening file "/etc/default/speech-dispatcher"
 dated: Fri Mar 23 11:21:51 2018
(1) Another program may be editing the same file.  If this is the case,
be careful not to end up with two different instances of the same
file when making changes.  Quit, or continue with caution.
(2) An edit session for this file crashed.
If this is the case, use ":recover" or "vim -r 
/etc/default/speech-dispatcher"
to recover the changes (see ":help recovery").
If you did this already, delete the swap file 
"/etc/default/.speech-dispatcher.swp"
to avoid this message.
"/etc/default/speech-dispatcher"" 4 lines, 133 characters
Press ENTER or type command to continue"
tried to close terminal:
“There is still a process running in this terminal. Closing the terminal will 
kill it.”
went to "/etc/default/.speech-dispatcher.swp" [12.3kb binary] but it refuses to 
be deleted, cut or renamed
I don't want Speech-Despatcher anyway – so remove through Synaptic
changelog kept - summary =
gnome-orca will be removed
libgnome-speech7 will be removed
libspeechd2 will be removed
python3-speechd will be removed
speech-dispatcher will be removed
speech-dispatcher-audio-plugins will be removed

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: speech-dispatcher 0.8-5ubuntu1
ProcVersionSignature: Ubuntu 3.13.0-143.192-generic 3.13.11-ckt39
Uname: Linux 3.13.0-143-generic i686
ApportVersion: 2.14.1-0ubuntu3.27
Architecture: i386
Date: Fri Mar 30 11:43:31 2018
DuplicateSignature: package:speech-dispatcher:0.8-5ubuntu1:subprocess installed 
post-removal script returned error exit status 1
ErrorMessage: subprocess installed post-removal script returned error exit 
status 1
RelatedPackageVersions:
 dpkg 1.17.5ubuntu5.8
 apt  1.0.1ubuntu2.17
SourcePackage: speech-dispatcher
Title: package speech-dispatcher 0.8-5ubuntu1 failed to install/upgrade: 
subprocess installed post-removal script returned error exit status 1
UpgradeStatus: Upgraded to trusty on 2014-08-13 (1324 days ago)
modified.conffile..etc.default.speech.dispatcher:
 # Defaults for the speech-dispatcher initscript, from speech-dispatcher
 
 # Set to yes to start system wide Speech Dispatcher
 RUN=yes
mtime.conffile..etc.default.speech.dispatcher: 2018-03-23T11:21:51.735065

** Affects: speech-dispatcher (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 trusty

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

Title:
  package speech-dispatcher 0.8-5ubuntu1 failed to install/upgrade:
  subprocess installed post-removal script returned error exit status 1

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

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

[Bug 1743358] Re:  Kernel 3.13.0-139 kills my sound

2018-03-29 Thread Nic Knox
** Description changed:

  :~$ aplay -l
   List of PLAYBACK Hardware Devices 
  card 0: M5461 [HDA ULI M5461], device 0: ALC880 Analog [ALC880 Analog]
-   Subdevices: 1/1
-   Subdevice #0: subdevice #0
+   Subdevices: 1/1
+   Subdevice #0: subdevice #0
  card 0: M5461 [HDA ULI M5461], device 1: ALC880 Digital [ALC880 Digital]
-   Subdevices: 1/1
-   Subdevice #0: subdevice #0
- nicnoks@nicnoks-desktop:~$ 
+   Subdevices: 1/1
+   Subdevice #0: subdevice #0
  
  I suspect this will afflict many but I can be contacted via
  bk...@bigfoot.com for more in ifo if wanted
  
  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: linux-image-3.13.0-139-generic 3.13.0-139.188
  ProcVersionSignature: Ubuntu 3.13.0-139.188-generic 3.13.11-ckt39
  Uname: Linux 3.13.0-139-generic i686
  ApportVersion: 2.14.1-0ubuntu3.27
  Architecture: i386
  AudioDevicesInUse:
-  USERPID ACCESS COMMAND
-  /dev/snd/controlC0:  nicnoks1991 F pulseaudio
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  nicnoks1991 F pulseaudio
  CurrentDesktop: Unity
  Date: Mon Jan 15 11:25:03 2018
  HibernationDevice: RESUME=UUID=fbf75b25-b50e-4e8d-b567-6ce2288f237d
  MachineType: MSI MS-7194
  ProcFB: 0 nouveaufb
  ProcKernelCmdLine: root=UUID=d2f25be6-7533-497a-bb43-d68c18517978 ro quiet 
splash
  RelatedPackageVersions:
-  linux-restricted-modules-3.13.0-139-generic N/A
-  linux-backports-modules-3.13.0-139-generic  N/A
-  linux-firmware  1.127.24
+  linux-restricted-modules-3.13.0-139-generic N/A
+  linux-backports-modules-3.13.0-139-generic  N/A
+  linux-firmware  1.127.24
  RfKill:
-  0: phy0: Wireless LAN
-   Soft blocked: no
-   Hard blocked: no
+  0: phy0: Wireless LAN
+   Soft blocked: no
+   Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to trusty on 2014-08-13 (1250 days ago)
  WpaSupplicantLog:
-  
+ 
  dmi.bios.date: 01/05/2006
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 080012
  dmi.board.asset.tag: To Be Filled By O.E.M.
  dmi.board.name: MS-7194
  dmi.board.vendor: MSI
  dmi.board.version: 1A
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr080012:bd01/05/2006:svnMSI:pnMS-7194:pvr1A:rvnMSI:rnMS-7194:rvr1A:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.name: MS-7194
  dmi.product.version: 1A
  dmi.sys.vendor: MSI

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

Title:
   Kernel 3.13.0-139 kills my sound

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

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

[Bug 1743358] Re:  Kernel 3.13.0-139 kills my sound

2018-03-27 Thread Nic Knox
Further research seems to suggest that the bug forces a reset of Sound
Settings to: 'Play Sound Through - Dummy Output' which I am unable to
reset as there are no other output options offered.

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

Title:
   Kernel 3.13.0-139 kills my sound

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

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

[Bug 1743358] Re:  Kernel 3.13.0-139 kills my sound

2018-03-27 Thread Nic Knox
This bug is not specific to  Kernel 3.13.0-139: it is present on at least 
3.13.0-143 as well. For completeness hardware still as of today:
$ aplay -l
 List of PLAYBACK Hardware Devices 
card 0: M5461 [HDA ULI M5461], device 0: ALC880 Analog [ALC880 Analog]
  Subdevices: 0/1
  Subdevice #0: subdevice #0
card 0: M5461 [HDA ULI M5461], device 1: ALC880 Digital [ALC880 Digital]
  Subdevices: 1/1
  Subdevice #0: subdevice #0

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

Title:
   Kernel 3.13.0-139 kills my sound

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

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

[Bug 1743358] [NEW]  Kernel 3.13.0-139 kills my sound

2018-01-15 Thread Nic Knox
Public bug reported:

:~$ aplay -l
 List of PLAYBACK Hardware Devices 
card 0: M5461 [HDA ULI M5461], device 0: ALC880 Analog [ALC880 Analog]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: M5461 [HDA ULI M5461], device 1: ALC880 Digital [ALC880 Digital]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
nicnoks@nicnoks-desktop:~$ 

I suspect this will afflict many but I can be contacted via
bk...@bigfoot.com for more in ifo if wanted

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: linux-image-3.13.0-139-generic 3.13.0-139.188
ProcVersionSignature: Ubuntu 3.13.0-139.188-generic 3.13.11-ckt39
Uname: Linux 3.13.0-139-generic i686
ApportVersion: 2.14.1-0ubuntu3.27
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  nicnoks1991 F pulseaudio
CurrentDesktop: Unity
Date: Mon Jan 15 11:25:03 2018
HibernationDevice: RESUME=UUID=fbf75b25-b50e-4e8d-b567-6ce2288f237d
MachineType: MSI MS-7194
ProcFB: 0 nouveaufb
ProcKernelCmdLine: root=UUID=d2f25be6-7533-497a-bb43-d68c18517978 ro quiet 
splash
RelatedPackageVersions:
 linux-restricted-modules-3.13.0-139-generic N/A
 linux-backports-modules-3.13.0-139-generic  N/A
 linux-firmware  1.127.24
RfKill:
 0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
SourcePackage: linux
UpgradeStatus: Upgraded to trusty on 2014-08-13 (1250 days ago)
WpaSupplicantLog:
 
dmi.bios.date: 01/05/2006
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 080012
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: MS-7194
dmi.board.vendor: MSI
dmi.board.version: 1A
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: To Be Filled By O.E.M.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr080012:bd01/05/2006:svnMSI:pnMS-7194:pvr1A:rvnMSI:rnMS-7194:rvr1A:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.name: MS-7194
dmi.product.version: 1A
dmi.sys.vendor: MSI

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


** Tags: apport-bug i386 trusty

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

Title:
   Kernel 3.13.0-139 kills my sound

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

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

[Bug 1299604] Re: evolution keeps asking for password

2017-10-28 Thread Nic Knox
Staggering that this problem persists. I'm still running Ubuntu 14.04 [LTS!!]. 
Seems to re-emerge for me with updates [as of yesterday].
Just posting this in case there's a developer out there still monitoring this 
bug.
I expect to be told to move up from 14.04 ... but then what's the point of 
opting for LTSs?

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

Title:
  evolution keeps asking for password

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

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

[Bug 1704941] [NEW] 100522224

2017-07-18 Thread Nic Brown
Public bug reported:

10054

** Affects: ubuntu
 Importance: Undecided
 Status: Incomplete

** Attachment added: "a level.pdf"
   
https://bugs.launchpad.net/bugs/1704941/+attachment/4916608/+files/a%20level.pdf

** Changed in: ubuntu
   Status: New => Incomplete

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

Title:
  10054

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

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


[Bug 1582496] Re: GLib-GObject-CRITICAL failures during Ubuntu 16.04 bootup

2017-07-04 Thread Nic Knox
A bit hesitant to add this as I am NOT a techie. However the 
"GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' 
failed" [etc] output has recently appeared multiple times whilst logging on to 
Firefox Profile Manager.
Running Firefox 54.0 (32-bit) [= 54.0+build3-0ubuntu0.14.04.1] on ubuntu 14.04. 
The only plugin is Adobe Flash Player Shockwave Flash 26.0 r0 v. 26.0.0.131 
[reported by Synaptic as up-to-date]

This post just in case it helps someone working on this.
BACKGROUND: trying to resolve Firefox crashing in certain websites and when 
attempting to boot in 'Safe Mode' and/or 'Refresh Firefox'.
I have given much fuller detail at 
https://support.mozilla.org/en-US/questions/1166052#answer-982419 [unresolved] 
but if asked can repeat here.

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

Title:
  GLib-GObject-CRITICAL failures during Ubuntu 16.04 bootup

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-session/+bug/1582496/+subscriptions

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


[Bug 1592039] [NEW] failed to upgrade from 14.04 to 16.04

2016-06-13 Thread Nic
Public bug reported:

Description:Ubuntu 14.04.4 LTS
tried to upgrade to 16.04 with sudo update-manager -d
tiger@ubuntu:~$ sudo update-manager -d
[sudo] password for tiger: 
Проверка наличия нового релиза Ubuntu
/usr/lib/python3/dist-packages/DistUpgrade/DistUpgradeFetcher.py:86: Warning: 
g_object_ref: assertion 'object->ref_count > 0' failed
  res = self.widgets.dialog_release_notes.run()
/usr/lib/python3/dist-packages/DistUpgrade/DistUpgradeFetcher.py:86: Warning: 
g_object_unref: assertion 'object->ref_count > 0' failed
  res = self.widgets.dialog_release_notes.run()
аутентифицировать 'xenial.tar.gz' вместо 'xenial.tar.gz.gpg' 
извлечение 'xenial.tar.gz'

unresolved problem during update calculation (see screenshot)

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: ubuntu-release-upgrader-core 1:0.220.8 [origin: unknown]
ProcVersionSignature: Ubuntu 3.13.0-39.66-generic 3.13.11.8
Uname: Linux 3.13.0-39-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.21
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: Unity
Date: Mon Jun 13 18:16:14 2016
InstallationDate: Installed on 2014-05-29 (746 days ago)
InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
PackageArchitecture: all
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to trusty on 2016-06-13 (0 days ago)
VarLogDistupgradeTermlog:

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


** Tags: amd64 apport-bug dist-upgrade third-party-packages trusty

** Attachment added: "Снимок экрана от 2016-06-13 18:29:33.png"
   
https://bugs.launchpad.net/bugs/1592039/+attachment/4683020/+files/%D0%A1%D0%BD%D0%B8%D0%BC%D0%BE%D0%BA%20%D1%8D%D0%BA%D1%80%D0%B0%D0%BD%D0%B0%20%D0%BE%D1%82%202016-06-13%2018%3A29%3A33.png

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

Title:
  failed to upgrade from 14.04 to 16.04

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

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

[Bug 1581476] [NEW] Ubuntu 16 Compiz Broke Java Application (Again)

2016-05-13 Thread Nic Grounds
Public bug reported:

Similar to bug
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/1145770 and
https://bugs.launchpad.net/bugs/1138517 after I upgraded from Ubuntu 15
to 16 I noticed that Java applications (notably Eclipse) have become
very sluggish, slow to respond (as the Java process constantly consumes
70-100% of a CPU core), and often don't draw their window contents
properly (i.e. a button which is toggled between enabled/disabled
doesn't get redrawn to depict the change, dialog contents on e.g. the
Run Configuration dialog don't get drawn fully until I click on some
other widget in the dialog like a tab name or button).

I've had this problem on both my desktop and a laptop which were
upgraded from Ubuntu 15 to 16.  If I run metacity or mutter instead of
compiz then Java applications work fine like they used to.  If I disable
the Ubuntu Unity plugin in compiz (using ccsm) like another bug report
or post suggested then the problem does *not* go away.  So, I believe
there was some aspect of compiz that changed between Ubuntu 15 and 16 in
which an old bug was reintroduced or a new one (similar to a past bug)
was introduced.

I'm using Ubuntu 16.04 LTS and compiz 1:0.9.12.2+16.04.20160415-0ubuntu1

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


** Tags: compiz java

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

Title:
  Ubuntu 16 Compiz Broke Java Application (Again)

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

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


[Bug 1509507] [NEW] berkeley pacman crashes xorg

2015-10-23 Thread Nic McDonald
Public bug reported:

Related bug: https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1457311

>From the Berkeley Pacman game (written in Python), xorg completely crashes. 
>Sometimes it restarts but most of the time the whole system hangs. Berkeley 
>Pacman here:
Info: http://ai.berkeley.edu/search.html
Source: 
https://s3-us-west-2.amazonaws.com/cs188websitecontent/projects/release/search/v1/001/search.zip

I found that commenting out line 217 in file "graphicsUtil.py" fixes the
problem (yet alters the game). Of course there may be bugs in the
software, but those bugs should never be able to hang a system.

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: xorg 1:7.7+7ubuntu4
ProcVersionSignature: Ubuntu 3.19.0-31.36-generic 3.19.8-ckt7
Uname: Linux 3.19.0-31-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 2.17.2-0ubuntu1.5
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
CurrentDesktop: Unity
Date: Fri Oct 23 12:45:05 2015
DistroCodename: vivid
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes
GraphicsCard:
 Intel Corporation 2nd Generation Core Processor Family Integrated Graphics 
Controller [8086:0116] (rev 09) (prog-if 00 [VGA controller])
   Subsystem: Dell Device [1028:050e]
 NVIDIA Corporation GF108M [GeForce GT 540M] [10de:0df4] (rev a1) (prog-if 00 
[VGA controller])
   Subsystem: Dell Device [1028:050e]
InstallationDate: Installed on 2015-03-16 (221 days ago)
InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Release amd64 (20141022.1)
MachineType: Dell Inc. Dell System XPS L502X
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-31-generic 
root=UUID=3c903114-3866-4521-b1a9-b6df85728552 ro quiet splash vt.handoff=7
SourcePackage: xorg
UpgradeStatus: Upgraded to vivid on 2015-04-30 (176 days ago)
dmi.bios.date: 09/07/2012
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A12
dmi.board.name: 0NJT03
dmi.board.vendor: Dell Inc.
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.chassis.version: 0.1
dmi.modalias: 
dmi:bvnDellInc.:bvrA12:bd09/07/2012:svnDellInc.:pnDellSystemXPSL502X:pvr:rvnDellInc.:rn0NJT03:rvr:cvnDellInc.:ct8:cvr0.1:
dmi.product.name: Dell System XPS L502X
dmi.sys.vendor: Dell Inc.
version.compiz: compiz 1:0.9.12.1+15.04.20150410.1-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.60-2
version.libgl1-mesa-dri: libgl1-mesa-dri 10.5.9-2ubuntu1~vivid2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 10.5.9-2ubuntu1~vivid2
version.xserver-xorg-core: xserver-xorg-core 2:1.17.1-0ubuntu3.1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.0-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.5.0-1ubuntu2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917-1~exp1ubuntu2.2
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu2build1
xserver.bootTime: Fri Oct 23 12:40:30 2015
xserver.configfile: default
xserver.errors:
 Failed to load module "nvidia" (module does not exist, 0)
 Failed to load module "nvidia" (module does not exist, 0)
 NOUVEAU(G0): [XvMC] Failed to initialize extension.
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id6125 
 vendor AUO
xserver.version: 2:1.17.1-0ubuntu3.1

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


** Tags: amd64 apport-bug compiz-0.9 ubuntu vivid

** Attachment added: "Source code from Berkeley"
   https://bugs.launchpad.net/bugs/1509507/+attachment/4503440/+files/search.zip

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

Title:
  berkeley pacman crashes xorg

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

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


[Bug 1457311] Re: Xorg crash

2015-10-20 Thread Nic McDonald
I can verify that this bug happens to me as well. I've tried it on
various Ubuntu machines (all 14.04). Even when SSH'ing into another
machine with X forwarding, it crashes the computer with the display.

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

Title:
  Xorg crash

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

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


[Bug 1445911] Re: Characters missing in Ubuntu 14.04

2015-04-23 Thread Nic
I am experiencing the same issue. I'm using the Dell XPS 13 as well, but
I'm running Ubuntu 14.10.

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

Title:
  Characters missing in Ubuntu 14.04

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

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


[Bug 1079784] Re: Accessible description doesn't update in 14.04

2015-03-21 Thread Nic
I'm running into this same problem. doing a pkill -f indicator-power-
source will get it reporting the correct value again, but I'd rather not
have to implement a workaround.

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

Title:
  Accessible description doesn't update in 14.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/indicator-power/+bug/1079784/+subscriptions

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


[Bug 1418175] [NEW] nut-server packaging incorrectly assumes host will be client, too

2015-02-04 Thread Nic Bernstein
Public bug reported:

The packaging for nut-server assumes that host will also be a client, which is 
an invalid assumption.  As is stated a 
href=http://www.networkupstools.org/docs/user-manual.chunked/ar01s06.html#DataRoom;on
 the nut website/a:
quoteFinally, there’s a special case. Type A systems are connected to a UPS’s 
serial port, but don’t depend on it for power. This usually happens when a UPS 
is physically close to a box and can reach the serial port, but the wiring is 
such that it doesn’t actually feed it./quote

There is no good reason for nut=server to depend upon nut-client.

Furthermore, /etc/init.d/nut, in the start-stop-client() function should
not include netserver in the case $MODE... statement, or else a
different mode should be introduced which starts only the driver and
upsd components, as is described in the documentation.

It is a potentially dangerous and critical assumption that a nut host
will always be powered by, or only be powered by, a ups which it is also
monitoring.  The software supports much greater freedom than this, and
the packaging should reflect this.

This is specifically in reference to the Precise (12.04.2 LTS) packaging
of nut-2.6.3-1ubuntu1.1, but the same dependency is observed to exist in
nut-2.7.1-1ubuntu1 for Trusty (14.04.1 LTS).

** Affects: nut (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/1418175

Title:
  nut-server packaging incorrectly assumes host will be client, too

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

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

[Bug 1418175] [NEW] nut-server packaging incorrectly assumes host will be client, too

2015-02-04 Thread Nic Bernstein
Public bug reported:

The packaging for nut-server assumes that host will also be a client, which is 
an invalid assumption.  As is stated a 
href=http://www.networkupstools.org/docs/user-manual.chunked/ar01s06.html#DataRoom;on
 the nut website/a:
quoteFinally, there’s a special case. Type A systems are connected to a UPS’s 
serial port, but don’t depend on it for power. This usually happens when a UPS 
is physically close to a box and can reach the serial port, but the wiring is 
such that it doesn’t actually feed it./quote

There is no good reason for nut=server to depend upon nut-client.

Furthermore, /etc/init.d/nut, in the start-stop-client() function should
not include netserver in the case $MODE... statement, or else a
different mode should be introduced which starts only the driver and
upsd components, as is described in the documentation.

It is a potentially dangerous and critical assumption that a nut host
will always be powered by, or only be powered by, a ups which it is also
monitoring.  The software supports much greater freedom than this, and
the packaging should reflect this.

This is specifically in reference to the Precise (12.04.2 LTS) packaging
of nut-2.6.3-1ubuntu1.1, but the same dependency is observed to exist in
nut-2.7.1-1ubuntu1 for Trusty (14.04.1 LTS).

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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nut in Ubuntu.
https://bugs.launchpad.net/bugs/1418175

Title:
  nut-server packaging incorrectly assumes host will be client, too

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1318828] [NEW] Crash during installation of mythbuntu 14.04

2014-05-12 Thread Nic Bernstein
Public bug reported:

Crash during installation

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: ubiquity 2.18.7
ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
Uname: Linux 3.13.0-24-generic x86_64
ApportVersion: 2.14.1-0ubuntu3
Architecture: amd64
CasperVersion: 1.340
Date: Mon May 12 16:48:11 2014
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz.efi 
file=/cdrom/preseed/mythbuntu.seed boot=casper only-ubiquity quiet splash --
LiveMediaBuild: Mythbuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
ProcEnviron:
 TERM=linux
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=en_US.UTF-8
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug mythbuntu trusty ubiquity-2.18.7

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

Title:
  Crash during installation of mythbuntu 14.04

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

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


[Bug 1318828] Re: Crash during installation of mythbuntu 14.04

2014-05-12 Thread Nic Bernstein
*** This bug is a duplicate of bug 1309553 ***
https://bugs.launchpad.net/bugs/1309553

Removed duplicate of bug 1309533 as that has to do with Can't edit
factoids that are aliases to nonexisting factoids in IRC, which has
nothing to with installing MythBuntu.

** This bug is no longer a duplicate of bug 1309553
   Mythbuntu Installer Crash enabling VNC

** This bug has been marked a duplicate of bug 1318817
   Error preventing new install

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

Title:
  Crash during installation of mythbuntu 14.04

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

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


[Bug 1318817] Re: Error preventing new install

2014-05-12 Thread Nic Bernstein
*** This bug is a duplicate of bug 1309553 ***
https://bugs.launchpad.net/bugs/1309553

Removed duplicate of bug 1309533 as that has to do with Can't edit
factoids that are aliases to nonexisting factoids in IRC, which has
nothing to with installing MythBuntu.


** This bug is no longer a duplicate of bug 1309533
   Can't edit factoids that are aliases to nonexisting factoids

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

Title:
  Error preventing new install

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

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


Re: [Ubuntu-be] Fwd: Updates from ‘Ubuntu Edge’

2013-08-08 Thread Nic De Muyer

  
  
On the contrary: I think the idea
  behind this approach (starting with crowdfunding) is to figure out
  how much interest/demand there is for it.
  Especially since the product they want to throw on the market is
  essentially already there, just not in this form.  (a concept I
  really like btw)
  
  If it turns out a lot of people are willing to invest in the
  technology, it is an indicator to corporate investors if it will
  be worth their money and effort to support it.
  (also, if the goal isn' t reached, I'm pretty sure Canonical will
  surplus the necessary funds anyway)
  
  Anyway, as Jan already pointed out, apparently there is already
  enough crowdfunding for Bloomberg to see its potential, and with
  their boost (both money and their reputation), I'm guessing (or
  hoping) it will convince the big spenders (errr, investors).
  
  Let's wait and see.
  
  Kr,
  Nic
  
  On 08-08-13 10:52, Jurgen Gaeremyn wrote:


  
  I would really like to see this
happen... but to be honest... I think this is basically a big
marketing stunt. Setting 32 million USD as starting requirement
and having such a steep deadline is almost guaranteed to not
happen. This is a too big target to reach with crowdfunding.

If you want to gather this kind of money, crowdsourcing is not
the way to go/start. You need to find corporate investors first
(at least for 50% of the goal), and then go advertise it. So
yeah, they collected over 8,000,000 - that's a record. But it's
nothing if it's not gonna happen (unless they have some hidden
million dollar sponsors out there waiting for the last minute,
just to hype it).

Grtz,
Jurgen.

On 08-08-13 08:19, Jan Bongaerts wrote:
  
  

  

  
Exciting to see they're getting their first
  corporate backing from Bloomberg.

I'm hoping it gives the campaign the necessary boost to
get more support.

  
  If you're still sitting on the fence and not usre if this
  project deserves your backing, have a look at the site
  again. There are new perks since their launch, and it
  might just be something for you.
  

Regards,
  
  Jan.
  

  

  
  

  

  

  


  


-- 
ubuntu-be mailing list / mailto:ubuntu-be@lists.ubuntu.com

Modify settings or unsubscribe at:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-be


[Bug 940825] Re: apt-get update reporting not acceptable

2013-07-07 Thread Nic Robinson
I also had 406 errors using the aarnet AU mirror. Problem resolved after
the following:

Changed to the main Ubuntu repo, then ran 'apt-get update'
Changed back to aarnet, again ran 'apt-get update'

No more Error 406 (for me)

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

Title:
  apt-get update reporting not acceptable

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

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


[Bug 19065] Re: warnings about bad SSL certificate when viewing mail

2013-07-04 Thread Nic Knox
Seems like this bug's re-emerged recently [I'm running evolution 2.28.3
on Ubuntu 10.04LTS]. It is merely irritating to have to deal with this
rather persistent popup - I wish it would go away.

** Attachment added: Screenshot-Evolution Warning.png
   
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/19065/+attachment/3724095/+files/Screenshot-Evolution%20Warning.png

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

Title:
  warnings about bad SSL certificate when viewing mail

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

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


[Bug 1192319] [NEW] snmpd init script uses start-stop-daemon without pidfile argument

2013-06-18 Thread Nic Bernstein
Public bug reported:

The snmpd.init file in Precise, Quantal, Raring and Saucy invokes start-
stop-daemon without the --pidfile argument.  This causes all instances
of snmpd to die when used on an LXC parent host, for example.

From the man page for start-stop-daemon:
   Note: unless --pidfile is specified, start-stop-daemon behaves  similar
   to  killall(1).   start-stop-daemon will scan the process table looking
   for any processes which match the process name,  uid,  and/or  gid  (if
   specified). Any matching process will prevent --start from starting the
   daemon. All matching processes will be sent the TERM signal (or the one
   specified  via --signal or --retry) if --stop is specified. For daemons
   which have long-lived children which need to live through a --stop, you
   must specify a pidfile.

In an LXC environment, all the container processes appear in the parent
host's process table, thus service snmpd {restart|stop} will kill all
running snmpd instances, even those in child containers.

In Precise, Quantal and Raring (5.4.3~dfsg-...), this is typical of how the 
process is stopped:
   start-stop-daemon --quiet --stop --oknodo --exec /usr/sbin/snmpd

In saucy (5.7.2~dfsg-4ubuntu1) this is typical of how the process is stopped:
   start-stop-daemon --quiet --stop --oknodo --exec /usr/sbin/snmpd  [ ! -f 
$SNMP_PID ] || rm $SNMP_PID

In all cases, --pidfile should be used to constrain the action of start-
stop-daemon.

Observed empirically in snmpd-5.4.3~dfsg-2.4ubuntu1.1, observed in
source packages for 5.4.3~dfsg-2.7ubuntu and 5.7.2~dfsg-4ubuntu1 on
launchpad.

** Affects: net-snmp (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: init.d snmpd start-stop-daemon

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to net-snmp in Ubuntu.
https://bugs.launchpad.net/bugs/1192319

Title:
  snmpd init script uses start-stop-daemon without pidfile argument

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1192319] [NEW] snmpd init script uses start-stop-daemon without pidfile argument

2013-06-18 Thread Nic Bernstein
Public bug reported:

The snmpd.init file in Precise, Quantal, Raring and Saucy invokes start-
stop-daemon without the --pidfile argument.  This causes all instances
of snmpd to die when used on an LXC parent host, for example.

From the man page for start-stop-daemon:
   Note: unless --pidfile is specified, start-stop-daemon behaves  similar
   to  killall(1).   start-stop-daemon will scan the process table looking
   for any processes which match the process name,  uid,  and/or  gid  (if
   specified). Any matching process will prevent --start from starting the
   daemon. All matching processes will be sent the TERM signal (or the one
   specified  via --signal or --retry) if --stop is specified. For daemons
   which have long-lived children which need to live through a --stop, you
   must specify a pidfile.

In an LXC environment, all the container processes appear in the parent
host's process table, thus service snmpd {restart|stop} will kill all
running snmpd instances, even those in child containers.

In Precise, Quantal and Raring (5.4.3~dfsg-...), this is typical of how the 
process is stopped:
   start-stop-daemon --quiet --stop --oknodo --exec /usr/sbin/snmpd

In saucy (5.7.2~dfsg-4ubuntu1) this is typical of how the process is stopped:
   start-stop-daemon --quiet --stop --oknodo --exec /usr/sbin/snmpd  [ ! -f 
$SNMP_PID ] || rm $SNMP_PID

In all cases, --pidfile should be used to constrain the action of start-
stop-daemon.

Observed empirically in snmpd-5.4.3~dfsg-2.4ubuntu1.1, observed in
source packages for 5.4.3~dfsg-2.7ubuntu and 5.7.2~dfsg-4ubuntu1 on
launchpad.

** Affects: net-snmp (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: init.d snmpd start-stop-daemon

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

Title:
  snmpd init script uses start-stop-daemon without pidfile argument

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

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


[Bug 1171471] [NEW] system program problem detected.

2013-04-22 Thread nic
Public bug reported:

ubuntu says the above. when i click report, it loses the universal menu
bar, launcher, and window bars. can;t do anything. help.

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

Title:
  system program problem detected.

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

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


[Bug 1171664] [NEW] lose all menu bars, the launcher, and all hotkeys. Happens frequently.

2013-04-22 Thread nic
Public bug reported:

It often happens. I can move windows around very unresponsively, but
anything outside the window is just gone! Have to force poweroff. Then
Ubuntu wont boot w/out checking disks. Help.

** Affects: unity (Ubuntu)
 Importance: Undecided
 Status: Invalid


** Tags: important

** Changed in: unity (Ubuntu)
   Status: New = Invalid

** Converted to question:
   https://answers.launchpad.net/ubuntu/+source/unity/+question/227257

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

Title:
  lose all menu bars, the launcher, and all hotkeys. Happens frequently.

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

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


[Bug 136985]

2013-04-12 Thread Nic-t
This bug is still present in Firefox 20, and
http://www.ailis.de/~k/permdata/20070903/scrollbar.html
If you change the boder width, and put the mouse cursor on border-left and 
padding-left, the x will both be 0.

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

Title:
  layerX/layerY wrong when mouse is over scrollbar

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

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


[Bug 760142] Re: Several Ubuntu-certified Dell laptops: ImPS/2 ALPS GlidePoint configure as PS/2 mouse instead of proper touchpad

2013-04-12 Thread Nic
*** This bug is a duplicate of bug 606238 ***
https://bugs.launchpad.net/bugs/606238

** Description changed:

  On the Dell 15R. the touchpad is not recognised as a touchpad, it is
  recognised as a mouse.
  
- $ cat /proc/bus/input/devices 
+ $ cat /proc/bus/input/devices
  [snip]
  I: Bus=0011 Vendor=0002 Product=0005 Version=7326
  N: Name=ImPS/2 ALPS GlidePoint
  P: Phys=isa0060/serio1/input0
  S: Sysfs=/devices/platform/i8042/serio1/input/input7
  U: Uniq=
- H: Handlers=mouse0 event7 
+ H: Handlers=mouse0 event7
  B: PROP=0
  B: EV=7
  B: KEY=7 0 0 0 0
  B: REL=103
  [snip]
  
  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: linux-image-2.6.38-8-generic 2.6.38-8.42
  Regression: No
  Reproducible: Yes
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
  Architecture: amd64
  ArecordDevices:
-   List of CAPTURE Hardware Devices 
-  card 0: PCH [HDA Intel PCH], device 0: STAC92xx Analog [STAC92xx Analog]
-Subdevices: 1/1
-Subdevice #0: subdevice #0
+   List of CAPTURE Hardware Devices 
+  card 0: PCH [HDA Intel PCH], device 0: STAC92xx Analog [STAC92xx Analog]
+    Subdevices: 1/1
+    Subdevice #0: subdevice #0
  AudioDevicesInUse:
-  USERPID ACCESS COMMAND
-  /dev/snd/controlC0:  jude   1571 F pulseaudio
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  jude   1571 F pulseaudio
  CRDA: Error: [Errno 2] No such file or directory
  Card0.Amixer.info:
-  Card hw:0 'PCH'/'HDA Intel PCH at 0xf7f0 irq 54'
-Mixer name : 'Intel CougarPoint HDMI'
-Components : 'HDA:111d76d1,102804b0,00100205 
HDA:80862805,80860101,0010'
-Controls  : 18
-Simple ctrls  : 10
+  Card hw:0 'PCH'/'HDA Intel PCH at 0xf7f0 irq 54'
+    Mixer name : 'Intel CougarPoint HDMI'
+    Components : 'HDA:111d76d1,102804b0,00100205 
HDA:80862805,80860101,0010'
+    Controls  : 18
+    Simple ctrls  : 10
  CurrentDmesg:
-  [   35.342430] eth0: no IPv6 routers present
-  [   48.913433] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro,commit=0
+  [   35.342430] eth0: no IPv6 routers present
+  [   48.913433] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro,commit=0
  Date: Wed Apr 13 20:11:55 2011
  HibernationDevice: RESUME=UUID=9203eac6-4c4c-41c8-bf51-e18329de0e3f
  InstallationMedia: Kubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
  MachineType: Dell Inc. Inspiron N5110
  ProcEnviron:
-  LANGUAGE=
-  LANG=en_IE.UTF-8
-  SHELL=/bin/bash
+  LANGUAGE=
+  LANG=en_IE.UTF-8
+  SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.38-8-generic 
root=UUID=64711ccc-07ea-40e8-ac9d-c9e7c40ca1f7 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
-  linux-restricted-modules-2.6.38-8-generic N/A
-  linux-backports-modules-2.6.38-8-generic  N/A
-  linux-firmware1.50
+  linux-restricted-modules-2.6.38-8-generic N/A
+  linux-backports-modules-2.6.38-8-generic  N/A
+  linux-firmware1.50
  SourcePackage: linux
  UpgradeStatus: Upgraded to natty on 2011-04-11 (1 days ago)
  dmi.bios.date: 03/02/2011
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A02
  dmi.board.name: 034W60
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A02
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: Not Specified
  dmi.modalias: 
dmi:bvnDellInc.:bvrA02:bd03/02/2011:svnDellInc.:pnInspironN5110:pvrNotSpecified:rvnDellInc.:rn034W60:rvrA02:cvnDellInc.:ct8:cvrNotSpecified:
  dmi.product.name: Inspiron N5110
  dmi.product.version: Not Specified
  dmi.sys.vendor: Dell Inc.

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

Title:
  Several Ubuntu-certified Dell laptops: ImPS/2 ALPS GlidePoint
  configure as PS/2 mouse instead of proper touchpad

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

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

[Bug 1094760] [NEW] drivers for opticle drive not mounting

2012-12-30 Thread nic meyers
Public bug reported:

main problem i am encountering is the drivers for my opticle drive are
not loading after i did an upgrade to 12.10---thank you

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: xorg 1:7.7+1ubuntu4
ProcVersionSignature: Ubuntu 3.5.0-21.32-generic 3.5.7.1
Uname: Linux 3.5.0-21-generic i686
.tmp.unity.support.test.0:
 
ApportVersion: 2.6.1-0ubuntu9
Architecture: i386
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
Date: Sun Dec 30 14:22:34 2012
DistUpgraded: 2012-12-27 22:33:12,519 DEBUG enabling apt cron job
DistroCodename: quantal
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes
GraphicsCard:
 Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (primary) 
[8086:2a02] (rev 0c) (prog-if 00 [VGA controller])
   Subsystem: Lenovo T61 [17aa:20b5]
   Subsystem: Lenovo T61 [17aa:20b5]
InstallationDate: Installed on 2012-08-10 (142 days ago)
InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release i386 (20111012)
MachineType: LENOVO 765804U
MarkForUpload: True
PccardctlIdent:
 Socket 0:
   no product info available
PccardctlStatus:
 Socket 0:
   no card
ProcEnviron:
 TERM=unknown
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.5.0-21-generic 
root=UUID=c44fc815-cf15-496e-a188-58189dbbad4e ro quiet splash vt.handoff=7
SourcePackage: xorg
UpgradeStatus: Upgraded to quantal on 2012-12-28 (2 days ago)
dmi.bios.date: 01/21/2008
dmi.bios.vendor: LENOVO
dmi.bios.version: 7LETB0WW (2.10 )
dmi.board.name: 765804U
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvr7LETB0WW(2.10):bd01/21/2008:svnLENOVO:pn765804U:pvrThinkPadT61:rvnLENOVO:rn765804U:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 765804U
dmi.product.version: ThinkPad T61
dmi.sys.vendor: LENOVO
version.compiz: compiz 1:0.9.8.6-0ubuntu1
version.libdrm2: libdrm2 2.4.39-0ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 9.0-0ubuntu1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 9.0-0ubuntu1
version.xserver-xorg-core: xserver-xorg-core 2:1.13.0-0ubuntu6.1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.99.99~git20120913.8637f772-0ubuntu1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.20.9-0ubuntu2
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.2-0ubuntu3

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


** Tags: apport-bug compiz-0.9 i386 quantal ubuntu

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

Title:
  drivers for opticle drive not mounting

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

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


[Bug 1068571] [NEW] Upgrade from 12.04 - 12.10. No window manager.

2012-10-19 Thread Nic
Public bug reported:

I just upgraded from 12.04 to 12.10 via the update manager. Everything
went smoothly untill reboot. After reboot, I have no window manager, and
no unity interface (I don't know if they're the same thing). To be
explicit: I have no bar at the top of the screen (with usual network
connections and clock/calendar etc.), and no bar on the left with the
Dash and my apps.

I can start the terminal using keyboard shortcuts, and then firefox from
the terminal, which is how I'm writing this report.

There were some general error boxes that came up, but I forgot to
screencap them. One of them was about Compiz, which I think might have
something to do with window management.

I don't really know how to fix this, can someone contact me with advice?
I'd rather not reinstall everything.

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

Title:
  Upgrade from 12.04 - 12.10. No window manager.

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

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


[Bug 1068571] Re: Upgrade from 12.04 - 12.10. No window manager.

2012-10-19 Thread Nic
Sorry, I wasn't a hundred percent clear: on top of having no bars on top
and left, I have no close minimise and maximize buttons on my
applications. These are functions that I believe are associated with the
window manager, which is why I mention it.

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

Title:
  Upgrade from 12.04 - 12.10. No window manager.

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

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


[Bug 1068571] Re: Upgrade from 12.04 - 12.10. No window manager.

2012-10-19 Thread Nic
** Package changed: ubuntu = compiz (Ubuntu)

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

Title:
  Upgrade from 12.04 - 12.10. No window manager.

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

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


[Bug 1068571] Re: Upgrade from 12.04 - 12.10. No window manager.

2012-10-19 Thread Nic
Yes, thank you, that has fixed the main problem (window manager and
unity interface).

NB however that I couldnt get bumblebee from the rep that you quoted,
but rather the one quoted on their website.

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

Title:
  Upgrade from 12.04 - 12.10. No window manager.

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

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


[Bug 996770] Re: Lock screen is occasionally solid black except for mouse cursor after resuming from suspend

2012-07-09 Thread hdb3-nic
I have seen this repeatedly on three different laptops (all lenovo/IBM - but of 
widely differing vintage).
It has been present since 12.04 release through the current day.
I work-around using ctl-alt-F1 and the sudo restart lightdm.
If someone wants to work on this and needs more information I can provide it - 
I am resetting lightdm several times most days!
this machine: lenovo x61s, 64-bit Ubuntu 12.04 LTS, 3.2.0-26-generic
i915 display driver, Intel Mobile GM965/GL960 Integrated Graphics Controller

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

Title:
  Lock screen is occasionally solid black except for mouse cursor after
  resuming from suspend

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

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


[Bug 980320] Re: Skype silently crashes on Ubuntu 64bits

2012-06-11 Thread Nic Martin
HI,
This is also affecting me.  I'm running Ubuntu 12.04 32-bits.

I tried the solution Diego Gaviola recommended.  Unfortunately, it is
not solving the problem for me.

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

Title:
  Skype silently crashes on Ubuntu 64bits

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

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


[Bug 988773] [NEW] package cairo-dock-plug-ins-data 3.0.0.1-0ubuntu2 failed to install/upgrade: trying to overwrite '/usr/share/cairo-dock/gauges/Battery/background.svg', which is also in package cair

2012-04-26 Thread Nic Robinson
Public bug reported:

Not sure - just rebooted after removing old linux kernel headers, didn't
think cairo-dock was even loading/running

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: cairo-dock-plug-ins-data 3.0.0.1-0ubuntu2
ProcVersionSignature: Ubuntu 3.2.0-24.37-generic-pae 3.2.14
Uname: Linux 3.2.0-24-generic-pae i686
ApportVersion: 2.0.1-0ubuntu6
Architecture: i386
Date: Thu Apr 19 18:16:48 2012
Dependencies:
 
DuplicateSignature:
 Unpacking replacement cairo-dock-plug-ins-data ...
 dpkg: error processing 
/var/cache/apt/archives/cairo-dock-plug-ins-data_3.0.0.1-0ubuntu1_all.deb 
(--unpack):
  trying to overwrite '/usr/share/cairo-dock/gauges/Battery/background.svg', 
which is also in package cairo-dock-data 3.0.0.0rc1-0ubuntu1
ErrorMessage: trying to overwrite 
'/usr/share/cairo-dock/gauges/Battery/background.svg', which is also in package 
cairo-dock-data 3.0.0.0rc1-0ubuntu1
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Beta i386 (20120301)
PackageArchitecture: all
SourcePackage: cairo-dock-plug-ins
Title: package cairo-dock-plug-ins-data 3.0.0.1-0ubuntu2 failed to 
install/upgrade: trying to overwrite 
'/usr/share/cairo-dock/gauges/Battery/background.svg', which is also in package 
cairo-dock-data 3.0.0.0rc1-0ubuntu1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: cairo-dock-plug-ins (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 package-conflict precise

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

Title:
  package cairo-dock-plug-ins-data 3.0.0.1-0ubuntu2 failed to
  install/upgrade: trying to overwrite '/usr/share/cairo-
  dock/gauges/Battery/background.svg', which is also in package cairo-
  dock-data 3.0.0.0rc1-0ubuntu1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cairo-dock-plug-ins/+bug/988773/+subscriptions

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


[Bug 988773] Re: package cairo-dock-plug-ins-data 3.0.0.1-0ubuntu2 failed to install/upgrade: trying to overwrite '/usr/share/cairo-dock/gauges/Battery/background.svg', which is also in package cairo-

2012-04-26 Thread Nic Robinson
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/988773

Title:
  package cairo-dock-plug-ins-data 3.0.0.1-0ubuntu2 failed to
  install/upgrade: trying to overwrite '/usr/share/cairo-
  dock/gauges/Battery/background.svg', which is also in package cairo-
  dock-data 3.0.0.0rc1-0ubuntu1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cairo-dock-plug-ins/+bug/988773/+subscriptions

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


[Bug 981974] [NEW] package openvpn 2.2.1-8ubuntu1 failed to install/upgrade: subprocess installed pre-removal script returned error exit status 127

2012-04-14 Thread Nic Robinson
Public bug reported:

Was attempting to reinstall openvpn. when uninstalling I got an error
running apt-get purge from a terminal, then this when reinstalling via
synaptic. both instances presumably caused by custom config files  I had
made/edited with [sudo] pico.?

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: openvpn 2.2.1-8ubuntu1
ProcVersionSignature: Ubuntu 3.2.0-23.36-generic-pae 3.2.14
Uname: Linux 3.2.0-23-generic-pae i686
NonfreeKernelModules: nvidia
ApportVersion: 2.0.1-0ubuntu2
AptOrdering: openvpn: Purge
Architecture: i386
Date: Sat Apr 14 16:49:33 2012
DpkgTerminalLog:
 Removing openvpn ...
 /etc/init.d/openvpn: 32: /etc/default/openvpn: dev: not found
 invoke-rc.d: initscript openvpn, action stop failed.
 dpkg: error processing openvpn (--purge):
  subprocess installed pre-removal script returned error exit status 127
ErrorMessage: subprocess installed pre-removal script returned error exit 
status 127
SourcePackage: openvpn
Title: package openvpn 2.2.1-8ubuntu1 failed to install/upgrade: subprocess 
installed pre-removal script returned error exit status 127
UpgradeStatus: No upgrade log present (probably fresh install)
modified.conffile..etc.openvpn.update.resolv.conf: [deleted]
mtime.conffile..etc.default.openvpn: 2012-04-14T16:43:41

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


** Tags: apport-package i386 precise

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvpn in Ubuntu.
https://bugs.launchpad.net/bugs/981974

Title:
  package openvpn 2.2.1-8ubuntu1 failed to install/upgrade: subprocess
  installed pre-removal script returned error exit status 127

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 981974] Re: package openvpn 2.2.1-8ubuntu1 failed to install/upgrade: subprocess installed pre-removal script returned error exit status 127

2012-04-14 Thread Nic Robinson
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvpn in Ubuntu.
https://bugs.launchpad.net/bugs/981974

Title:
  package openvpn 2.2.1-8ubuntu1 failed to install/upgrade: subprocess
  installed pre-removal script returned error exit status 127

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 981974] [NEW] package openvpn 2.2.1-8ubuntu1 failed to install/upgrade: subprocess installed pre-removal script returned error exit status 127

2012-04-14 Thread Nic Robinson
Public bug reported:

Was attempting to reinstall openvpn. when uninstalling I got an error
running apt-get purge from a terminal, then this when reinstalling via
synaptic. both instances presumably caused by custom config files  I had
made/edited with [sudo] pico.?

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: openvpn 2.2.1-8ubuntu1
ProcVersionSignature: Ubuntu 3.2.0-23.36-generic-pae 3.2.14
Uname: Linux 3.2.0-23-generic-pae i686
NonfreeKernelModules: nvidia
ApportVersion: 2.0.1-0ubuntu2
AptOrdering: openvpn: Purge
Architecture: i386
Date: Sat Apr 14 16:49:33 2012
DpkgTerminalLog:
 Removing openvpn ...
 /etc/init.d/openvpn: 32: /etc/default/openvpn: dev: not found
 invoke-rc.d: initscript openvpn, action stop failed.
 dpkg: error processing openvpn (--purge):
  subprocess installed pre-removal script returned error exit status 127
ErrorMessage: subprocess installed pre-removal script returned error exit 
status 127
SourcePackage: openvpn
Title: package openvpn 2.2.1-8ubuntu1 failed to install/upgrade: subprocess 
installed pre-removal script returned error exit status 127
UpgradeStatus: No upgrade log present (probably fresh install)
modified.conffile..etc.openvpn.update.resolv.conf: [deleted]
mtime.conffile..etc.default.openvpn: 2012-04-14T16:43:41

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


** Tags: apport-package i386 precise

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

Title:
  package openvpn 2.2.1-8ubuntu1 failed to install/upgrade: subprocess
  installed pre-removal script returned error exit status 127

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

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


[Bug 981974] Re: package openvpn 2.2.1-8ubuntu1 failed to install/upgrade: subprocess installed pre-removal script returned error exit status 127

2012-04-14 Thread Nic Robinson
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/981974

Title:
  package openvpn 2.2.1-8ubuntu1 failed to install/upgrade: subprocess
  installed pre-removal script returned error exit status 127

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

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


[Bug 962953] [NEW] unity_support_test crashed with SIGSEGV in glXGetConfig()

2012-03-23 Thread nic-stange
Private bug reported:

Since it crashes in glXGetConfig, I could not find a duplicate bug
report at a first glance.

ProblemType: Crash
DistroRelease: Ubuntu 12.04
Package: nux-tools 2.6.0-0ubuntu1
ProcVersionSignature: Ubuntu 3.2.0-20.32-generic 3.2.12
Uname: Linux 3.2.0-20-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 1.95-0ubuntu1
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
Date: Fri Mar 23 11:06:33 2012
DistUpgraded: 2012-03-14 13:12:40,294 DEBUG enabling apt cron job
DistroCodename: precise
DistroVariant: ubuntu
DkmsStatus: blcr, 0.8.2: added
ExecutablePath: /usr/lib/nux/unity_support_test
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
MachineType: System manufacturer System Product Name
ProcCmdline: /usr/lib/nux/unity_support_test
ProcEnviron:
 LANG=de_DE.UTF-8
 SHELL=/bin/false
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.2.0-20-generic 
root=/dev/mapper/scratch-root ro quiet splash vt.handoff=7
SegvReason: writing NULL VMA
Signal: 11
SourcePackage: nux
Title: unity_support_test crashed with SIGSEGV in glXGetConfig()
UpgradeStatus: Upgraded to precise on 2012-03-14 (8 days ago)
UserGroups:
 
dmi.bios.date: 08/24/2010
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 1005
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: M4A87TD/USB3
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev 1.xx
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1005:bd08/24/2010:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnM4A87TD/USB3:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer
version.compiz: compiz 1:0.9.7.0+bzr3035-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.32-1ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 8.0.2-0ubuntu2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 8.0.2-0ubuntu2
version.xserver-xorg-core: xserver-xorg-core 2:1.11.4-0ubuntu7
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.0-0ubuntu1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.14.99~git20111219.aacbd629-0ubuntu2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.17.0-1ubuntu4
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20111201+b5534a1-1build2

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


** Tags: amd64 apport-crash compiz-0.9 need-amd64-retrace precise ubuntu

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

Title:
  unity_support_test crashed with SIGSEGV in glXGetConfig()

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

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


[Bug 962956] [NEW] blcr-dkms 0.8.2-15ubuntu2: blcr kernel module failed to build

2012-03-23 Thread nic-stange
Public bug reported:

Not sure if this ir related to
https://bugs.launchpad.net/ubuntu/+source/blcr/+bug/804943

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: blcr-dkms
ProcVersionSignature: Ubuntu 3.2.0-20.32-generic 3.2.12
Uname: Linux 3.2.0-20-generic x86_64
ApportVersion: 1.95-0ubuntu1
Architecture: amd64
DKMSKernelVersion: 3.2.0-20-generic
Date: Fri Mar 23 11:00:15 2012
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
PackageArchitecture: all
PackageVersion: 0.8.2-15ubuntu2
SourcePackage: blcr
Title: blcr-dkms 0.8.2-15ubuntu2: blcr kernel module failed to build
UpgradeStatus: Upgraded to precise on 2012-03-14 (8 days ago)

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


** Tags: amd64 apport-package precise

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

Title:
  blcr-dkms 0.8.2-15ubuntu2: blcr kernel module failed to build

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

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


[Bug 962956] Re: blcr-dkms 0.8.2-15ubuntu2: blcr kernel module failed to build

2012-03-23 Thread nic-stange
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/962956

Title:
  blcr-dkms 0.8.2-15ubuntu2: blcr kernel module failed to build

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

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


[Bug 962956] Re: blcr-dkms 0.8.2-15ubuntu2: blcr kernel module failed to build

2012-03-23 Thread nic-stange
According to DKMSBuildLog.txt, it actually is a dup, sorry!

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

Title:
  blcr-dkms 0.8.2-15ubuntu2: blcr kernel module failed to build

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

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


[Bug 952094] [NEW] gpgsm chain validation not working when gnome-keyring is running

2012-03-11 Thread nic-stange
Public bug reported:

Hi everybody,

on a fresh user account (Ubuntu 11.10 x86_64), gpgsm fails to validate
certificates because gnome-keyring overwrites the GPG_AGENT_INFO
initially set by gpg-agent (started through /etc/X11/Xsession.d/90gpg-
agent with patch from
https://bugs.launchpad.net/ubuntu/+source/gnupg2/+bug/743268 already
applied by hand).

test@nic-desktop:~$ echo $GPG_AGENT_INFO
/tmp/keyring-EhHy5E/gpg:0:1
test@nic-desktop:~$ sudo lsof /tmp/keyring-EhHy5E/gpg
Password: 
lsof: WARNING: can't stat() fuse.gvfs-fuse-daemon file system /home/test/.gvfs
  Output information may be incomplete.
COMMAND PID USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
gnome-key 11834 test   15u  unix 0x88007c276080  0t0 27229833 
/tmp/keyring-EhHy5E/gpg  
test@nic-desktop:~$ LC_ALL=C gpgsm -k --with-validation  
gpgsm_gnome-keyring.out 21
test@nic-desktop:~$ . .gnupg/gpg-agent-info-nic-desktop 
test@nic-desktop:~$ echo $GPG_AGENT_INFO/tmp/gpg-OqCLX5/S.gpg-agent:11883:1
test@nic-desktop:~$ sudo lsof /tmp/gpg-OqCLX5/S.gpg-agent
lsof: WARNING: can't stat() fuse.gvfs-fuse-daemon file system /home/test/.gvfs
  Output information may be incomplete.
COMMAND PID USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
gpg-agent 11883 test5u  unix 0x8800b8534d00  0t0 27228418 
/tmp/gpg-OqCLX5/S.gpg-agent
test@nic-desktop:~$ LC_ALL=C gpgsm -k --with-validation  gpgsm_gpg-agent.out 
21
test@nic-desktop:~$
(see attached tar for the output files)

Unfortunately, the agent built into the gnome-keyring doesn't seem to support 
all the certificate types/operations/whatever needed by gpgsm cert validation.
I verfified this (actually tracked it down) with a debugger:
gnupg-2.0.18/sm/certchain.c:1308
istrusted_rc = gpgsm_agent_istrusted (ctrl, subject_cert, NULL, rootca_flags);
always returns GPG_ERR_UNSUPPORTED_CERT

I don't know if it is possible to disable gnome-keyring's gpg-agent part.
I chose to assign this bugreport to gpgsm instead of to gnome-keyring since 
gnome-keyring is kind of default on an Ubuntu system and I believe that an 
'apt-get install gpgsm' should just work.

[nic] ~ % lsb_release -rd
Description:Ubuntu 11.10
Release:11.10
[nic] ~ % LC_ALL=C apt-cache policy gpgsm
gpgsm:
  Installed: 2.0.17-2ubuntu2
  Candidate: 2.0.17-2ubuntu2
  Version table:
 *** 2.0.17-2ubuntu2 0
500 http://de.archive.ubuntu.com/ubuntu/ oneiric/main amd64 Packages
100 /var/lib/dpkg/status
[nic] ~ % LC_ALL=C apt-cache policy gnupg2
gnupg2:
  Installed: 2.0.17-2ubuntu2
  Candidate: 2.0.17-2ubuntu2
  Version table:
 *** 2.0.17-2ubuntu2 0
500 http://de.archive.ubuntu.com/ubuntu/ oneiric/main amd64 Packages
100 /var/lib/dpkg/status
[nic] ~ % LC_ALL=C apt-cache policy gnupg-agent
gnupg-agent:
  Installed: 2.0.17-2ubuntu2
  Candidate: 2.0.17-2ubuntu2
  Version table:
 *** 2.0.17-2ubuntu2 0
500 http://de.archive.ubuntu.com/ubuntu/ oneiric/main amd64 Packages
100 /var/lib/dpkg/status
[nic] ~ % LC_ALL=C apt-cache policy gnupg  
gnupg:
  Installed: 1.4.11-3ubuntu1
  Candidate: 1.4.11-3ubuntu1
  Version table:
 *** 1.4.11-3ubuntu1 0
500 http://de.archive.ubuntu.com/ubuntu/ oneiric/main amd64 Packages
100 /var/lib/dpkg/status
[nic] ~ %
This system had been upgraded to oneiric from natty once. Let me know if you 
need some more information.

Best,

Nicolai

** Affects: gnupg2 (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/952094

Title:
  gpgsm chain validation not working when gnome-keyring is running

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

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


[Bug 952094] Re: gpgsm chain validation not working when gnome-keyring is running

2012-03-11 Thread nic-stange
** Attachment added: gpgsm output with gnome-keyring and with gpg-agent
   
https://bugs.launchpad.net/bugs/952094/+attachment/2849304/+files/gpgsm_out.tar.bz2

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

Title:
  gpgsm chain validation not working when gnome-keyring is running

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

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


[Bug 952094] Re: gpgsm chain validation not working when gnome-keyring is running

2012-03-11 Thread nic-stange
Removing
/etc/xdg/autostart/gnome-keyring-gpg.desktop
makes gnome-keyring not to overwrite GPG_AGENT_INFO with its own stuff. But I 
don't know how to do this on a per-user basis.

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

Title:
  gpgsm chain validation not working when gnome-keyring is running

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

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


[Bug 804641] Re: gpg-agent incorrectly detects currently running daemons

2012-03-11 Thread nic-stange
Since gpg-agent is being run through the $STARTUP chain, sourcing that
$PID_FILE seems unnecessary if gpg-agent gets actually invoked by this
script. If I get things correctly, this sourcing part of the script is
only intended to recover access to a (leftover?) gpg-agent that is
already running when this script is entered.

Maybe your problem is related to this one instead:
https://bugs.launchpad.net/ubuntu/+source/gnupg2/+bug/743268

I applied that patch given there and everything works fine.

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

Title:
  gpg-agent incorrectly detects currently running daemons

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

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


[Bug 952094] Re: gpgsm chain validation not working when gnome-keyring is running

2012-03-11 Thread nic-stange
Works like a charm! Thank you so much!

Since it took me days to track this problem down, its solution should be
documented somewhere (in connection with the Unsupported certificate
message). I would prefer the gpgsm manpage or
/usr/share/doc/gpgsm/Readme.Debian (and of course all the Ubuntu Wikis
around).

There is not APTish way to make things just work on installation of
gpgsm, I guess?

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

Title:
  gpgsm chain validation not working when gnome-keyring is running

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

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


[Bug 875618] Re: burn refused due to duplicated filenames

2011-10-18 Thread Nic Knox
I notice this is still unanswered. I still think its a bug - a lot of fiddling 
about seems to indicate that Brasero refuses to burn filenames which include 
%20. This may be a superficial conclusion  I can't be bothered to see if its 
the inclusion of any % character that causes the crash, but it would seem 
logical. 
A temporary fix might be for the program to do a preliminary search for any 
filenames it doesn't like and report them in a format where the file can be 
removed or the name changed.

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

Title:
  burn refused due to duplicated filenames

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

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


[Bug 875618] [NEW] burn refused due to duplicated filenames

2011-10-16 Thread Nic Knox
Public bug reported:

Not sure if this is a bug, but can't find a link  no one has answered my HELP 
request in which I said:
I set up a burn, the dialogue whirs round a bit, the CD-RW ejects, the last bit 
of the burnlog says:

BraseroGenisoimage Launching command
BraseroGenisoimage called brasero_job_get_fd_out
BraseroGenisoimage called brasero_job_get_fd_in
BraseroGenisoimage called brasero_job_get_fd_out
BraseroGenisoimage stderr: /usr/bin/genisoimage: Error: 
'/media/3CDA-8224/Photos/Photos to print/Margaret%20Tess2.jpg' and 
'/media/3CDA-8224/Photos/Photos to print/Margaret%20Tess2.jpg' have the same 
Rock Ridge name 'Margaret%20Tess2.jpg'.
BraseroGenisoimage stderr: Unable to sort directory Football MEK to 
Oct10/Photos/Photos to print
BraseroGenisoimage called brasero_job_error
BraseroGenisoimage finished with an error
BraseroGenisoimage asked to stop because of an error
error   = 16
message = An image could not be created
BraseroGenisoimage stopping
BraseroGenisoimage got killed
Session error : An image could not be created (brasero_burn_record 
brasero-burn.c:2839)

What am I supposed to do? [if its relevant I think there will be lots of
duplicated filenames]

cheers
Nic

** Affects: brasero (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/875618

Title:
  burn refused due to duplicated filenames

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

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


[Bug 516725] Re: acer 7720g laptop 3 spkr's 3rd being sub woofer not working

2011-03-01 Thread nic
^^^David thanks for the fix that works... but with headphones plugged in you 
can still hear the woofer
 is there a fix for that ?? ..  (im on 10.04) ^^^

 note: there is no independent adjustment for the woofer sound
preferences alsamixer maybe that's normal?

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

Title:
  acer 7720g laptop 3 spkr's 3rd being sub woofer not working

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


[Bug 714520] [NEW] plugged in Epson B40W: automessage reads: package openoffice.org-emailmerge 1:3.1.1-5ubuntu1.2 failed to install/upgrade: subprocess new pre-installation script returned error exit

2011-02-07 Thread Nic Knox
Public bug reported:

Binary package hint: openoffice.org

Don't know too much about linux/printers - - pc just asked me to report
this as a bug when trying to plug in the above printer.

ProblemType: Package
Architecture: i386
Date: Thu Feb  3 08:46:44 2011
DistroRelease: Ubuntu 9.10
DpkgTerminalLog:
 Log started: 2011-02-02  08:22:26
 Log ended: 2011-02-02  08:24:56
 
 Log started: 2011-02-03  08:46:13
ErrorMessage: subprocess new pre-installation script returned error exit status 
1
Package: openoffice.org-emailmerge 1:3.1.1-5ubuntu1.2
PackageArchitecture: all
ProcVersionSignature: Ubuntu 2.6.31-22.70-generic
SourcePackage: openoffice.org
Title: package openoffice.org-emailmerge 1:3.1.1-5ubuntu1.2 failed to 
install/upgrade: subprocess new pre-installation script returned error exit 
status 1
Uname: Linux 2.6.31-22-generic i686

** Affects: openoffice.org (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386

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

Title:
  plugged in Epson B40W: automessage reads: package openoffice.org-
  emailmerge 1:3.1.1-5ubuntu1.2 failed to install/upgrade: subprocess
  new pre-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 714520] Re: plugged in Epson B40W: automessage reads: package openoffice.org-emailmerge 1:3.1.1-5ubuntu1.2 failed to install/upgrade: subprocess new pre-installation script returned error exit st

2011-02-07 Thread Nic Knox


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

Title:
  plugged in Epson B40W: automessage reads: package openoffice.org-
  emailmerge 1:3.1.1-5ubuntu1.2 failed to install/upgrade: subprocess
  new pre-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 486154] Re: System beep broken in Karmic despite heroic efforts to fix it

2010-09-23 Thread Nic Shakeshaft
Having struggled with this for ages, just thought I'd post the
(extremely hacky!) workaround which finally got the system bell working
normally for me, in case it's of any help to anyone. This is for Lucid.
There were two issues for me: first, the fact that the pcspkr kernel
module (when removed from blacklist) loads too early and hence fails to
do anything, as Grondr points out above.

Second, the window manager's audible bell setting (Compiz in my case -
I haven't checked, but it may be the same for metacity) appears to be
overruled by pulseaudio's attempt to capture system bells and replace
them with a sampled sound (using module-x11-bell), such that these
settings in gconf-editor, etc., don't actually do anything. For love nor
money, I can't stop pulseaudio from doing this, but have at least
discovered that the window manager's audible bell setting DOES take
effect if it is applied AFTER pulseaudio has finished doing its thing.
With Compiz, for example, this means that toggling 'General Options' -
'Audible bell' in CCSM (System - Preferences - CompizConfig Settings
Manager) off and then back on again restores normal bell behaviour!

Doing this manually after every boot is predictably annoying, but
fortunately it can be scripted. For simplicity, I've put the workarounds
for both bugs into the same executable script, ~/bin/sysbell_hacks, and
added it to Startup Applications so that it runs as Gnome loads, after
login. Here's the script:


#!/bin/bash

 # Make sure gnome and pulseaudio have finished loading
sleep 30s

 # pcspkr kernel module insertion bug: remove (if not blacklisted) and reinsert 
the module
sudo modprobe -r pcspkr
sudo modprobe pcspkr

 # window manager setting override hack: toggle the audible_bell flag
gconftool-2 --set /apps/compiz/general/allscreens/options/audible_bell --type 
bool false
sleep 1s
gconftool-2 --set /apps/compiz/general/allscreens/options/audible_bell --type 
bool true


As I said... hacky. This works (at least for me...) with compiz, but on
the off-chance that something similar is happening with metacity, its
users might just try replacing the compiz setting in the script above
with /apps/metacity/general/audible_bell, in both of the gconftool-2
commands. No promises!  :)

-- 
System beep broken in Karmic despite heroic efforts to fix it
https://bugs.launchpad.net/bugs/486154
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 533017] Re: Gwibber doesn't refresh streams (unsupported locale/language error not handled)

2010-09-02 Thread Nic Brough
Still broken in Gwibber 2.30.1 for me too.

Updating to the daily build as per Mathieu Carbou's instructions breaks
Gwibber completely

** (gwibber:3343): WARNING **: Trying to register gtype
'WnckWindowState' as enum when in fact it is of type 'GFlags'

** (gwibber:3343): WARNING **: Trying to register gtype
'WnckWindowActions' as enum when in fact it is of type 'GFlags'

** (gwibber:3343): WARNING **: Trying to register gtype 
'WnckWindowMoveResizeMask' as enum when in fact it is of type 'GFlags'
Traceback (most recent call last):
  File /usr/bin/gwibber, line 67, in module
client.Client()
  File /usr/lib/python2.6/dist-packages/gwibber/client.py, line 533, in 
__init__
self.w = GwibberClient()
  File /usr/lib/python2.6/dist-packages/gwibber/client.py, line 63, in 
__init__
self.setup_ui()
  File /usr/lib/python2.6/dist-packages/gwibber/client.py, line 159, in 
setup_ui
self.stream_view = view_class(self.model)
  File /usr/lib/python2.6/dist-packages/gwibber/gwui.py, line 316, in __init__
self.navigation.render()
  File /usr/lib/python2.6/dist-packages/gwibber/gwui.py, line 282, in render
streams=self.model.get_streams(),
  File /usr/lib/python2.6/dist-packages/gwibber/gwui.py, line 78, in 
get_streams
if not self.model_valid: self.refresh()
  File /usr/lib/python2.6/dist-packages/gwibber/gwui.py, line 82, in refresh
self.model = self.generate_streams()
  File /usr/lib/python2.6/dist-packages/gwibber/gwui.py, line 87, in 
generate_streams
transients = json.loads(self.streams.List())
  File /usr/lib/pymodules/python2.6/dbus/proxies.py, line 68, in __call__
return self._proxy_method(*args, **keywords)
  File /usr/lib/pymodules/python2.6/dbus/proxies.py, line 140, in __call__
**keywords)
  File /usr/lib/pymodules/python2.6/dbus/connection.py, line 620, in 
call_blocking
message, timeout)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.UnknownMethod: 
Traceback (most recent call last):
  File /usr/lib/pymodules/python2.6/dbus/service.py, line 649, in _message_cb
(candidate_method, parent_method) = _method_lookup(self, method_name, 
interface_name)
  File /usr/lib/pymodules/python2.6/dbus/service.py, line 244, in 
_method_lookup
raise UnknownMethodException('%s is not a valid method of interface %s' % 
(method_name, dbus_interface))
UnknownMethodException: org.freedesktop.DBus.Error.UnknownMethod: Unknown 
method: List is not a valid method of interface com.Gwibber.Streams

-- 
Gwibber doesn't refresh streams (unsupported locale/language error not handled)
https://bugs.launchpad.net/bugs/533017
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 622849] [NEW] FF hangs when opening and saving a large JPG at the same time

2010-08-23 Thread Nic Roets
Public bug reported:

Binary package hint: firefox

Linux nic-laptop 2.6.32-22-generic #36-Ubuntu SMP Thu Jun 3 22:02:19 UTC 2010 
i686 GNU/Linux
Description:Ubuntu 10.04 LTS
Release:10.04
firefox:
  Installed: 3.6.8+build1+nobinonly-0ubuntu0.10.04.1
  Candidate: 3.6.8+build1+nobinonly-0ubuntu0.10.04.1
  Version table:
 *** 3.6.8+build1+nobinonly-0ubuntu0.10.04.1 0
500 http://za.archive.ubuntu.com/ubuntu/ lucid-updates/main Packages
500 http://security.ubuntu.com/ubuntu/ lucid-security/main Packages
100 /var/lib/dpkg/status
 3.6.3+nobinonly-0ubuntu4 0
500 http://za.archive.ubuntu.com/ubuntu/ lucid/main Packages

Open the large jpeg file. While it is loading, right-click on it and choose 
Save As. My computer hangs at that point. I could not launch a terminal to kill 
FF with, not even by hitting Ctrl+Alt+F1.
http://www.thehalo.de/poster/photoposter/photoposter_london_underground.jpg

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: firefox 3.6.8+build1+nobinonly-0ubuntu0.10.04.1
ProcVersionSignature: Ubuntu 2.6.32-22.36-generic 2.6.32.11+drm33.2
Uname: Linux 2.6.32-22-generic i686
Architecture: i386
Date: Mon Aug 23 18:36:16 2010
FirefoxPackages:
 firefox 3.6.8+build1+nobinonly-0ubuntu0.10.04.1
 firefox-gnome-support 3.6.8+build1+nobinonly-0ubuntu0.10.04.1
 firefox-branding 3.6.8+build1+nobinonly-0ubuntu0.10.04.1
 abroswer N/A
 abrowser-branding N/A
InstallationMedia: Ubuntu-Netbook 10.04 Lucid Lynx - Release i386 (20100429.4)
ProcEnviron:
 LANG=en_ZA.utf8
 SHELL=/bin/bash
SourcePackage: firefox

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


** Tags: apport-bug i386 lucid ubuntu-une

-- 
FF hangs when opening and saving a large JPG at the same time
https://bugs.launchpad.net/bugs/622849
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 622849] Re: FF hangs when opening and saving a large JPG at the same time

2010-08-23 Thread Nic Roets

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/622849/+attachment/1513332/+files/Dependencies.txt

** Attachment added: ExtensionSummary.txt
   
https://bugs.launchpad.net/bugs/622849/+attachment/1513334/+files/ExtensionSummary.txt

** Attachment added: default_profile_pluginreg.dat.txt
   
https://bugs.launchpad.net/bugs/622849/+attachment/1513336/+files/default_profile_pluginreg.dat.txt

** Attachment added: profile_ffFix_pluginreg.dat.txt
   
https://bugs.launchpad.net/bugs/622849/+attachment/1513338/+files/profile_ffFix_pluginreg.dat.txt

** Attachment added: profiles.ini.txt
   
https://bugs.launchpad.net/bugs/622849/+attachment/1513340/+files/profiles.ini.txt

-- 
FF hangs when opening and saving a large JPG at the same time
https://bugs.launchpad.net/bugs/622849
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 596282] [NEW] Example in info page is incomplete

2010-06-19 Thread Nic Roets
Public bug reported:

Binary package hint: flex

In part 21.2 of the info page (Overriding The Default Memory
Management), the example correctly shows that #include should be placed
in a %{ ... }% block. The example will however only compile after
placing the two #define lines in a (seperate) %{ ... }% block.

The save error is also present in the html version of the same manual
that is contained in the flex-doc package.

lsb_release -rd
Description:Ubuntu 9.10

flex:
  Installed: 2.5.35-7ubuntu1

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

-- 
Example in info page is incomplete
https://bugs.launchpad.net/bugs/596282
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 593528] [NEW] package flashplugin-nonfree 10.0.1.218 really9.0.262.0ubuntu1 failed to install/upgrade:

2010-06-14 Thread nic woodhams
Public bug reported:

Binary package hint: flashplugin-nonfree

As i was upgrading to 10.4 from 8.04. I was told I should report the bug
which I did and then the whole upgrade to 10.04 was aborted

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: flashplugin-nonfree 10.0.1.218+really9.0.262.0ubuntu1
ProcVersionSignature: Ubuntu 2.6.24-28.70-generic
Uname: Linux 2.6.24-28-generic i686
Architecture: i386
Date: Mon Jun 14 06:39:32 2010
ErrorMessage:
 ErrorMessage: Package is in a very bad inconsistent state - you should  
reinstall it before attempting configuration.
SourcePackage: flashplugin-nonfree
Title: package flashplugin-nonfree 10.0.1.218+really9.0.262.0ubuntu1 failed to 
install/upgrade:

** Affects: flashplugin-nonfree (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

-- 
package flashplugin-nonfree 10.0.1.218 really9.0.262.0ubuntu1 failed to 
install/upgrade:
https://bugs.launchpad.net/bugs/593528
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 593528] Re: package flashplugin-nonfree 10.0.1.218 really9.0.262.0ubuntu1 failed to install/upgrade:

2010-06-14 Thread nic woodhams

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

** Attachment added: VarLogDistupgradeAptlog.gz
   http://launchpadlibrarian.net/50299033/VarLogDistupgradeAptlog.gz

** Attachment added: VarLogDistupgradeApttermlog.gz
   http://launchpadlibrarian.net/50299034/VarLogDistupgradeApttermlog.gz

** Attachment added: VarLogDistupgradeLspcitxt.gz
   http://launchpadlibrarian.net/50299035/VarLogDistupgradeLspcitxt.gz

** Attachment added: VarLogDistupgradeMainlog.gz
   http://launchpadlibrarian.net/50299036/VarLogDistupgradeMainlog.gz

** Attachment added: VarLogDistupgradeSystemstatetargz.gz
   http://launchpadlibrarian.net/50299037/VarLogDistupgradeSystemstatetargz.gz

** Attachment added: VarLogDistupgradeTermlog.gz
   http://launchpadlibrarian.net/50299038/VarLogDistupgradeTermlog.gz

-- 
package flashplugin-nonfree 10.0.1.218 really9.0.262.0ubuntu1 failed to 
install/upgrade:
https://bugs.launchpad.net/bugs/593528
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 492937] Re: network-manager-applet vanishes randomly

2010-06-08 Thread nic
icon still vanishes but can be brought back by right clicking on the
panel selecting panel properties, then ticking the box ( show hide
buttons ) long enough for the change to take place, the icon re-appears
then UN-tick the box..

-- 
network-manager-applet vanishes randomly
https://bugs.launchpad.net/bugs/492937
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 516725] Re: acer 7720g laptop 3 spkr's 3rd being sub woofer not working

2010-05-26 Thread nic
sorry brad this is still a problem . even with the new release but I've kinda 
give up . Im sure its solvable though! 
just seems very hard to sort out the problem not being all that familiar with 
alsa and new to gnu-linux an-all ..

-- 
acer 7720g laptop 3 spkr's 3rd being sub woofer not working 
https://bugs.launchpad.net/bugs/516725
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 513562] Re: Windows 7 Pro machines trust relationship fails

2010-05-20 Thread Nic
Why not change the
HKLM\SYSTEM\CurrentControlSet\Services\Netlogon\Parameters\MaximumPasswordAge
to 1 or 2 and see what happens with DisablePasswordChange changed to 1?
I can't test right now.  Anyone else care to?

-- 
Windows 7 Pro machines trust relationship fails
https://bugs.launchpad.net/bugs/513562
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 513562] Re: Windows 7 Pro machines trust relationship fails

2010-05-20 Thread Nic
Why not change the
HKLM\SYSTEM\CurrentControlSet\Services\Netlogon\Parameters\MaximumPasswordAge
to 1 or 2 and see what happens with DisablePasswordChange changed to 1?
I can't test right now.  Anyone else care to?

-- 
Windows 7 Pro machines trust relationship fails
https://bugs.launchpad.net/bugs/513562
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


Re: [Bug 553007] Re: package libmagickcore2-extra (not installed) failed to install/upgrade: cannot access archive: No such file or directory

2010-04-06 Thread Nic
Oooh, I'm not sure. If there is a default for Ubuntu 10.04 update manager,
that's what I'm using. I apologize, I'm a complete Linux noob, learning
slowly in my spare time. Is there a way to get that info?

Nic


On Thu, Apr 1, 2010 at 1:39 PM, Jean-Baptiste Lallement 
jeanbaptiste.lallem...@gmail.com wrote:

 Thanks for your report.

 Are you using a local mirror, local cache, how do you access the package
 archive ?

 ** Changed in: imagemagick (Ubuntu)
   Status: New = Incomplete

 --
 package libmagickcore2-extra (not installed) failed to install/upgrade:
 cannot access archive: No such file or directory
 https://bugs.launchpad.net/bugs/553007
 You received this bug notification because you are a direct subscriber
 of the bug.

 Status in “imagemagick” package in Ubuntu: Incomplete

 Bug description:
 Binary package hint: imagemagick

 Just upgrading through the Upgrade Center and some packages didn't get
 installed.
 Ubuntu 10.04 LTS - the Lucid Lynx - Beta 1

 ProblemType: Package
 DistroRelease: Ubuntu 10.04
 Package: libmagickcore2-extra (not installed)
 ProcVersionSignature: Ubuntu 2.6.32-18.27-generic 2.6.32.10+drm33.1
 Uname: Linux 2.6.32-18-generic i686
 Architecture: i386
 Date: Wed Mar 31 21:38:41 2010
 ErrorMessage: cannot access archive: No such file or directory
 InstallationMedia: Ubuntu 10.04 Lucid Lynx - Beta i386 (20100318)
 SourcePackage: imagemagick
 Title: package libmagickcore2-extra (not installed) failed to
 install/upgrade: cannot access archive: No such file or directory

 To unsubscribe from this bug, go to:

 https://bugs.launchpad.net/ubuntu/+source/imagemagick/+bug/553007/+subscribe


-- 
package libmagickcore2-extra (not installed) failed to install/upgrade: cannot 
access archive: No such file or directory
https://bugs.launchpad.net/bugs/553007
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 529696] Re: brasero can't copy audio cd (useless error message)

2010-03-31 Thread Nic
Getting it too. First time it showed it said to install cdda2wav but it
showed it twice as if it were two different things. Now doesn't list
anything.

-- 
brasero can't copy audio cd (useless error message)
https://bugs.launchpad.net/bugs/529696
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 553007] Re: package libmagickcore2-extra (not installed) failed to install/upgrade: cannot access archive: No such file or directory

2010-03-31 Thread Nic

** Attachment added: AptOrdering.txt
   http://launchpadlibrarian.net/42743358/AptOrdering.txt

** Attachment added: Df.txt
   http://launchpadlibrarian.net/42743359/Df.txt

** Attachment added: Dmesg.txt
   http://launchpadlibrarian.net/42743360/Dmesg.txt

** Attachment added: DpkgTerminalLog.txt
   http://launchpadlibrarian.net/42743361/DpkgTerminalLog.txt

-- 
package libmagickcore2-extra (not installed) failed to install/upgrade: cannot 
access archive: No such file or directory
https://bugs.launchpad.net/bugs/553007
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 553007] [NEW] package libmagickcore2-extra (not installed) failed to install/upgrade: cannot access archive: No such file or directory

2010-03-31 Thread Nic
Public bug reported:

Binary package hint: imagemagick

Just upgrading through the Upgrade Center and some packages didn't get 
installed.
Ubuntu 10.04 LTS - the Lucid Lynx - Beta 1

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: libmagickcore2-extra (not installed)
ProcVersionSignature: Ubuntu 2.6.32-18.27-generic 2.6.32.10+drm33.1
Uname: Linux 2.6.32-18-generic i686
Architecture: i386
Date: Wed Mar 31 21:38:41 2010
ErrorMessage: cannot access archive: No such file or directory
InstallationMedia: Ubuntu 10.04 Lucid Lynx - Beta i386 (20100318)
SourcePackage: imagemagick
Title: package libmagickcore2-extra (not installed) failed to install/upgrade: 
cannot access archive: No such file or directory

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


** Tags: apport-package i386 lucid

-- 
package libmagickcore2-extra (not installed) failed to install/upgrade: cannot 
access archive: No such file or directory
https://bugs.launchpad.net/bugs/553007
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 379041] Re: espeak randomly fails to play

2010-03-15 Thread nic
this annoying bug also affect my laptop but the voice plays.. the
warning messages go away when the blue tooth dongle is attached tho
!...no solutions just confirmation

-- 
espeak randomly fails to play
https://bugs.launchpad.net/bugs/379041
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 516725] Re: acer 7720g laptop 3 spkr's 3rd being sub woofer not working

2010-02-19 Thread nic
after researching this bug on-line it is comon to all 7720g with a sub-woofer 
on all Linux platforms. 
i have not found any solutions.
 perhaps contact with the alsa project directly would advance things!

-- 
acer 7720g laptop 3 spkr's 3rd being sub woofer not working 
https://bugs.launchpad.net/bugs/516725
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 492937] Re: network-manager-applet vanishes randomly

2010-02-18 Thread nic
hi Sam the bug affecting you is a little similar to mine but only
happens infrequently. and has not happened for a wile but has now taken
to hiding behind the blue-tooth applet icon lol.. my original symptoms
were..the applet seemed to hang trying to find  wifi signal the swirl of
the applet stops then a second later vanishes.. + i dont use hibernation
that often . i have rearranged the notification area in an attempt to
solve my hiding icon ( spaced them out ).. sorry not much help ! ..

-- 
network-manager-applet vanishes randomly
https://bugs.launchpad.net/bugs/492937
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 516725] Re: acer 7720g laptop 3 spkr's 3rd being sub woofer not working

2010-02-16 Thread nic
thanks for being patient!
i ran ( uname -r ) i was runing 2.6.31-20-generic !? (possibly after running 
aptitude lol ) 
i rebooted and ran  2.6.31-19-generic added the ppa:ubuntu-audio-dev/ppa to the 
software sources . 
apt-get install linux-alsa-driver-modules-2.6.31-19-generic
tested it no sound from sub 
rebooted  2.6.31-19-generic
ran alsamixer made sure no mutes and volumes up . 
no joy tho! 
any thoughts?

-- 
acer 7720g laptop 3 spkr's 3rd being sub woofer not working 
https://bugs.launchpad.net/bugs/516725
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 516725] Re: acer 7720g laptop 3 spkr's 3rd being sub woofer not working

2010-02-16 Thread nic
also when looking through alsamixer the display is showing for playback options 
. 
Master  PCM  Line In   Mic Boost  
 Beep Internal
where (master  beep) are mutable.. cant see how mic boost can be a playback 
option.. 
do you think it could be a external amp not turned on for the speaker ?

-- 
acer 7720g laptop 3 spkr's 3rd being sub woofer not working 
https://bugs.launchpad.net/bugs/516725
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 516725] Re: acer 7720g laptop 3 spkr's 3rd being sub woofer not working

2010-02-15 Thread nic
got the -proposed repo enabled updated , dist-upgraded ..

alas same problem no sound from bass speaker looking on the web all
aspire7720g with this problem

question could it be that one of the inputs in asla is the bass speaker?
as looking in aslamixer there's alot of inputs etc

-- 
acer 7720g laptop 3 spkr's 3rd being sub woofer not working 
https://bugs.launchpad.net/bugs/516725
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 516725] Re: acer 7720g laptop 3 spkr's 3rd being sub woofer not working

2010-02-05 Thread nic
hi yeah installed the backport linux-backports-modules-alsa-karmic-generic, 
rebooted .. first there was no sound at all, then i did a update got the sound 
but  no bass through speaker ..  i found in alsamixer  alot of extras tho  
  -master-  -pcm-  -line in-  -mic boos-  -captur-  -beep-  
-digital-  -input  so-  -internal-

but no bass through bottom speaker

-- 
acer 7720g laptop 3 spkr's 3rd being sub woofer not working 
https://bugs.launchpad.net/bugs/516725
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 516725] apport-collect data

2010-02-05 Thread nic
AplayDevices:
  List of PLAYBACK Hardware Devices 
 card 0: Intel [HDA Intel], device 0: ALC268 Analog [ALC268 Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
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:  bot2087 F pulseaudio
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xdb30 irq 31'
   Mixer name   : 'Realtek ALC268'
   Components   : 'HDA:10ec0268,1025011e,0013 
HDA:14f12c06,1025011e,0010'
   Controls  : 12
   Simple ctrls  : 9
DistroRelease: Ubuntu 9.10
NonfreeKernelModules: nvidia
Package: alsa-driver (not installed)
ProcEnviron:
 SHELL=/bin/bash
 LANG=en_GB.UTF-8
 LANGUAGE=en_GB.UTF-8
ProcVersionSignature: Ubuntu 2.6.31-19.56-generic
Uname: Linux 2.6.31-19-generic i686
UserGroups: adm admin audio cdrom dialout dip fax floppy fuse lpadmin netdev 
plugdev sambashare scanner tape video

-- 
acer 7720g laptop 3 spkr's 3rd being sub woofer not working 
https://bugs.launchpad.net/bugs/516725
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 516725] AlsaDevices.txt

2010-02-05 Thread nic

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

-- 
acer 7720g laptop 3 spkr's 3rd being sub woofer not working 
https://bugs.launchpad.net/bugs/516725
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 516725] BootDmesg.txt

2010-02-05 Thread nic

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

-- 
acer 7720g laptop 3 spkr's 3rd being sub woofer not working 
https://bugs.launchpad.net/bugs/516725
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 516725] Card0.Amixer.values.txt

2010-02-05 Thread nic

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

-- 
acer 7720g laptop 3 spkr's 3rd being sub woofer not working 
https://bugs.launchpad.net/bugs/516725
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 516725] Card0.Codecs.codec.0.txt

2010-02-05 Thread nic

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

-- 
acer 7720g laptop 3 spkr's 3rd being sub woofer not working 
https://bugs.launchpad.net/bugs/516725
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 516725] Card0.Codecs.codec.1.txt

2010-02-05 Thread nic

** Attachment added: Card0.Codecs.codec.1.txt
   http://launchpadlibrarian.net/38792334/Card0.Codecs.codec.1.txt

-- 
acer 7720g laptop 3 spkr's 3rd being sub woofer not working 
https://bugs.launchpad.net/bugs/516725
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 516725] CurrentDmesg.txt

2010-02-05 Thread nic

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

-- 
acer 7720g laptop 3 spkr's 3rd being sub woofer not working 
https://bugs.launchpad.net/bugs/516725
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 516725] PciMultimedia.txt

2010-02-05 Thread nic

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

-- 
acer 7720g laptop 3 spkr's 3rd being sub woofer not working 
https://bugs.launchpad.net/bugs/516725
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   >