[Bug 1976166] [NEW] An error leading to crash/clash in the execution of the programme

2022-05-28 Thread AG
Public bug reported:

There was a crash while upgrading the Ubuntu over terminal

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: ubuntu-release-upgrader-core 1:20.04.38
ProcVersionSignature: Ubuntu 5.13.0-44.49~20.04.1-generic 5.13.19
Uname: Linux 5.13.0-44-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.24
Architecture: amd64
CasperMD5CheckResult: skip
CrashDB: ubuntu
Date: Sun May 29 00:21:36 2022
InstallationDate: Installed on 2020-12-04 (540 days ago)
InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=en_IN:en
 TERM=xterm-256color
 PATH=(custom, no user)
 LANG=en_IN
 SHELL=/bin/bash
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to focal on 2022-05-28 (0 days ago)
VarLogDistupgradeAptlog:
 Log time: 2022-05-29 00:17:50.559897
 Log time: 2022-05-29 00:18:12.281804
 Log time: 2022-05-29 00:21:36.466567
 Log time: 2022-05-29 00:21:39.227852
mtime.conffile..etc.update-manager.release-upgrades: 2022-05-29T00:06:55.796722

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


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

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

Title:
  An error leading to crash/clash in the execution of the programme

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


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

[Bug 1635463] Re: pip freeze includes "pkg-resources==0.0.0"

2022-05-04 Thread B AG
I notice earlier in this issue, people were mentioning "pkg-
resources==0.0.0", whereas I'm seeing "pkg_resources==0.0.0". That's
interesting.

Also, this "pkg_resources==0.0.0" seems to show up specifically when
installing a *different version* of pip -- not necessarily the *latest*
version. Here we see that it doesn't show up when installing new
versions of setuptools or wheel, but it does show up when installing an
old version of pip:

$ python3 -m venv temp_env && . temp_env/bin/activate
(temp_env) $ pip install -U setuptools
Collecting setuptools
  Using cached setuptools-62.1.0-py3-none-any.whl (1.1 MB)
Installing collected packages: setuptools
  Attempting uninstall: setuptools
Found existing installation: setuptools 44.0.0
Uninstalling setuptools-44.0.0:
  Successfully uninstalled setuptools-44.0.0
 Successfully installed setuptools-62.1.0
(temp_env) $ pip freeze
(temp_env) $ pip install -U wheel
Collecting wheel
  Using cached wheel-0.37.1-py2.py3-none-any.whl (35 kB)
Installing collected packages: wheel
Successfully installed wheel-0.37.1
(temp_env) $ pip freeze
(temp_env) $ pip install pip==9.0.3
Collecting pip==9.0.3
  Using cached pip-9.0.3-py2.py3-none-any.whl (1.4 MB)
Installing collected packages: pip
  Attempting uninstall: pip
Found existing installation: pip 20.0.2
Uninstalling pip-20.0.2:
  Successfully uninstalled pip-20.0.2
Successfully installed pip-9.0.3
(temp_env) $ pip freeze
pkg-resources==0.0.0
You are using pip version 9.0.3, however version 22.0.4 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.


^ Only the very last `pip freeze` outputs "pkg-resources==0.0.0".
Also, uninstalling pkg_resources seems to permanently fix the issue:


$ pip install -U pip
Collecting pip
  Using cached pip-22.0.4-py3-none-any.whl (2.1 MB)
Installing collected packages: pip
  Attempting uninstall: pip
Found existing installation: pip 20.0.2
Uninstalling pip-20.0.2:
  Successfully uninstalled pip-20.0.2
pipSuccessfully installed pip-22.0.4
(temp_env) $ pip freeze
pkg_resources==0.0.0
(temp_env) $ pip uninstall pkg_resources
Found existing installation: pkg_resources 0.0.0
Uninstalling pkg_resources-0.0.0:
  Would remove:

/home/zesty_bag/repos/zestyai/data-ingestion/temp_env/lib/python3.8/site-packages/pkg_resources-0.0.0.dist-info/*

/home/zesty_bag/repos/zestyai/data-ingestion/temp_env/lib/python3.8/site-packages/pkg_resources/*
Proceed (Y/n)? Y
  Successfully uninstalled pkg_resources-0.0.0
(temp_env) $ pip install pip~=20.0
Collecting pip~=20.0
  Using cached pip-20.3.4-py2.py3-none-any.whl (1.5 MB)
Installing collected packages: pip
  Attempting uninstall: pip
Found existing installation: pip 22.0.4
Uninstalling pip-22.0.4:
  Successfully uninstalled pip-22.0.4
Successfully installed pip-20.3.4
(temp_env) $ pip freeze
(temp_env) $ pip install -U pip
Requirement already satisfied: pip in ./temp_env/lib/python3.8/site-packages 
(20.3.4)
Collecting pip
  Using cached pip-22.0.4-py3-none-any.whl (2.1 MB)
Installing collected packages: pip
  Attempting uninstall: pip
Found existing installation: pip 20.3.4
Uninstalling pip-20.3.4:
  Successfully uninstalled pip-20.3.4
Successfully installed pip-22.0.4
(temp_env) $ pip freeze


^ So, after uninstalling pkg_resources, an installation of a different version 
of pip no longer causes "pkg_resources==0.0.0" to appear.

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

Title:
  pip freeze includes "pkg-resources==0.0.0"

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


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

[Bug 1635463] Re: pip freeze includes "pkg-resources==0.0.0"

2022-05-04 Thread B AG
This is an issue for me as well, on Pop_OS.
I created a virtualenv from the python3 I got from `apt install python3`, using 
`-m venv`.
Inside that virtualenv, `pip freeze` does not show `pkg_resources==0.0.0` until 
I upgrade pip (in my case, from `pip-20.0.2` to `pip-22.0.4`).


$ uname -a
Linux noo-lappy 5.16.11-76051611-generic 
#202202230823~1646248261~20.04~2b22243~dev-Ubuntu SMP PREEMPT Th x86_64 x86_64 
x86_64 GNU/Linux
$ python3 --version
Python 3.8.10
$ which python3
/usr/bin/python3
$ python3 -m venv test_env
. test$ . test_env/bin/activate
(test_env) $ pip freeze
pip(test_env) $ pip install -U pip
Collecting pip
  Using cached pip-22.0.4-py3-none-any.whl (2.1 MB)
Installing collected packages: pip
  Attempting uninstall: pip
Found existing installation: pip 20.0.2
Uninstalling pip-20.0.2:
  Successfully uninstalled pip-20.0.2
Successfully installed pip-22.0.4
(test_env) $ pip freeze
pkg_resources==0.0.0

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

Title:
  pip freeze includes "pkg-resources==0.0.0"

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


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

[Bug 1949565] Re: Cannot connect anymore to Azure Database for MySQL with 8.0.27-0ubuntu0.20.04

2022-02-09 Thread Entertainment Media Group AG
Just to clarify: We didn't continue to use the older build, this was
just a workaround to fix an immediate downtime after the upgrade. What
worked for us long term is to use the mariadb client instead, which is
unaffected and still works with Single Server Azure MySQL. This might
not be an option for everyone though - it's disappointing that neither
MySQL nor Microsoft are willing to address this issue.

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

Title:
  Cannot connect anymore to Azure Database for MySQL with
  8.0.27-0ubuntu0.20.04

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


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

[Bug 1949565] Re: Cannot connect anymore to Azure Database for MySQL with 8.0.27-0ubuntu0.20.04

2021-12-06 Thread Entertainment Media Group AG
You can download the specific version from launchpad:
https://launchpad.net/~ubuntu-security-
proposed/+archive/ubuntu/ppa/+build/21811814 (I don't think there's an
APT repository you can use for this, but I might be wrong)

What I ended up doing after the quick'n dirty downgrade workaround
though is to switch to the mariadb client instead, which is in the repo
and can connect to Azure MySQL without any issues.

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

Title:
  Cannot connect anymore to Azure Database for MySQL with
  8.0.27-0ubuntu0.20.04

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


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

[Bug 1949565] Re: Cannot connect anymore to Azure Database for MySQL with 8.0.27-0ubuntu0.20.04

2021-11-19 Thread Entertainment Media Group AG
Upstream bug: https://bugs.mysql.com/bug.php?id=105288

This regression seems to be independent of the OS and introduced in
8.0.27, versions <8.0.27 are unaffected (downgrading to
8.0.26-0ubuntu0.20.04.2 fixed it for me).

** Bug watch added: MySQL Bug System #105288
   http://bugs.mysql.com/bug.php?id=105288

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

Title:
  Cannot connect anymore to Azure Database for MySQL with
  8.0.27-0ubuntu0.20.04

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


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

[Bug 1926012] [NEW] installer could not install grub on nvme with windows-10 already installed

2021-04-24 Thread Sakis Ag
Public bug reported:

windows 10 installation preexistent. I added EFI, / and swap partitions
in the right of the 2 ntfs partitions of windows 10 and installer
crashed critically at grub installation. computer is thinkpad x1 carbon
5g

ProblemType: Bug
DistroRelease: Ubuntu 21.04
Package: ubiquity 21.04.19
ProcVersionSignature: Ubuntu 5.11.0-16.17-generic 5.11.12
Uname: Linux 5.11.0-16-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu65
Architecture: amd64
CasperMD5CheckResult: pass
CasperVersion: 1.461
CurrentDesktop: ubuntu:GNOME
Date: Sat Apr 24 15:09:04 2021
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
maybe-ubiquity quiet splash ---
LiveMediaBuild: Ubuntu 21.04 "Hirsute Hippo" - Release amd64 (20210420)
ProcEnviron:
 LANGUAGE=en_US.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 LC_NUMERIC=C.UTF-8
RebootRequiredPkgs:
 linux-image-5.11.0-16-generic
 linux-base
SourcePackage: grub-installer
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug hirsute ubiquity-21.04.19 ubuntu

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

Title:
  installer could not install grub on nvme with windows-10 already
  installed

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

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

[Bug 1912280] [NEW] package linux-image-5.4.0-58-generic 5.4.0-58.64 failed to install/upgrade: installed linux-image-5.4.0-58-generic package pre-removal script subprocess returned error exit status

2021-01-18 Thread AG Cilantro
Public bug reported:

I rebooted my computer after doing an update on another kernel and
received this error.

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: linux-image-5.4.0-58-generic 5.4.0-58.64
ProcVersionSignature: Ubuntu 5.8.0-38.43~20.04.1-generic 5.8.18
Uname: Linux 5.8.0-38-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu27.14
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  gdm1058 F pulseaudio
  steve  1643 F pulseaudio
CasperMD5CheckResult: skip
Date: Mon Jan 18 16:08:22 2021
ErrorMessage: installed linux-image-5.4.0-58-generic package pre-removal script 
subprocess returned error exit status 1
MachineType: LENOVO 81X1
ProcFB: 0 i915drmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.8.0-38-generic 
root=UUID=7c8dd407-bec0-448c-a227-66ab1bbdb44f ro quiet splash
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
Python3Details: /usr/bin/python3.8, Python 3.8.5, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: N/A
RelatedPackageVersions: grub-pc 2.04-1ubuntu26.7
SourcePackage: linux
Title: package linux-image-5.4.0-58-generic 5.4.0-58.64 failed to 
install/upgrade: installed linux-image-5.4.0-58-generic package pre-removal 
script subprocess returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 09/07/2020
dmi.bios.release: 1.30
dmi.bios.vendor: LENOVO
dmi.bios.version: ECCN30WW
dmi.board.asset.tag: No Asset Tag
dmi.board.name: LNVNB161216
dmi.board.vendor: LENOVO
dmi.board.version: SDK0J40709 WIN
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 31
dmi.chassis.vendor: LENOVO
dmi.chassis.version: IdeaPad Flex 5 14IIL05
dmi.ec.firmware.release: 1.25
dmi.modalias: 
dmi:bvnLENOVO:bvrECCN30WW:bd09/07/2020:br1.30:efr1.25:svnLENOVO:pn81X1:pvrIdeaPadFlex514IIL05:rvnLENOVO:rnLNVNB161216:rvrSDK0J40709WIN:cvnLENOVO:ct31:cvrIdeaPadFlex514IIL05:
dmi.product.family: IdeaPad Flex 5 14IIL05
dmi.product.name: 81X1
dmi.product.sku: LENOVO_MT_81X1_BU_idea_FM_IdeaPad Flex 5 14IIL05
dmi.product.version: IdeaPad Flex 5 14IIL05
dmi.sys.vendor: LENOVO

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

Title:
  package linux-image-5.4.0-58-generic 5.4.0-58.64 failed to
  install/upgrade: installed linux-image-5.4.0-58-generic package pre-
  removal script subprocess returned error exit status 1

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

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

[Bug 1789121] [NEW] package libice6:i386 2:1.0.9-1 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configuration

2018-08-26 Thread AG
Public bug reported:

I don't know what this bug is, the bug report pop up just came up after
booting up

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: libice6:i386 2:1.0.9-1
ProcVersionSignature: Ubuntu 4.15.0-33.36~16.04.1-generic 4.15.18
Uname: Linux 4.15.0-33-generic x86_64
.tmp.unity_support_test.0:
 
ApportVersion: 2.20.1-0ubuntu2.18
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
Date: Sun Aug 26 05:08:51 2018
DistUpgraded: Fresh install
DistroCodename: xenial
DistroVariant: ubuntu
DuplicateSignature:
 package:libice6:i386:2:1.0.9-1
 Removing linux-modules-extra-4.15.0-32-generic (4.15.0-32.35~16.04.1) ...
 dpkg: error processing package libice6:i386 (--configure):
  package is in a very bad inconsistent state; you should
ErrorMessage: package is in a very bad inconsistent state; you should  
reinstall it before attempting configuration
GraphicsCard:
 Intel Corporation Sky Lake Integrated Graphics [8086:1912] (rev 06) (prog-if 
00 [VGA controller])
   Subsystem: Micro-Star International Co., Ltd. [MSI] Skylake Integrated 
Graphics [1462:7998]
InstallationDate: Installed on 2017-06-27 (424 days ago)
InstallationMedia: Ubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215.2)
MachineType: MSI MS-7998
PackageArchitecture: i386
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-33-generic 
root=UUID=0aba37dc-b7f1-4636-bdaa-8239a429f488 ro quiet splash
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.2
 apt  1.2.20
SourcePackage: libice
Title: package libice6:i386 2:1.0.9-1 failed to install/upgrade: package is in 
a very bad inconsistent state; you should  reinstall it before attempting 
configuration
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 04/24/2017
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 1.B0
dmi.board.asset.tag: Default string
dmi.board.name: Z170A SLI PLUS (MS-7998)
dmi.board.vendor: MSI
dmi.board.version: 1.0
dmi.chassis.asset.tag: Default string
dmi.chassis.type: 3
dmi.chassis.vendor: MSI
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.B0:bd04/24/2017:svnMSI:pnMS-7998:pvr1.0:rvnMSI:rnZ170ASLIPLUS(MS-7998):rvr1.0:cvnMSI:ct3:cvr1.0:
dmi.product.family: Default string
dmi.product.name: MS-7998
dmi.product.version: 1.0
dmi.sys.vendor: MSI
version.compiz: compiz 1:0.9.12.2+16.04.20160823-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.70-1~ubuntu16.04.1
version.libgl1-mesa-dri: libgl1-mesa-dri 12.0.6-0ubuntu0.16.04.1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 12.0.6-0ubuntu0.16.04.1
version.xserver-xorg-core: xserver-xorg-core N/A
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
xserver.bootTime: Sun Aug 26 15:18:42 2018
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.18.4-1ubuntu6.1~16.04.2
xserver.video_driver: modeset

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


** Tags: apport-package compiz-0.9 i386 ubuntu xenial

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

Title:
  package libice6:i386 2:1.0.9-1 failed to install/upgrade: package is
  in a very bad inconsistent state; you should  reinstall it before
  attempting configuration

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

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

[Bug 1708674] [NEW] Haveged with AppArmor issue on Upstart

2017-08-04 Thread Automatic Server AG
Public bug reported:

If you install upstart-sysv the service haveged won't start anymore
cause the apparmor profile is missing a rule for the PID file.

Aug  4 16:16:24 containertest1 kernel: [  160.141325] audit: type=1400
audit(1501856184.508:120): apparmor="DENIED" operation="mknod"
profile="/usr/sbin/haveged" name="/run/haveged.pid" pid=7628
comm="haveged" requested_mask="c" denied_mask="c" fsuid=0 ouid=0

This problem can be fixed with add a line to the apparmor profile
/etc/apparmor.d/usr.sbin.haveged:

/run/haveged.pid rw,

Full version of profile:



# Last Modified: Fri Aug 21 15:23:17 2015
#include 

/usr/sbin/haveged {
  #include 

  # Required for ioctl RNDADDENTROPY
  capability sys_admin,

  owner @{PROC}/@{pid}/status r,

  @{PROC}/sys/kernel/osrelease r,
  @{PROC}/sys/kernel/random/poolsize r,
  @{PROC}/sys/kernel/random/write_wakeup_threshold w,
  /dev/random w,

  /sys/devices/system/cpu/ r,
  /sys/devices/system/cpu/cpu*/cache/ r,
  /sys/devices/system/cpu/cpu*/cache/index*/{type,size,level} r,
  /usr/sbin/haveged mr,

  /run/haveged.pid rw,

  #include 
}



You can reload the profile with a reboot or apparmor_parser -r
/etc/apparmor.d/usr.sbin.haveged

** Affects: haveged (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/1708674

Title:
  Haveged with AppArmor issue on Upstart

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

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


[Bug 1204530] Re: yppasswd results in a segmentation fault when run on clients or server

2016-02-01 Thread AG
Same here:  100+ users relying on NIS on Trusty. Fix would be highly
appreciated.

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

Title:
  yppasswd results in a segmentation fault when run on clients or server

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nis/+bug/1204530/+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 1204530] Re: yppasswd results in a segmentation fault when run on clients or server

2016-02-01 Thread AG
Same here:  100+ users relying on NIS on Trusty. Fix would be highly
appreciated.

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

Title:
  yppasswd results in a segmentation fault when run on clients or server

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

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


[Bug 1536605] [NEW] Machine freezes locally, Xorg EQ overflow

2016-01-21 Thread AG
Public bug reported:

We observe spontaneous and not (yet) reproducible freezes on many of our
heterogeneous PCs. A machine freezes such that it cannot be accessed
locally anymore (keyboard dead, screen black or with last image,
sometimes mouse can be moved but no action on clicks) but we have full
access via ssh. There are no heavy processes or such running. Freeze
happens sometime during usage but also during screen-lock without
background activity.

We have observed the problem
 * on Ubuntu 12.04 and 14.04, 
 * on PCs running a multitude of graphics adapters (nvidia, ati, intel) 
 * on PCs running different versions of e.g. the nvidia driver

The only log file with some information related to this is
/var/log/Xorg.0.log where we find

==>>===
(EE) [mi] EQ overflowing.  Additional events will be discarded until existing
events are processed.
(EE)
(EE) Backtrace:
(EE) 0: /usr/bin/X (xorg_backtrace+0x48) [0x7f1bd1327848]
(EE) 1: /usr/bin/X (mieqEnqueue+0x22b) [0x7f1bd130983b]
(EE) 2: /usr/bin/X (QueuePointerEvents+0x52) [0x7f1bd11eaf72]
(EE) 3: /usr/lib/xorg/modules/input/evdev_drv.so (0x7f1bc8621000+0x57fd)
[0x7f1bc86267fd]
(EE) 4: /usr/bin/X (0x7f1bd117e000+0x93518) [0x7f1bd1211518]
(EE) 5: /usr/bin/X (0x7f1bd117e000+0xbbc90) [0x7f1bd1239c90]
(EE) 6: /lib/x86_64-linux-gnu/libpthread.so.0 (0x7f1bd027a000+0x10340)
[0x7f1bd028a340]
(EE) 7: /lib/x86_64-linux-gnu/libc.so.6 (__poll+0x10) [0x7f1bced86110]
(EE) 8: /lib/x86_64-linux-gnu/libc.so.6 (0x7f1bcec99000+0x1284a0) 
[0x7f1bcedc14a0]
(EE) 9: /lib/x86_64-linux-gnu/libnsl.so.1 (0x7f1bc7ff7000+0x515f) 
[0x7f1bc7ffc15f]
(EE) 10: /lib/x86_64-linux-gnu/libnsl.so.1 (yp_match+0xb2) [0x7f1bc7ffc6a2]
(EE) 11: /lib/x86_64-linux-gnu/libnss_nis.so.2 (_nss_nis_getpwnam_r+0x68)
[0x7f1bc7df0a98]
(EE) 12: /lib/x86_64-linux-gnu/libnss_compat.so.2 (0x7f1bc8211000+0x156c)
[0x7f1bc821256c]
(EE) 13: /lib/x86_64-linux-gnu/libnss_compat.so.2 (_nss_compat_getpwnam_r+0x3f7)
[0x7f1bc8215617]
(EE) 14: /lib/x86_64-linux-gnu/libc.so.6 (getpwnam_r+0xdd) [0x7f1bced5906d]
(EE) 15: /lib/x86_64-linux-gnu/libc.so.6 (getpwnam+0x7f) [0x7f1bced589ff]
(EE) 16: /usr/bin/X (0x7f1bd117e000+0x1a7ae5) [0x7f1bd1325ae5]
(EE) 17: /usr/bin/X (0x7f1bd117e000+0x1a8ac7) [0x7f1bd1326ac7]
(EE) 18: /usr/bin/X (InvalidHost+0x170) [0x7f1bd1327180]
(EE) 19: /usr/bin/X (ClientAuthorized+0x125) [0x7f1bd1328905]
(EE) 20: /usr/bin/X (0x7f1bd117e000+0x559ac) [0x7f1bd11d39ac]
(EE) 21: /usr/bin/X (0x7f1bd117e000+0x55f0e) [0x7f1bd11d3f0e]
(EE) 22: /usr/bin/X (0x7f1bd117e000+0x59d9a) [0x7f1bd11d7d9a]
(EE) 23: /lib/x86_64-linux-gnu/libc.so.6 (__libc_start_main+0xf5) 
[0x7f1bcecbaec5]
(EE) 24: /usr/bin/X (0x7f1bd117e000+0x451ee) [0x7f1bd11c31ee]
(EE)
(EE) [mi] These backtraces from mieqEnqueue may point to a culprit higher up the
stack.
(EE) [mi] mieq is *NOT* the cause.  It is a victim.
(EE) [mi] EQ overflow continuing.  100 events have been dropped.
==>>===


That then counts in steps of 100 up to 1000 and then the machine is frozen 
locally. Different to other bug reports on similar issues, it appears here that 
libnss_nis.so.2 and libnss_compat.so.2 are involved (user login is via yp).

Any workaround would be appreciated. I'm happy to provide more details
if required.

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


** Tags: freeze graphics lightning xorg

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

Title:
  Machine freezes locally, Xorg EQ overflow

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

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


[Bug 1536605] Re: Machine freezes locally, Xorg EQ overflow

2016-01-21 Thread AG
Please note: The problem does NOT only apply to nvidia drivers, it might
not even be related to a graphics driver at all!.

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

Title:
  Machine freezes locally, Xorg EQ overflow

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

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


[Bug 1523917] [NEW] Macbook Air 6.2 suspend immediately resumes

2015-12-08 Thread AG
Public bug reported:

Most of the times laptop resumes immediately. Opening the lid,
suspending manually, and closing the lid works sometimes

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: linux-image-3.19.0-39-generic 3.19.0-39.44
ProcVersionSignature: Ubuntu 3.19.0-39.44-generic 3.19.8-ckt9
Uname: Linux 3.19.0-39-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.17.2-0ubuntu1.8
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  alex   2057 F pulseaudio
 /dev/snd/controlC1:  alex   2057 F pulseaudio
CurrentDesktop: Unity
Date: Tue Dec  8 08:29:03 2015
EcryptfsInUse: Yes
InstallationDate: Installed on 2015-07-02 (159 days ago)
InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
Lsusb:
 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
 Bus 001 Device 003: ID 05ac:0291 Apple, Inc. 
 Bus 001 Device 006: ID 05ac:828f Apple, Inc. 
 Bus 001 Device 002: ID 0a5c:4500 Broadcom Corp. BCM2046B1 USB 2.0 Hub (part of 
BCM2046 Bluetooth)
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: Apple Inc. MacBookAir6,2
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-39-generic.efi.signed 
root=UUID=e455bef3-753f-48d3-8a59-a01d67dff4d6 ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-3.19.0-39-generic N/A
 linux-backports-modules-3.19.0-39-generic  N/A
 linux-firmware 1.143.7
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 09/08/2015
dmi.bios.vendor: Apple Inc.
dmi.bios.version: MBA61.88Z.0099.B20.1509081314
dmi.board.asset.tag: Base Board Asset Tag#
dmi.board.name: Mac-7DF21CB3ED6977E5
dmi.board.vendor: Apple Inc.
dmi.board.version: MacBookAir6,2
dmi.chassis.type: 10
dmi.chassis.vendor: Apple Inc.
dmi.chassis.version: Mac-7DF21CB3ED6977E5
dmi.modalias: 
dmi:bvnAppleInc.:bvrMBA61.88Z.0099.B20.1509081314:bd09/08/2015:svnAppleInc.:pnMacBookAir6,2:pvr1.0:rvnAppleInc.:rnMac-7DF21CB3ED6977E5:rvrMacBookAir6,2:cvnAppleInc.:ct10:cvrMac-7DF21CB3ED6977E5:
dmi.product.name: MacBookAir6,2
dmi.product.version: 1.0
dmi.sys.vendor: Apple Inc.

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


** Tags: amd64 apport-bug vivid

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

Title:
  Macbook Air 6.2 suspend immediately resumes

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

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


[Bug 1433655] Re: Network icons disabled and inconsistent behavior in 14.04

2015-03-26 Thread AG
** Package changed: ubuntu = glib-networking (Ubuntu)

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

Title:
  Network icons disabled and inconsistent behavior in 14.04

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

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


[Bug 1433655] Re: Network icons disabled and inconsistent behavior in 14.04

2015-03-18 Thread AG
** Attachment added: desktop-2-network-icons-expanded.png
   
https://bugs.launchpad.net/ubuntu/+bug/1433655/+attachment/4349050/+files/desktop-2-network-icons-expanded.png

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

Title:
  Network icons disabled and inconsistent behavior in 14.04

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

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


[Bug 1433655] Re: Network icons disabled and inconsistent behavior in 14.04

2015-03-18 Thread AG
cat /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback

#auto dsl-provider
#iface dsl-provider inet ppp
#pre-up /sbin/ifconfig eth0 up # line maintained by pppoeconf
#provider dsl-provider

auto eth0
#iface eth0 inet manual
iface eth0 inet dhcp

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

Title:
  Network icons disabled and inconsistent behavior in 14.04

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

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


[Bug 1433655] [NEW] Network icons disabled and inconsistent behavior in 14.04

2015-03-18 Thread AG
Public bug reported:

I had a stable working ubuntu 64 bit 14.04. I had wired, wireless and mobile 
broadband configured and working on it. (airtel and tata photon plus 4G and 3G 
dongles configured respectively.)
I could select the connection from the network icon at top of the screen and 
choose whichever connection to use.

Yesterday I tried a ZTE dongle. It was not detected. So i installed Vodafone 
application it came with. After that I could use the Vodafone application 
dialer and use internet.
Then i rebooted machine. Now I am observing following:
1)  while booting i get Booting system without full network and waiting for 
network configuration
2) did not get network icon in the menu.
3) system icon in has disappered ie left pane.

i tried few things like lightdm restart

ZTE donge details:
detected as : vodafone 19d2:1237 ZTE WCDMA Technologies
model : zte k 4201 I

Now i am getting to see two network icons in the top panel.
Networking and WiFi menu are disabled.

** Affects: ubuntu
 Importance: Undecided
 Status: New

** Attachment added: desktop-2-network-icons.png
   
https://bugs.launchpad.net/bugs/1433655/+attachment/4349049/+files/desktop-2-network-icons.png

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

Title:
  Network icons disabled and inconsistent behavior in 14.04

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

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


[Bug 1204530] Re: yppasswd results in a segmentation fault when run on clients or server

2015-02-15 Thread AG
We have the same problem on our Ubuntu 14.04 installations (100 users
and no-one can change password; that is a security issue). We do not
intend to patch such basic packages like nis ourselves - at least I
thought we would not need  to because we run Ubuntu LTS. As a temporary
workaround we have installed an old Ubuntu 12.04 machine.

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

Title:
  yppasswd results in a segmentation fault when run on clients or server

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

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


[Bug 1204530] Re: yppasswd results in a segmentation fault when run on clients or server

2015-02-15 Thread AG
We have the same problem on our Ubuntu 14.04 installations (100 users
and no-one can change password; that is a security issue). We do not
intend to patch such basic packages like nis ourselves - at least I
thought we would not need  to because we run Ubuntu LTS. As a temporary
workaround we have installed an old Ubuntu 12.04 machine.

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

Title:
  yppasswd results in a segmentation fault when run on clients or server

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nis/+bug/1204530/+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 1029656] Re: nslcd does not start on boot everytime

2014-05-28 Thread linuxrrze-ag
We could reproduce this issues and after 13 reboot attempts on a VM the nslcd 
wasn't running but the LDAP-Search succeded.
The relevant parts of the syslog and nslcd.ldapsearch.boot.log are attached.
If you need more information on this let us know.


** Attachment added: log
   
https://bugs.launchpad.net/ubuntu/+source/nss-pam-ldapd/+bug/1029656/+attachment/4121465/+files/log

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

Title:
  nslcd does not start on boot everytime

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nss-pam-ldapd/+bug/1029656/+subscriptions

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


[Bug 1219908] Re: [needs-packaging] All nvidia-current and nvidia-updates need repackaging to mirror official Nvidia releases...

2013-11-05 Thread AG Restringere
Thank you for releasing this fix, it's appreciated.

Recently I upgraded to 13.10 from 13.04 on my home machine a Dell Vostro
with a 'GeForce 8600M GT/PCIe/SSE2' and so far with the 319.60
'nvidia-319-updates' drivers I've had the best graphics and Unity/Compiz
performance and stability I've ever had using Ubuntu, it's very crisp.
I will have to test this further and see what happens when I put the
13.10 system under more diverse OpenGL and graphics use case scenarios.

For the 12.04 LTS I will have to install some test environments for the
'nvidia-319-updates' and 'nvidia-304-updates' release on Precise and do
some testing so I can relay my experiences and results.

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

Title:
  [needs-packaging] All nvidia-current and nvidia-updates need
  repackaging to mirror official Nvidia releases...

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

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


[Bug 1221304] Re: Global app-menu is missing from Unity panel...

2013-10-16 Thread AG Restringere
Since I downgraded to 13.04 I will have to wait to upgrade after the
stable 13.10 release is available and re-test, generate the logs and see
if this still exists.

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

Title:
  Global app-menu is missing from Unity panel...

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

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


[Bug 1219908] Re: [needs-packaging] All nvidia-current and nvidia-updates need repackaging to mirror official Nvidia releases...

2013-09-09 Thread AG Restringere
This is about all versions still in their support period and have not
reached EOL meaning: 12.04, 12.10, 13.04 and 13.10...

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

Title:
  [needs-packaging] All nvidia-current and nvidia-updates need
  repackaging to mirror official Nvidia releases...

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

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


[Bug 1219908] Re: [needs-packaging] All nvidia-current and nvidia-updates need repackaging to mirror official Nvidia releases...

2013-09-09 Thread AG Restringere
Alberto:
- Okay, as long as the latest Long Lived Branch gets to LTS and 13.04, 13.10 
and this is updated more rapidly - in this case 319.49 - then I can consider 
this bug closed.
- Where is the official NVIDIA PPA?

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

Title:
  [needs-packaging] All nvidia-current and nvidia-updates need
  repackaging to mirror official Nvidia releases...

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

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


[Bug 801229] Re: xorg GPU freezing

2013-09-05 Thread AG Restringere
Thank you for reporting this bug to Ubuntu. RELEASE reached EOL on DATE.
See this document for currently supported Ubuntu releases: 
https://wiki.ubuntu.com/Releases 

Do feel free to report any other bugs you may find.

** Changed in: xorg-server (Ubuntu)
   Status: New = Invalid

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

Title:
  xorg GPU freezing

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

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


[Bug 1103372] Re: [Dell Vostro 260] nvidia-experimental-310 does not support Nvidia GeForce GT 520

2013-09-05 Thread AG Restringere
Thank you for taking the time to report this bug and helping to make
Ubuntu better. However, according to this report, you are not using the
most recent version of this package for your Ubuntu release. Please
upgrade to the most recent version and let us know if you are still
having this issue. Thanks in advance.

Please use the additional drivers tool and select the 'nvidia-313'
driver and retest the problem and see if that solves it.

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

Title:
  [Dell Vostro 260] nvidia-experimental-310 does not support Nvidia
  GeForce GT 520

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

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


[Bug 1066245] Re: Graphics some times runs very slow

2013-09-05 Thread AG Restringere
** Changed in: xserver-xorg-video-nouveau (Ubuntu)
   Status: New = Invalid

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

Title:
  Graphics some times runs very slow

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1066245/+subscriptions

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


[Bug 921321] Re: nouveau: dark screen after suspend/resume

2013-09-05 Thread AG Restringere
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Please execute the following command, as it will
automatically gather debugging information, in a terminal:

$ apport-collect BUGNUMBER

When reporting bugs in the future please use apport by using 'ubuntu-
bug' and the name of the package affected. You can learn more about this
functionality at https://wiki.ubuntu.com/ReportingBugs.

** Changed in: xserver-xorg-video-nouveau (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  nouveau: dark screen after suspend/resume

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

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


[Bug 921321] Re: nouveau: dark screen after suspend/resume

2013-09-05 Thread AG Restringere
This bug report is being closed due to your last comment:

although I am unable to test anymore as my laptop has been replaced

For future reference you can manage the status of your own bugs by
clicking on the current status in the yellow line and then choosing a
new status in the revealed drop down box. You can learn more about bug
statuses at https://wiki.ubuntu.com/Bugs/Status. Thank you again for
taking the time to report this bug and helping to make Ubuntu better.
Please submit any future bugs you may find.

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

Title:
  nouveau: dark screen after suspend/resume

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

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


[Bug 1221304] [NEW] Global app-menu is missing from Unity panel...

2013-09-05 Thread AG Restringere
Public bug reported:

Upgraded to 13.10 and there's a strange issue with the global menu - the
one in the panel - it isn't consistent for all applications.  For
example GIMP is missing it's menu at the top of the panel and instead
has it below the panel. Screenshot included. wanted to know if it's
supposed to be that way or if there's a fix, thanks...

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: unity 7.1.0+13.10.20130829.1-0ubuntu1
ProcVersionSignature: Ubuntu 3.11.0-4.9-generic 3.11.0-rc7
Uname: Linux 3.11.0-4-generic x86_64
NonfreeKernelModules: nvidia
.proc.driver.nvidia.gpus.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/0'
.proc.driver.nvidia.registry: Binary: 
.proc.driver.nvidia.version:
 NVRM version: NVIDIA UNIX x86_64 Kernel Module  319.32  Wed Jun 19 15:51:20 
PDT 2013
 GCC version:  gcc version 4.8.1 (Ubuntu/Linaro 4.8.1-9ubuntu1)
.proc.driver.nvidia.warnings.fbdev:
 Your system is not currently configured to drive a VGA console
 on the primary VGA device. The NVIDIA Linux graphics driver
 requires the use of a text-mode VGA console. Use of other console
 drivers including, but not limited to, vesafb, may result in
 corruption and stability problems, and is not supported.
.tmp.unity.support.test.0:
 
ApportVersion: 2.12.1-0ubuntu3
Architecture: amd64
CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,unitymtgrabhandles,workarounds,scale,expo,ezoom,unityshell]
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
Date: Thu Sep  5 11:56:46 2013
DistUpgraded: 2013-09-04 18:37:41,066 DEBUG enabling apt cron job
DistroCodename: saucy
DistroVariant: ubuntu
GraphicsCard:
 NVIDIA Corporation G86 [GeForce 8500 GT] [10de:0421] (rev a1) (prog-if 00 [VGA 
controller])
   Subsystem: ASUSTeK Computer Inc. Device [1043:050e]
InstallationDate: Installed on 2013-01-16 (232 days ago)
InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release amd64 
(20120823.1)
MachineType: HP-Pavilion GC674AA-ABA m8120n
MarkForUpload: True
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-4-generic 
root=UUID=73dd09de-3940-4451-a160-8a036cc025a3 ro quiet splash vt.handoff=7
SourcePackage: unity
UpgradeStatus: Upgraded to saucy on 2013-09-04 (0 days ago)
dmi.bios.date: 06/08/2007
dmi.bios.vendor: Phoenix Technologies, LTD
dmi.bios.version: 5.09
dmi.board.name: Basswood3G
dmi.board.vendor: ASUSTek Computer INC.
dmi.board.version: 1.05
dmi.chassis.type: 3
dmi.chassis.vendor: Hewlett-Packard
dmi.chassis.version: 
dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvr5.09:bd06/08/2007:svnHP-Pavilion:pnGC674AA-ABAm8120n:pvr:rvnASUSTekComputerINC.:rnBasswood3G:rvr1.05:cvnHewlett-Packard:ct3:cvr:
dmi.product.name: GC674AA-ABA m8120n
dmi.sys.vendor: HP-Pavilion
version.compiz: compiz 1:0.9.10+13.10.20130828.2-0ubuntu1
version.ia32-libs: ia32-libs 20090808ubuntu36
version.libdrm2: libdrm2 2.4.46-1
version.libgl1-mesa-dri: libgl1-mesa-dri 9.2-1ubuntu1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 9.2-1ubuntu1
version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.14.2.901-2ubuntu4
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu3
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.21.14-4ubuntu3
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
xserver.bootTime: Thu Sep  5 10:26:27 2013
xserver.configfile: default
xserver.devices:
 inputPower Button KEYBOARD, id 6
 inputPower Button KEYBOARD, id 7
 inputLogitech Logitech USB Keyboard KEYBOARD, id 8
 inputImPS/2 Logitech Wheel Mouse MOUSE, id 9
xserver.errors:
 Failed to load module nouveau (module does not exist, 0)
 Failed to load module modesetting (module does not exist, 0)
 Failed to load module nouveau (module does not exist, 0)
 Failed to load module modesetting (module does not exist, 0)
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 
xserver.version: 2:1.14.2.901-2ubuntu4

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


** Tags: amd64 apport-bug compiz-0.9 possible-manual-nvidia-install saucy 
third-party-packages ubuntu

** Attachment added: GIMP screenshot
   
https://bugs.launchpad.net/bugs/1221304/+attachment/3804086/+files/Screenshot%20from%202013-09-05%2011%3A37%3A10.png

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

Title:
  Global app-menu is missing from Unity panel...

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

-- 
ubuntu-bugs mailing list

[Bug 1219908] [NEW] All nvidia-current and nvidia-updates need repackaging to mirror official Nvidia releases...

2013-09-02 Thread AG Restringere
Public bug reported:

The official Nvidia long-lived-branch stable driver is now 319.49.  That
means that the recommended official driver is 319.49 and should be used
by all Nvidia users except those using old legacy devices.  There are
important fixes that are in this driver and the previous 319.17 that
affect Chromium browser users especially:

+ Fixed a memory leak that occurred when destroying a GLX window but not
its associated X window.

These can crash machines using Nvidia GPU's according to a Chromium-bug
http://crbug.com/145600 NVIDIA linux drivers are unstable when using
multiple Open GL contexts and with low memory.: and if check
`about:gpu` you will see this is a major reason most if not all Nvidia
GPU's are currently blacklisted.

Also, when using Windows 7 I am liberty to install any driver version I
want, keeping my machine up to date with the latest official Nvidia
fixes.  With Ubuntu I'm stuck with older drivers that affect performance
and contain old bugs that have already been fixed.  This leads to a
lower quality experience than with Windows.  Drivers need to be kept
current with upstream in my opinion.  For the time being I have been
cherry-picking *.deb packages from X-Org-Edgers so that I can replicate
that Windows experience and it's been working.  However, all Ubuntu
users should have this experience as well and most do not know how to
manually install packages using DPKG so it is out of their reach.

The current Nvidia driver versions are as follows:
http://www.nvidia.com/object/unix.html

Long Lived Branch version: 319.49 -- `nvidia-current` should be here as stable
Short Lived Branch version: 325.15 -- `nvidia-updates` should be here as 
unstable
Legacy GPU version (304.xx series): 304.108 -- `nvidia-current-legacy` should 
be here.

This situation has to be solved, Ubuntu cannot be so far behind the
curve that it cannot keep Nvidia drivers fresh and in sync with the
upstream Nvidia release schedule...

** Affects: nvidia
 Importance: Undecided
 Status: New

** Affects: nvidia-drivers-ubuntu
 Importance: Undecided
 Assignee: Alberto Milone (albertomilone)
 Status: New

** Affects: nvidia-graphics-drivers (Ubuntu)
 Importance: Undecided
 Assignee: AG Restringere (ag-restringere)
 Status: New


** Tags: multiarch needs-packaging

** Description changed:

  The official Nvidia long-lived-branch stable driver is now 319.49.  That
  means that the recommended official driver is 319.49 and should be used
  by all Nvidia users except those using old legacy devices.  There are
  important fixes that are in this driver and the previous 319.17 that
  affect Chromium browser users especially:
  
  + Updated the nvidia-settings command line interface to no longer assume the 
X screen 0 target, when no target is specified in query and assign 
operations.Instead, all valid targets of the attribute are processed.
  + Fixed a memory leak that occurred when destroying a GLX window but not its 
associated X window.
  
  These can crash machines using Nvidia GPU's according to a Chromium-bug
  http://crbug.com/145600 NVIDIA linux drivers are unstable when using
  multiple Open GL contexts and with low memory.: and if check
  `about:gpu` you will see this is a major reason most if not all Nvidia
  GPU's are currently blacklisted.
  
  Also, when using Windows 7 I am liberty to install any driver version I
  want, keeping my machine up to date with the latest official Nvidia
  fixes.  With Ubuntu I'm stuck with older drivers that affect performance
  and contain old bugs that have already been fixed.  This leads to a
  lower quality experience than with Windows.  Drivers need to be kept
  current with upstream in my opinion.  For the time being I have been
  cherry-picking *.deb packages from X-Org-Edgers so that I can replicate
  that Windows experience and it's been working.  However, all Ubuntu
  users should have this experience as well and most do not know how to
  manually install packages using DPKG so it is out of their reach.
  
  The current Nvidia driver versions are as follows:
+ http://www.nvidia.com/object/unix.html
  
- Latest Long Lived Branch version: 319.49 -- `nvidia-current` should be here 
as the stable version
- Latest Short Lived Branch version: 325.15 -- `nvidia-updates` should be here 
as the short-lived branch
- Latest Legacy GPU version (304.xx series): 304.108 -- 
`nvidia-current-legacy` should be here.
- Latest Legacy GPU Version (71.86.xx series): 71.86.15
- Latest Legacy GPU Version (96.43.xx series): 96.43.23
- Latest Legacy GPU Version (173.14.xx series): 173.14.37
+ Long Lived Branch version: 319.49 -- `nvidia-current` should be here as 
stable
+ Short Lived Branch version: 325.15 -- `nvidia-updates` should be here as 
unstable
+ Legacy GPU version (304.xx series): 304.108 -- `nvidia-current-legacy` 
should be here.
  
  This situation has to be solved, Ubuntu cannot be so far behind the
  curve that it cannot keep

[Bug 1219908] Re: All nvidia-current and nvidia-updates need repackaging to mirror official Nvidia releases...

2013-09-02 Thread AG Restringere
Is is possible to keep this as a separate official PPA that just has
nvidia-drivers, nvidia-vpdau and nvidia-settings and keep this in
mirror-lock-step with the upstream releases?

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

Title:
  All nvidia-current and nvidia-updates need repackaging to mirror
  official Nvidia releases...

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

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


[Bug 1219908] Re: All nvidia-current and nvidia-updates need repackaging to mirror official Nvidia releases...

2013-09-02 Thread AG Restringere
** Package changed: nvidia-graphics-drivers (Ubuntu) = nvidia-graphics-
drivers-304 (Ubuntu)

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

Title:
  All nvidia-current and nvidia-updates need repackaging to mirror
  official Nvidia releases...

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

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


[Bug 1219908] Re: All nvidia-current and nvidia-updates need repackaging to mirror official Nvidia releases...

2013-09-02 Thread AG Restringere
** Project changed: nvidia-drivers-ubuntu = nvidia-graphics-
drivers-319-updates (Ubuntu)

** Changed in: nvidia-graphics-drivers-304 (Ubuntu)
 Assignee: AG Restringere (ag-restringere) = (unassigned)

** Changed in: nvidia
 Assignee: (unassigned) = AG Restringere (ag-restringere)

** Changed in: nvidia-graphics-drivers-304 (Ubuntu)
 Assignee: (unassigned) = Ubuntu-X (ubuntu-x-swat)

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

Title:
  All nvidia-current and nvidia-updates need repackaging to mirror
  official Nvidia releases...

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

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


[Bug 1219908] Re: All nvidia-current and nvidia-updates need repackaging to mirror official Nvidia releases...

2013-09-02 Thread AG Restringere
** Description changed:

  The official Nvidia long-lived-branch stable driver is now 319.49.  That
  means that the recommended official driver is 319.49 and should be used
  by all Nvidia users except those using old legacy devices.  There are
  important fixes that are in this driver and the previous 319.17 that
  affect Chromium browser users especially:
  
  + Fixed a memory leak that occurred when destroying a GLX window but not
  its associated X window.
  
  These can crash machines using Nvidia GPU's according to a Chromium-bug
  http://crbug.com/145600 NVIDIA linux drivers are unstable when using
  multiple Open GL contexts and with low memory.: and if check
  `about:gpu` you will see this is a major reason most if not all Nvidia
  GPU's are currently blacklisted.
  
- Also, when using Windows 7 I am liberty to install any driver version I
- want, keeping my machine up to date with the latest official Nvidia
+ Also, when using Windows 7 I am at liberty to install any driver version
+ I want, keeping my machine up to date with the latest official Nvidia
  fixes.  With Ubuntu I'm stuck with older drivers that affect performance
  and contain old bugs that have already been fixed.  This leads to a
  lower quality experience than with Windows.  Drivers need to be kept
  current with upstream in my opinion.  For the time being I have been
  cherry-picking *.deb packages from X-Org-Edgers so that I can replicate
  that Windows experience and it's been working.  However, all Ubuntu
  users should have this experience as well and most do not know how to
  manually install packages using DPKG so it is out of their reach.
  
  The current Nvidia driver versions are as follows:
  http://www.nvidia.com/object/unix.html
  
  Long Lived Branch version: 319.49 -- `nvidia-current` should be here as 
stable
  Short Lived Branch version: 325.15 -- `nvidia-updates` should be here as 
unstable
  Legacy GPU version (304.xx series): 304.108 -- `nvidia-current-legacy` 
should be here.
  
  This situation has to be solved, Ubuntu cannot be so far behind the
  curve that it cannot keep Nvidia drivers fresh and in sync with the
  upstream Nvidia release schedule...

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

Title:
  All nvidia-current and nvidia-updates need repackaging to mirror
  official Nvidia releases...

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

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


[Bug 1062569] Re: Xorg crashed with SIGABRT from __mpn_lshift()

2013-09-02 Thread AG Restringere
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Please answer these questions:

* Is this reproducible?
* If so, what specific steps should we take to recreate this bug?
* What exactly were you doing when the error occured?

This will help us to find and resolve 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/1062569

Title:
  Xorg crashed with SIGABRT from __mpn_lshift()

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

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


[Bug 999901] Re: Screen resolution does not fall back to default resolution when suspended with external monitor

2013-09-02 Thread AG Restringere
Could you please provide us with some more information?

* Information about your hardware setup such as Nvidia card type and model.
* Please indicate which version of Ubuntu you are using and Kernel version: 
just do 'uname -a' at the terminal.
* The driver version and how you installed it.

Thank you.

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

Title:
  Screen resolution does not fall back to default resolution when
  suspended with external monitor

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

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


[Bug 1219908] Re: All nvidia-current and nvidia-updates need repackaging to mirror official Nvidia releases...

2013-09-02 Thread AG Restringere
+Timo, my tone was one of excitement and not really a rant, so I
apologize if I came off as sounding impatient and I can understand the
long hours everyone here puts into this and I really do appreciate this
and am very grateful.

However, I'm looking at this from a customer expectations point of
view and not a developer point of view.  This applies specifically to
sophisticated customers such as gamers, engineers/scientists/developers
and power-users who are the most likely candidates to migrate from
Windows to Ubuntu on the desktop.  From the customer point of view -
especially gamers and demanding power users - the driver release cadence
is still way too slow and is a valid bug.  Sophisticated users need to
flexibility to extract the maximum performance and ensure maximum
stability for their system especially for mission-critical applications.

Whether we like it or not the industry standard that every customer
expects is that set by Windows 7/8 and for those systems there are
always fresh drivers available within days of release.  Anything slower
is perceived as being sub-standard. It's not a matter of who's right or
who's wrong it's that we need to at least match or even better beat that
release cadence. Ideally a Linux distribution should find a way to be
ahead of a Windows release cadence.

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

Title:
  All nvidia-current and nvidia-updates need repackaging to mirror
  official Nvidia releases...

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

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


[Bug 1099847] Re: [nvidia] Launcher graphics corruption with nvidia driver

2013-09-02 Thread AG Restringere
Is this somehow related to the following bug fixed in the 319.49 driver release:
http://www.nvidia.com/object/linux-display-amd64-319.49-driver

* Fixed a bug that resulted in corrupt texels when a previously empty
texture image was specified with glXBindTexImageEXT. In GNOME 3, this
caused gnome-screenshot to produce garbled window screenshots.

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

Title:
  [nvidia] Launcher graphics corruption with nvidia driver

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

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


[Bug 1172092] Re: Have an nvidia titan GPU with 2560x1600 monitor. As soon as I enable the driver and reboot, X crashes with black screen

2013-09-02 Thread AG Restringere
According the the www.nvidia.com/driver selection tool, for Linux x64
drivers only series 319 and 325 support the Titan line of graphics cards
or are currently recommended to use with them:

- Linux x64 (AMD64/EM64T) Display Driver - BETA
Version: 325.08 - Release Date: Mon Jul 01, 2013

- Linux x64 (AMD64/EM64T) Display Driver
Version: 319.49 - Release Date: Tue Aug 20, 2013

- Linux x64 (AMD64/EM64T) Display Driver
Version: 319.32 - Release Date: Tue Jun 25, 2013

- Linux x64 (AMD64/EM64T) Display Driver
Version: 319.23 - Release Date: Thu May 23, 2013

Would recommend you Try obtaining the 325.15 version driver from
https://launchpad.net/~xorg-edgers/+archive/ppa and manually download
and install the driver using 'dpkg -i this-driver.deb' and see if that
fixes the issue.  Make sure you remove the current driver before your
proceed.

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

Title:
  Have an nvidia titan GPU with 2560x1600 monitor.  As soon as I enable
  the driver and reboot, X crashes with black screen

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

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


[Bug 1185782] Re: Unity crashes after installing nvidia-current

2013-09-02 Thread AG Restringere
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Please execute the following command, as it will
automatically gather debugging information, in a terminal:

`apport-collect 1185782`

When reporting bugs in the future please use apport by using 'ubuntu-
bug' and the name of the package affected. You can learn more about this
functionality at https://wiki.ubuntu.com/ReportingBugs.

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

Title:
  Unity crashes after installing nvidia-current

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

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


[Bug 1099847] Re: [nvidia] Launcher graphics corruption with nvidia driver

2013-09-02 Thread AG Restringere
Also, one more thing, could you try removing the Nvidia drivers from the
additional drivers dialog and testing to see if this happens again
with the open source 'nouveau' driver?

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

Title:
  [nvidia] Launcher graphics corruption with nvidia driver

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

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


[Bug 1185782] Re: Unity crashes after installing nvidia-current

2013-09-02 Thread AG Restringere
** Changed in: nvidia-graphics-drivers-304 (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/1185782

Title:
  Unity crashes after installing nvidia-current

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

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


[Bug 1175050] Re: Shutdown does not power off computer with proprietary NVIDIA graphics driver

2013-09-02 Thread AG Restringere
These logs are stored in your '/var/logs/' folder if you use Nautilus
you can navigate there and then change to list view and then sort by
modified date to find which logs were most recently written to.

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

Title:
  Shutdown does not power off computer with proprietary NVIDIA graphics
  driver

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

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


[Bug 1175050] Re: Shutdown does not power off computer with proprietary NVIDIA graphics driver

2013-09-02 Thread AG Restringere
If possible could you attempt to shut-down the system and then provide
your 'dmesg', 'syslog' or 'xorg' logs that were written during that
shut-down?  There's usually more specific information there.

** Changed in: nvidia-graphics-drivers-304 (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/1175050

Title:
  Shutdown does not power off computer with proprietary NVIDIA graphics
  driver

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

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


[Bug 1104423] Re: random xorg crash

2013-09-02 Thread AG Restringere
Can you tell me what you were doing when the crash happened?  Did you
have loads of Chromium browser windows open?  What Chromium browser
settings were you using?

** Changed in: nvidia-graphics-drivers-304 (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/1104423

Title:
  random xorg crash

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

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


[Bug 999901] Re: Screen resolution does not fall back to default resolution when suspended with external monitor

2013-09-02 Thread AG Restringere
Please execute the following command, as it will
automatically gather debugging information, in a terminal:

`apport-collect BUGNUMBER` -- in this case 'apport-collect 01'

When reporting bugs in the future please use apport by using 'ubuntu-
bug' and the name of the package affected. You can learn more about this
functionality at https://wiki.ubuntu.com/ReportingBugs.

** Changed in: nvidia-graphics-drivers-304 (Ubuntu)
   Status: New = Incomplete

** Changed in: nvidia-drivers-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/01

Title:
  Screen resolution does not fall back to default resolution when
  suspended with external monitor

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

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


[Bug 1068404] Re: Low graphics mode in muxless hybrid ATI/Intel GPU systems after fglrx upgrade

2013-05-13 Thread AG
Yes i confirm.. that the above solution by christopher pijarski (kpijarski)  
works
For this solution it is additionally required to install libudev0 from quantal 
repo
---
Easy fix method
1. search for 'quantal amd64 xserver-xorg-video-intel' on google or launchpad 
and download the package
2. similarly search for 'quantal amd64 libudev0' and download the package
3. install both the packages
4. install fglrx drivers if not done already
5. in terminal issue command 'amdconfig --initial -f' to force-initiliaze 
/etc/X11/xorg.conf
6. reboot and enjoy!

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

Title:
  Low graphics mode in muxless hybrid ATI/Intel GPU systems after fglrx
  upgrade

To manage notifications about this bug go to:
https://bugs.launchpad.net/xserver-xorg-video-intel/+bug/1068404/+subscriptions

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


[Bug 1068404] Re: Low graphics mode in muxless hybrid ATI/Intel GPU systems after fglrx upgrade

2013-05-13 Thread AG
download the following packages
http://launchpadlibrarian.net/137095219/xserver-xorg-video-intel_2.20.9-0ubuntu2.1_amd64.deb
http://launchpadlibrarian.net/119461136/libudev0_175-0ubuntu13_amd64.deb

these are the two files that u will find in steps 1 and 2 of my above
comment

I confirm that installing these two files we get a working configuation

Now the battery drain issue is gone!

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

Title:
  Low graphics mode in muxless hybrid ATI/Intel GPU systems after fglrx
  upgrade

To manage notifications about this bug go to:
https://bugs.launchpad.net/xserver-xorg-video-intel/+bug/1068404/+subscriptions

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


[Bug 1098225] Re: [raring] BCM4313 -- bcmwl triggers panics with 3.7 and 3.8 kernels

2013-05-05 Thread AG Restringere
Strangely I no longer, and this remains to be seen with more use, have
this panic because I manually installed dpgk -i 6.20.155.1+bdcom-
0ubuntu5. an older package.  The version 6.20.155.1+bdcom-0ubuntu6
causes the kernel panic it seems.  Futhermore my uname -a is
3.8.0-19-generic #30-Ubuntu x86_64.  If you need any additional
information please reply.

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

Title:
  [raring] BCM4313 -- bcmwl triggers panics with 3.7 and 3.8 kernels

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

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


[Bug 846335] Re: [panel] graphics corruption in top line of pixels

2013-03-17 Thread AG Restringere
This is happening again for me using Nvidia 313.26 graphics drivers and
GeForce 8400M GS on a Dell Vostro 1500.

Link to bug: https://bugs.launchpad.net/ubuntu/+source/unity-
2d/+bug/1154723

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

Title:
  [panel] graphics corruption in top line of pixels

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

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


[Bug 1154723] Re: Maximized application windows have visible seams against panel...

2013-03-17 Thread AG Restringere
*** This bug is a duplicate of bug 1023925 ***
https://bugs.launchpad.net/bugs/1023925

** This bug has been marked a duplicate of bug 1023925
   unity-2d windows fullscreen offset from the panel (white border 2 pixel)

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

Title:
  Maximized application windows have visible seams against panel...

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

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


[Bug 792315] Re: screen tearing during video in unity 2d (but not ubuntu classic)

2013-03-16 Thread AG Restringere
Could anyone reporting here provide screenshots, I think I have a duplicate to 
this bug...
https://bugs.launchpad.net/ubuntu/+source/unity-2d/+bug/1154723

It does indeed seem to have something to do with metacity because it
doesn't happen on Ubuntu-3d...

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

Title:
  screen tearing during video in unity 2d (but not ubuntu classic)

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity-2d/+bug/792315/+subscriptions

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


[Bug 1154723] [NEW] Maximized application windows have visible seams against panel...

2013-03-13 Thread AG Restringere
Public bug reported:

Whenever I maximize applications in Unity-2d there are strange seams at
the top of the maximized window where it joins with the top panel.  For
some odd reason there is also slight corruption in this area also.  This
is especially visible when GTK applications uses tabs.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: unity-2d 5.14.0-0ubuntu1
ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
Uname: Linux 3.5.0-18-generic x86_64
NonfreeKernelModules: wl nvidia
ApportVersion: 2.0.1-0ubuntu17.1
Architecture: amd64
Date: Wed Mar 13 13:54:39 2013
InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release amd64 
(20120823.1)
MarkForUpload: True
PackageArchitecture: all
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: unity-2d
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: unity-2d (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug package-from-proposed precise running-unity 
third-party-packages unity-2d

** Attachment added: unity-2d_bug.png
   
https://bugs.launchpad.net/bugs/1154723/+attachment/3572436/+files/unity-2d_bug.png

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

Title:
  Maximized application windows have visible seams against panel...

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

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


[Bug 1125759] Re: SNA enabled causes Intel integrated graphics to only boot in low graphics mode

2013-02-14 Thread AG Restringere
@Adam Bruce: I suggest you read these guides on how to use Bumblebee to
enable Optimus support as that seems to be the issue at hand...

https://wiki.ubuntu.com/HardwareSupport/Machines/Laptops/Dell/XPS/15z
https://wiki.ubuntu.com/Bumblebee

Let me know if this helps...

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

Title:
   SNA enabled causes Intel integrated graphics to only boot in low
  graphics mode

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1125759/+subscriptions

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


[Bug 1109207] [NEW] Unpacking replacement libc6-dev ... dpkg-deb (subprocess): data: internal gzip read error: 'fd:4: data error'

2013-01-29 Thread AG Restringere
Public bug reported:

Attempted to upgrade a system at work and got these errors...

clerk@Fitzgerald:~$ sudo dpkg -i 
/var/cache/apt/archives/libc6-dev_2.15-0ubuntu10.4_amd64.deb
(Reading database ... 266563 files and directories currently installed.)
Preparing to replace libc6-dev 2.15-0ubuntu10.3 (using 
.../libc6-dev_2.15-0ubuntu10.4_amd64.deb) ...
Unpacking replacement libc6-dev ...
dpkg-deb (subprocess): data: internal gzip read error: 'fd:4: data error'
dpkg-deb: error: subprocess decompress returned error exit status 2
dpkg: error processing 
/var/cache/apt/archives/libc6-dev_2.15-0ubuntu10.4_amd64.deb (--install):
 subprocess dpkg-deb --fsys-tarfile returned error exit status 2
Errors were encountered while processing:
 /var/cache/apt/archives/libc6-dev_2.15-0ubuntu10.4_amd64.deb
clerk@Fitzgerald:~$ ubuntu-bug libc6-dev

When I run synaptic I get the follow error:
E: Internal Error, No file name for libc6

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: libc6-dev 2.15-0ubuntu10.3
ProcVersionSignature: Ubuntu 3.2.0-36.57-generic 3.2.35
Uname: Linux 3.2.0-36-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.0.1-0ubuntu17.1
Architecture: amd64
Date: Tue Jan 29 14:20:51 2013
InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release amd64 
(20120823.1)
MarkForUpload: True
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: eglibc
UpgradeStatus: Upgraded to precise on 2013-01-18 (11 days ago)

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


** Tags: amd64 apport-bug precise running-unity

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

Title:
  Unpacking replacement libc6-dev ... dpkg-deb (subprocess): data:
  internal gzip read error: 'fd:4: data error'

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

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


[Bug 1109207] Re: Unpacking replacement libc6-dev ... dpkg-deb (subprocess): data: internal gzip read error: 'fd:4: data error'

2013-01-29 Thread AG Restringere
Updated comment:

clerk@Fitzgerald:~/Downloads$ sudo dpkg -i 
/var/cache/apt/archives/libc6-dev_2.15-0ubuntu10.4_amd64.deb
(Reading database ... 266563 files and directories currently installed.)
Preparing to replace libc6-dev 2.15-0ubuntu10.3 (using 
.../libc6-dev_2.15-0ubuntu10.4_amd64.deb) ...
Unpacking replacement libc6-dev ...
dpkg: dependency problems prevent configuration of libc6-dev:
 libc6-dev depends on libc6 (= 2.15-0ubuntu10.4); however:
  Package libc6 is not configured yet.
 libc6-dev depends on libc-dev-bin (= 2.15-0ubuntu10.4); however:
  Package libc-dev-bin is not configured yet.
dpkg: error processing libc6-dev (--install):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 libc6-dev

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

Title:
  Unpacking replacement libc6-dev ... dpkg-deb (subprocess): data:
  internal gzip read error: 'fd:4: data error'

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

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


[Bug 1109207] Re: Unpacking replacement libc6-dev ... dpkg-deb (subprocess): data: internal gzip read error: 'fd:4: data error'

2013-01-29 Thread AG Restringere
clerk@Fitzgerald:/var/cache/apt/archives$ sudo dpkg -i 
libc6-dev_2.15-0ubuntu10.2_amd64.deb
(Reading database ... 266563 files and directories currently installed.)
Preparing to replace libc6-dev 2.15-0ubuntu10.2 (using 
libc6-dev_2.15-0ubuntu10.2_amd64.deb) ...
Unpacking replacement libc6-dev ...
dpkg: dependency problems prevent configuration of libc6-dev:
 libc6-dev depends on libc6 (= 2.15-0ubuntu10.2); however:
  Version of libc6 on system is 2.15-0ubuntu10.4.
 libc6-dev depends on libc-dev-bin (= 2.15-0ubuntu10.2); however:
  Version of libc-dev-bin on system is 2.15-0ubuntu10.4.
dpkg: error processing libc6-dev (--install):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 libc6-dev

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

Title:
  Unpacking replacement libc6-dev ... dpkg-deb (subprocess): data:
  internal gzip read error: 'fd:4: data error'

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

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


[Bug 1109207] Re: Unpacking replacement libc6-dev ... dpkg-deb (subprocess): data: internal gzip read error: 'fd:4: data error'

2013-01-29 Thread AG Restringere
*** This bug is a duplicate of bug 930039 ***
https://bugs.launchpad.net/bugs/930039

clerk@Fitzgerald:/usr/share/doc/libc6$ sudo apt-get -f install
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Correcting dependencies... Done
The following package was automatically installed and is no longer required:
  gtk2-engines-pixbuf
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
  libc6 libc6-dev
Suggested packages:
  glibc-doc
The following packages will be upgraded:
  libc6 libc6-dev
2 upgraded, 0 newly installed, 0 to remove and 49 not upgraded.
6 not fully installed or removed.
Need to get 7,597 kB of archives.
After this operation, 8,192 B of additional disk space will be used.
Do you want to continue [Y/n]? y
Get:1 http://archive.ubuntu.com/ubuntu/ precise-proposed/main libc6-dev amd64 
2.15-0ubuntu10.4 [2,945 kB]
Get:2 http://archive.ubuntu.com/ubuntu/ precise-proposed/main libc6 amd64 
2.15-0ubuntu10.4 [4,653 kB]
Fetched 7,597 kB in 2s (2,849 kB/s)
Preconfiguring packages ...
(Reading database ... 266563 files and directories currently installed.)
Preparing to replace libc6 2.15-0ubuntu10.2 (using 
.../libc6_2.15-0ubuntu10.4_amd64.deb) ...
Unpacking replacement libc6 ...
Setting up libc6 (2.15-0ubuntu10.4) ...
Setting up libc-dev-bin (2.15-0ubuntu10.4) ...
dpkg: dependency problems prevent configuration of libc6-dev:
 libc6-dev depends on libc6 (= 2.15-0ubuntu10.2); however:
  Version of libc6 on system is 2.15-0ubuntu10.4.
 libc6-dev depends on libc-dev-bin (= 2.15-0ubuntu10.2); however:
  Version of libc-dev-bin on system is 2.15-0ubuntu10.4.
dpkg: error processing libc6-dev (--configure):
 dependency problems - leaving unconfigured
No apport report written because the error message indicates its a followup 
error from a previous failure.

  Setting up libc6:i386 (2.15-0ubuntu10.4) ...
Setting up libc6-i386 (2.15-0ubuntu10.4) ...
Setting up lib32asound2 (1.0.25-1ubuntu10.2) ...
Processing triggers for libc-bin ...
ldconfig deferred processing now taking place
Errors were encountered while processing:
 libc6-dev
E: Sub-process /usr/bin/dpkg returned an error code (1)

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

Title:
  Unpacking replacement libc6-dev ... dpkg-deb (subprocess): data:
  internal gzip read error: 'fd:4: data error'

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

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


[Bug 1109207] Re: Unpacking replacement libc6-dev ... dpkg-deb (subprocess): data: internal gzip read error: 'fd:4: data error'

2013-01-29 Thread AG Restringere
*** This bug is a duplicate of bug 930039 ***
https://bugs.launchpad.net/bugs/930039

** This bug has been marked a duplicate of bug 930039
   package libc6 2.15~pre6-0ubuntu10 failed to install/upgrade: subprocess new 
pre-installation script returned error exit status 1

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

Title:
  Unpacking replacement libc6-dev ... dpkg-deb (subprocess): data:
  internal gzip read error: 'fd:4: data error'

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

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


[Bug 949007] Re: package libc-bin 2.15-0ubuntu4 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2013-01-29 Thread AG Restringere
*** This bug is a duplicate of bug 930039 ***
https://bugs.launchpad.net/bugs/930039

** This bug has been marked a duplicate of bug 930039
   package libc6 2.15~pre6-0ubuntu10 failed to install/upgrade: subprocess new 
pre-installation script returned error exit status 1

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

Title:
  package libc-bin 2.15-0ubuntu4 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

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

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


[Bug 462362] Re: Karmic : after suspend and resume Lenovo 3000 N100 display brightness goes down

2013-01-22 Thread AG Restringere
*** This bug is a duplicate of bug 275902 ***
https://bugs.launchpad.net/bugs/275902

** This bug is no longer a duplicate of bug 1015297
   Screen partially darkened after suspend and resume in Xubuntu

** This bug has been marked a duplicate of bug 275902
   Very dark screen after return from suspend to memory on Lenovo S10

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

Title:
  Karmic : after suspend and resume Lenovo 3000 N100 display brightness
  goes down

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

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


[Bug 275902] Re: Very dark screen after return from suspend to memory on Lenovo S10

2013-01-22 Thread AG Restringere
** This bug is no longer a duplicate of bug 1015297
   Screen partially darkened after suspend and resume in Xubuntu

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

Title:
  Very dark screen after return from suspend to memory on Lenovo S10

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

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


[Bug 446855] Re: Resume from suspend sometimes gives low screen brightness, as if on battery

2013-01-22 Thread AG Restringere
*** This bug is a duplicate of bug 275902 ***
https://bugs.launchpad.net/bugs/275902

** This bug is no longer a duplicate of bug 1015297
   Screen partially darkened after suspend and resume in Xubuntu

** This bug has been marked a duplicate of bug 275902
   Very dark screen after return from suspend to memory on Lenovo S10

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

Title:
  Resume from suspend sometimes gives low screen brightness, as if on
  battery

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

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


[Bug 451282] Re: display is fully dimmed after resume from suspend

2013-01-22 Thread AG Restringere
** This bug is no longer a duplicate of bug 1015297
   Screen partially darkened after suspend and resume in Xubuntu

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

Title:
  display is fully dimmed after resume from suspend

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

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


[Bug 1015297] Re: Screen partially darkened after suspend and resume in Xubuntu

2013-01-22 Thread AG Restringere
** Changed in: fglrx-installer (Ubuntu)
   Status: Confirmed = Opinion

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

Title:
  Screen partially darkened after suspend and resume in Xubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/pm-utils/+bug/1015297/+subscriptions

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


[Bug 1095106] Re: Random display corruption in gnome-shell widgets

2013-01-20 Thread AG Restringere
** Changed in: gnome-shell (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/1095106

Title:
  Random display corruption in gnome-shell widgets

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

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


[Bug 921321] Re: nouveau: dark screen after suspend/resume

2013-01-20 Thread AG Restringere
Skeggsb, someone has reported a bug similar to this on Launchpad.net in
Ubuntu and was wondering if you can give more information on this
potential fix and when it will be released...

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

Title:
  nouveau: dark screen after suspend/resume

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

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


[Bug 921321] Re: nouveau: dark screen after suspend/resume

2013-01-20 Thread AG Restringere
Forgot to include a link: https://bugs.launchpad.net/nouveau/+bug/921321

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

Title:
  nouveau: dark screen after suspend/resume

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

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


[Bug 307126] Re: No Backlight after Suspend Sony VGN-T37GP

2013-01-20 Thread AG Restringere
** Changed in: pm-utils (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/307126

Title:
  No Backlight after Suspend Sony VGN-T37GP

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

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


[Bug 1100048] Re: Screen partially dimmed after resume in Xubuntu

2013-01-20 Thread AG Restringere
*** This bug is a duplicate of bug 1015297 ***
https://bugs.launchpad.net/bugs/1015297

** This bug has been marked a duplicate of bug 1015297
   Screen partially darkened after suspend and resume in Xubuntu

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

Title:
  Screen partially dimmed after resume in Xubuntu

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

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


[Bug 1015297] Re: Screen partially darkened after suspend and resume in Xubuntu

2013-01-20 Thread AG Restringere
** Changed in: xfce4-power-manager
   Status: New = Invalid

** Changed in: xubuntu-desktop
   Status: New = Confirmed

** Changed in: xscreensaver
   Status: Incomplete = Confirmed

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

Title:
  Screen partially darkened after suspend and resume in Xubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/pm-utils/+bug/1015297/+subscriptions

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


[Bug 1095106] Re: Random display corruption in gnome-shell widgets

2013-01-20 Thread AG Restringere
** Changed in: gnome-shell (Ubuntu)
   Status: Incomplete = Opinion

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

Title:
  Random display corruption in gnome-shell widgets

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

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


[Bug 1030589] Re: ~/.Xmodmap is being read wrong when autologin

2013-01-19 Thread AG Restringere
*** This bug is a duplicate of bug 1072120 ***
https://bugs.launchpad.net/bugs/1072120

** This bug has been marked a duplicate of bug 1072120
   ~/.Xmodmap not read on login

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

Title:
  ~/.Xmodmap is  being read wrong when autologin

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/x11-xserver-utils/+bug/1030589/+subscriptions

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


[Bug 1095106] Re: Random display corruption in gnome-shell widgets

2013-01-15 Thread AG Restringere
Tortsten:  The official Git-Hub for that project seems to be
https://github.com/simon04/gnome-shell-extension-weather so if you were
to file a bug that would probably be the place to.

Can you do the following?  Disable 'gnome-shell-extension-weather',
reboot and then see if the panel icon corruption continues.  If it does
not then file a bug with the project at their official Git-Hub page and
include a link to this bug report.  Now, if the problem does not go away
even after disabling that extension it's probably a valid gnome-shell
bug and needs to be filed upstream.

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

Title:
  Random display corruption in gnome-shell widgets

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

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


[Bug 1015297] Re: Screen partially darkened after suspend and resume in Xubuntu

2013-01-07 Thread AG Restringere
According to Xscreensaver documentation if you can reproduce the bug
type the following into the Terminal and try to retest the
problem...post your log file here...

http://www.jwz.org/xscreensaver/bugs.html

$ xscreensaver-command -exit
$ xscreensaver -verbose -log log.txt

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

Title:
  Screen partially darkened after suspend and resume in Xubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/pm-utils/+bug/1015297/+subscriptions

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


[Bug 1094394] Re: Should not blacklist wired internet module 'b44'

2013-01-04 Thread AG Restringere
** Changed in: bcmwl (Ubuntu)
   Status: New = Invalid

** Changed in: bcmwl (Ubuntu)
   Status: Invalid = Opinion

** Changed in: bcmwl (Ubuntu)
   Status: Opinion = Invalid

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

Title:
  Should not blacklist wired internet module 'b44'

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

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


[Bug 1015297] Re: Screen partially darkened after suspend and resume in Xubuntu

2013-01-03 Thread AG Restringere
Just added Xscreensaver to the list of possible candidates as per
commend #22.  Seems interesting because XFCE does indeed use
Xscreensaver and possibly the bugs on the duplicates list for older
Ubuntu versions prior to 12.04 are due to Xscreensaver being used by
default on Ubuntu systems then.  This would also possibly explain why
the bug affects so many different video drivers and card types.

** Also affects: xscreensaver
   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/1015297

Title:
  Screen partially darkened after suspend and resume in Xubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/pm-utils/+bug/1015297/+subscriptions

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


[Bug 1015297] Re: Screen partially darkened after suspend and resume in Xubuntu

2013-01-03 Thread AG Restringere
Just added Xscreensaver to the list of possible candidates as per
comment #22. Seems interesting because XFCE does indeed use Xscreensaver
and possibly the bugs on the duplicates list for older Ubuntu versions
prior to 12.04 are due to Xscreensaver being used by default on Ubuntu
systems then. This would also possibly explain why the bug affects so
many different video drivers and card types.

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

Title:
  Screen partially darkened after suspend and resume in Xubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/pm-utils/+bug/1015297/+subscriptions

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


[Bug 1015297] Re: Screen partially darkened after suspend and resume in Xubuntu

2013-01-03 Thread AG Restringere
** Changed in: pm-utils
   Status: Incomplete = Opinion

** Changed in: xscreensaver
   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/1015297

Title:
  Screen partially darkened after suspend and resume in Xubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/pm-utils/+bug/1015297/+subscriptions

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


[Bug 1015297] Re: Screen partially darkened after suspend and resume in Xubuntu

2013-01-02 Thread AG Restringere
Martin, in your opinion do you think that this bug #921321 is a
duplicate?

** Bug watch added: freedesktop.org Bugzilla #39550
   https://bugs.freedesktop.org/show_bug.cgi?id=39550

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

Title:
  Screen partially darkened after suspend and resume in Xubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/pm-utils/+bug/1015297/+subscriptions

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


[Bug 1015297] Re: Screen partially darkened after suspend and resume in Xubuntu

2013-01-02 Thread AG Restringere
The reporter of #921321 has also posted an interesting link to an
upstream bug https://bugs.freedesktop.org/show_bug.cgi?id=39550

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

Title:
  Screen partially darkened after suspend and resume in Xubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/pm-utils/+bug/1015297/+subscriptions

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


[Bug 275902] Re: Very dark screen after return from suspend to memory on Lenovo S10

2013-01-02 Thread AG Restringere
*** This bug is a duplicate of bug 1015297 ***
https://bugs.launchpad.net/bugs/1015297

** This bug has been marked a duplicate of bug 1015297
   Screen partially darkened after suspend and resume in Xubuntu

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

Title:
  Very dark screen after return from suspend to memory on Lenovo S10

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

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


[Bug 1015297] Re: Screen partially darkened after suspend and resume in Xubuntu

2013-01-02 Thread AG Restringere
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1015297

Title:
  Screen partially darkened after suspend and resume in Xubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/pm-utils/+bug/1015297/+subscriptions

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


[Bug 1015297] Re: Screen partially darkened after suspend and resume in Xubuntu

2013-01-02 Thread AG Restringere
There was a slight gamma shift downwards and I'm attaching the log, it
tends to be more severe when the suspend is left to be triggered by
inactivity and the system is suspended for an extended period...

** Attachment added: pm-suspend.log
   
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/1015297/+attachment/3473003/+files/pm-suspend.log

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

Title:
  Screen partially darkened after suspend and resume in Xubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/pm-utils/+bug/1015297/+subscriptions

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


[Bug 510118] Re: [lucid regression] laptop thinks it is running on battery after resume from suspend to RAM

2013-01-02 Thread AG Restringere
*** This bug is a duplicate of bug 1015297 ***
https://bugs.launchpad.net/bugs/1015297

** This bug is no longer a duplicate of bug 451282
   display is fully dimmed after resume from suspend
** This bug has been marked a duplicate of bug 1015297
   Screen partially darkened after suspend and resume in Xubuntu

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

Title:
  [lucid regression] laptop thinks it is running on battery after resume
  from suspend to RAM

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

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


[Bug 477439] Re: Brightness not restored after resume from suspend

2013-01-02 Thread AG Restringere
*** This bug is a duplicate of bug 1015297 ***
https://bugs.launchpad.net/bugs/1015297

** This bug is no longer a duplicate of bug 451282
   display is fully dimmed after resume from suspend
** This bug has been marked a duplicate of bug 1015297
   Screen partially darkened after suspend and resume in Xubuntu

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

Title:
  Brightness not restored after resume from suspend

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

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


[Bug 467657] Re: WARNING: at /build/buildd/linux-2.6.31/kernel/power/suspend_test.c:52 suspend_test_finish+0x80/0x90()

2013-01-02 Thread AG Restringere
*** This bug is a duplicate of bug 1015297 ***
https://bugs.launchpad.net/bugs/1015297

** This bug is no longer a duplicate of bug 451282
   display is fully dimmed after resume from suspend
** This bug has been marked a duplicate of bug 1015297
   Screen partially darkened after suspend and resume in Xubuntu

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

Title:
  WARNING: at /build/buildd/linux-2.6.31/kernel/power/suspend_test.c:52
  suspend_test_finish+0x80/0x90()

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

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


[Bug 462362] Re: Karmic : after suspend and resume Lenovo 3000 N100 display brightness goes down

2013-01-02 Thread AG Restringere
*** This bug is a duplicate of bug 1015297 ***
https://bugs.launchpad.net/bugs/1015297

** This bug is no longer a duplicate of bug 451282
   display is fully dimmed after resume from suspend
** This bug has been marked a duplicate of bug 1015297
   Screen partially darkened after suspend and resume in Xubuntu

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

Title:
  Karmic : after suspend and resume Lenovo 3000 N100 display brightness
  goes down

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

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


[Bug 451282] Re: display is fully dimmed after resume from suspend

2013-01-02 Thread AG Restringere
*** This bug is a duplicate of bug 1015297 ***
https://bugs.launchpad.net/bugs/1015297

** This bug has been marked a duplicate of bug 1015297
   Screen partially darkened after suspend and resume in Xubuntu

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

Title:
  display is fully dimmed after resume from suspend

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

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


[Bug 446855] Re: Resume from suspend sometimes gives low screen brightness, as if on battery

2013-01-02 Thread AG Restringere
*** This bug is a duplicate of bug 1015297 ***
https://bugs.launchpad.net/bugs/1015297

** This bug is no longer a duplicate of bug 451282
   display is fully dimmed after resume from suspend
** This bug has been marked a duplicate of bug 1015297
   Screen partially darkened after suspend and resume in Xubuntu

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

Title:
  Resume from suspend sometimes gives low screen brightness, as if on
  battery

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

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


[Bug 477439] Re: Brightness not restored after resume from suspend

2013-01-02 Thread AG Restringere
** This bug is no longer a duplicate of bug 1015297
   Screen partially darkened after suspend and resume in Xubuntu

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

Title:
  Brightness not restored after resume from suspend

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

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


[Bug 467657] Re: WARNING: at /build/buildd/linux-2.6.31/kernel/power/suspend_test.c:52 suspend_test_finish+0x80/0x90()

2013-01-02 Thread AG Restringere
** This bug is no longer a duplicate of bug 1015297
   Screen partially darkened after suspend and resume in Xubuntu

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

Title:
  WARNING: at /build/buildd/linux-2.6.31/kernel/power/suspend_test.c:52
  suspend_test_finish+0x80/0x90()

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

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


[Bug 510118] Re: [lucid regression] laptop thinks it is running on battery after resume from suspend to RAM

2013-01-02 Thread AG Restringere
** This bug is no longer a duplicate of bug 1015297
   Screen partially darkened after suspend and resume in Xubuntu

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

Title:
  [lucid regression] laptop thinks it is running on battery after resume
  from suspend to RAM

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

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


[Bug 559936] Re: 10.04 - Screen brightness is dim after suspended mode

2013-01-02 Thread AG Restringere
** Changed in: hal (Ubuntu)
   Status: Confirmed = Incomplete

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

Title:
  10.04 - Screen brightness is dim after suspended mode

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

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


[Bug 1095106] Re: Random display corruption in gnome-shell widgets

2013-01-01 Thread AG Restringere
Seems someone posted something similar on RedHat's Bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=742776

Here are some potential duplicates please indicate which one describes
it best...

https://bugzilla.gnome.org/show_bug.cgi?id=689254

https://bugzilla.gnome.org/show_bug.cgi?id=664152

https://bugzilla.gnome.org/show_bug.cgi?id=675311

https://bugzilla.gnome.org/show_bug.cgi?id=310403


** Bug watch added: Red Hat Bugzilla #742776
   https://bugzilla.redhat.com/show_bug.cgi?id=742776

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

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

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

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

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

Title:
  Random display corruption in gnome-shell widgets

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

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


[Bug 1095106] Re: Random display corruption in gnome-shell widgets

2013-01-01 Thread AG Restringere
Can you try disabling Compiz and then seeing if the problem persists?

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

Title:
  Random display corruption in gnome-shell widgets

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

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


[Bug 1095106] Re: Random display corruption in gnome-shell widgets

2013-01-01 Thread AG Restringere
Okay, I think you should file a bug directly with the Gnome project as
there seem to be similar problems on their bug tracker so they know
about it. When you do post it upstream post the link to your bug report
here so we can link to it...

https://bugzilla.gnome.org/enter_bug.cgi

Thank you...

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

Title:
  Random display corruption in gnome-shell widgets

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

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


  1   2   3   >