[Bug 270395] Re: cannot resolve windows host name

2012-05-13 Thread Tor Sjowall
This problem is still unsolved.

The host names of windows PCs are not visible to Linux programs with a regular 
installation of Samba,
i.e. from Linux 'ping win_pc' does not work, but from windows 'ping linux_pc' 
does work.

Also, 'nmblookup win_pc' works, while 'nslookup win_pc' does not work.

Installing winbind and changing the nsswitch.conf's host: definition to 'host: 
files dns wins' fix the problem. 
This is not obvious to a naive user.

I suggest changing the host definition in nsswitch.conf on installation of 
winbind
I also suggest installing winbind together with Samba

This would improve the user experience when working in a mixed Ubuntu/Windows 
network environment.
The whole point of the Samba package is to make it possible to work in such a 
mixed environment.

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

Title:
  cannot resolve windows host name

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/270395/+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 998712] [NEW] dnsmasq integration into name resolution broken

2012-05-13 Thread Wolf Rogner
Public bug reported:

dnsmasq does not resolve DNS names correcty.

Applications like Thunderbird or tools like ssh rely on working name
resolution. However, if there never was a working name resolution,
dnsmasq never gets to know about the DNS names.

Setup:

private network: 192.168.0.x/24
domain mydomain.intern
server: 192.168.0.1 hostname s1
dhcp (.100 - .200) and bind running, postfix and dovecot running
client: 192.168.0.100 (dhclient)

/etc/resolv.conf
...
nameserver 127.0.0.1
search mydomain.intern

/var/run/nm-dns-dnsmasq.conf
server=192.168.0.1

Open Thunderbird - Thunderbird fails to open s1
ssh admin@s1 - ssh: Could not resolve hostname s1: Name or service not known

Adding
nameserver 192.168.0.1
to /etc/resolv.conf

resolves the issue immediately

calling sudo resolvconf -u

creates the lookup problem immediately again

This is a critical error

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: dnsmasq-base 2.59-4
ProcVersionSignature: Ubuntu 3.2.0-24.37-generic 3.2.14
Uname: Linux 3.2.0-24-generic x86_64
NonfreeKernelModules: nvidia wl
ApportVersion: 2.0.1-0ubuntu7
Architecture: amd64
Date: Sun May 13 11:43:02 2012
InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64+mac (20111012)
SourcePackage: dnsmasq
UpgradeStatus: Upgraded to precise on 2012-04-29 (13 days ago)

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


** Tags: amd64 apport-bug precise

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

Title:
  dnsmasq integration into name resolution broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dnsmasq/+bug/998712/+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 998712] Re: dnsmasq integration into name resolution broken

2012-05-13 Thread Wolf Rogner
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dnsmasq in Ubuntu.
https://bugs.launchpad.net/bugs/998712

Title:
  dnsmasq integration into name resolution broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dnsmasq/+bug/998712/+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 771148] Re: redirect-gateway fails when default route does not use a gateway

2012-05-13 Thread TJ
I agree with Andreas; this is a bug in openvpn. I have local office
gateway servers with an internal PCI ADSL modem that runs embedded Linux
and is configured in RFC 1483 LLC Bridge mode. The Host PC uses PPPoE to
connect to the ISP via the embedded ADSL modem over the single ATM LLC
available from BT in the U.K.

This results in the host PC creating the ppp0 interface which is the
default route:

$ ip route show
default dev ppp0  scope link 
62.3.82.17 dev ppp0  proto kernel  scope link  src 82.71.24.87 
...

The OpenVPN server's configuration includes:

push redirect-gateway def1

When the local office connects it reports:

ovpn-01linode[24920]: TUN/TAP device tun0 opened
ovpn-01linode[24920]: TUN/TAP TX queue length set to 100
ovpn-01linode[24920]: do_ifconfig, tt-ipv6=0, tt-did_ifconfig_ipv6_setup=0
ovpn-01linode[24920]: /sbin/ifconfig tun0 10.254.252.18 pointopoint 
10.254.252.17 mtu 1500
ovpn-01linode[24920]: NOTE: unable to redirect default gateway -- Cannot read 
current default gateway from system

There is (an invasive) patch in Debian bug #592088 by Lionel Elie Mamane
in comment 10. A better solution that doesn't involve trying to get the
OpenVPN project to substantially change the semantics of redirect-
gateway to redirect-default-route is in a short PPP script mentioned
by Vladislav Naumov in comment 20, and originally from the OpenVPN
mailing list in 2007:

/etc/ppp/ip-up.d/default-gateway:
---8--
#!/bin/bash

if [ $(ip route list exact default |\
  awk '/^default/ {print $2}') = dev ];
then
 IF=$(ip route | awk '/^default/ {print $3}')
 GW=$(ip address show $IF |\
 awk '/peer/ {print $4}' | cut -d/ -f1)
 ip route replace default via $GW dev $IF
fi
---8--

Now, when the PPP interface comes up

 default dev ppp0  scope link

is replaced by the PPP script with a route that includes the ISP gateway
IP address:

 default via 62.3.82.19 dev ppp0

This allows OpenVPN to recognise and replace the default route when it
starts:

default via 10.254.252.17 dev tun0
10.254.252.17 dev tun0  proto kernel  scope link  src 10.254.252.18


** Also affects: ppp (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  redirect-gateway fails when default route does not use a gateway

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openvpn/+bug/771148/+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 771148] Re: redirect-gateway fails when default route does not use a gateway

2012-05-13 Thread TJ
I've attached the shell script for PPP so it can be downloaded. It
should be put in the directory /etc/ppp/if-up.d/ and given execute
permissions:

sudo mv ~/Downloads/default-gateway /etc/ppp/if-up.d/
sudo chmod +x /etc/ppp/if-up.d/default-gateway

** Attachment added: PPP default-gateway script (put in /etc/ppp/if-up.d/)
   
https://bugs.launchpad.net/ubuntu/+source/ppp/+bug/771148/+attachment/3144343/+files/default-gateway

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

Title:
  redirect-gateway fails when default route does not use a gateway

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openvpn/+bug/771148/+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 771148] Re: redirect-gateway fails when default route does not use a gateway

2012-05-13 Thread TJ
I've added the PPP package to this bug since it would the appropriate
place to ship the workaround and, as far as I can see, shouldn't upset
any existing PPP configurations.

It would actually save our users a lot trouble especially for those
using portable devices over public WiFi or cellular data when they use
OpenVPN since many cellular operates also do not provide a gateway IP
for the default route.

I'll pass this on to Debian's PPP maintainer and see if we can get some
movement on this.

** Changed in: ppp (Ubuntu)
   Status: New = In Progress

** Changed in: ppp (Ubuntu)
 Assignee: (unassigned) = TJ (intuitivenipple)

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

Title:
  redirect-gateway fails when default route does not use a gateway

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openvpn/+bug/771148/+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 771148] Re: redirect-gateway fails when default route does not use a gateway

2012-05-13 Thread TJ
Correction! I mistyped the PPP directory name as iF-up.d when it
should be iP-up.d. The instructions should be:

I've attached the shell script for PPP so it can be downloaded. It
should be put in the directory /etc/ppp/ip-up.d/ and given execute
permissions:

sudo mv ~/Downloads/default-gateway /etc/ppp/ip-up.d/
sudo chmod +x /etc/ppp/ip-up.d/default-gateway


This also suggests another script is needed for Ipv6. I'll investigate.

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

Title:
  redirect-gateway fails when default route does not use a gateway

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openvpn/+bug/771148/+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 998732] [NEW] vmbuilder debootstrap crash

2012-05-13 Thread Alix Mougenot
Public bug reported:

package:
ubuntu-vm-builder_0.12.4+bzr477

real package:
python-vm-builder_0.12.4+bzr477

running on:
Ubuntu 12.04 LTS

by running the following command (just a test):
$ sudo vmbuilder kvm ubuntu --suite precise --flavour server --libvirt 
qemu:///system

is triggered the following exception:
W: Failure trying to run: chroot /tmp/tmprLI6UB mount -t proc proc /proc
Traceback (most recent call last):
  File /usr/bin/vmbuilder, line 24, in module
cli.main()
  File /usr/lib/python2.7/dist-packages/VMBuilder/contrib/cli.py, line 216, 
in main
distro.build_chroot()
  File /usr/lib/python2.7/dist-packages/VMBuilder/distro.py, line 83, in 
build_chroot
self.call_hooks('bootstrap')
  File /usr/lib/python2.7/dist-packages/VMBuilder/distro.py, line 67, in 
call_hooks
call_hooks(self, *args, **kwargs)
  File /usr/lib/python2.7/dist-packages/VMBuilder/util.py, line 165, in 
call_hooks
getattr(context, func, log_no_such_method)(*args, **kwargs)
  File /usr/lib/python2.7/dist-packages/VMBuilder/plugins/ubuntu/distro.py, 
line 136, in bootstrap
self.suite.debootstrap()
  File /usr/lib/python2.7/dist-packages/VMBuilder/plugins/ubuntu/dapper.py, 
line 269, in debootstrap
run_cmd(*cmd, **kwargs)
  File /usr/lib/python2.7/dist-packages/VMBuilder/util.py, line 120, in 
run_cmd
raise VMBuilderException, Process (%s) returned %d. stdout: %s, stderr: 
%s % (args.__repr__(), status, mystdout.buf, mystderr.buf)
VMBuilder.exception.VMBuilderException: Process (['/usr/sbin/debootstrap', 
'--arch=amd64', 'precise', '/tmp/tmprLI6UB', 
'http://archive.ubuntu.com/ubuntu']) returned 1

- debootstrap may be the culprit its version is 1.0.39ubuntu0.1
- the targeted folder is a correct root folder
- /proc is a correct proc folder

complete output: 
2012-05-13 13:56:04,184 INFO: Calling hook: preflight_check
2012-05-13 13:56:04,186 INFO: Calling hook: set_defaults
2012-05-13 13:56:04,186 INFO: Calling hook: bootstrap
2012-05-13 13:57:12,195 INFO: Cleaning up
2012-05-13 13:57:12,195 ERROR   : Process (['/usr/sbin/debootstrap', 
'--arch=amd64', 'precise', '/tmp/tmprLI6UB', 
'http://archive.ubuntu.com/ubuntu']) returned 1. stdout: I: Retrieving Release
I: Retrieving Release.gpg
I: Checking Release signature
I: Valid Release signature (key id 630239CC130E1A7FD81A27B140976EAF437D05B5)
I: Retrieving Packages
I: Validating Packages
I: Resolving dependencies of required packages...
I: Resolving dependencies of base packages...
I: Checking component main on http://archive.ubuntu.com/ubuntu...
I: Retrieving adduser
I: Validating adduser
I: Retrieving apt
I: Validating apt
I: Retrieving apt-utils
I: Validating apt-utils
I: Retrieving base-files
I: Validating base-files
I: Retrieving base-passwd
I: Validating base-passwd
I: Retrieving bash
I: Validating bash
I: Retrieving bsdutils
I: Validating bsdutils
I: Retrieving busybox-initramfs
I: Validating busybox-initramfs
I: Retrieving bzip2
I: Validating bzip2
I: Retrieving console-setup
I: Validating console-setup
I: Retrieving coreutils
I: Validating coreutils
I: Retrieving cpio
I: Validating cpio
I: Retrieving cron
I: Validating cron
I: Retrieving dash
I: Validating dash
I: Retrieving debconf
I: Validating debconf
I: Retrieving debconf-i18n
I: Validating debconf-i18n
I: Retrieving debianutils
I: Validating debianutils
I: Retrieving diffutils
I: Validating diffutils
I: Retrieving dmsetup
I: Validating dmsetup
I: Retrieving dpkg
I: Validating dpkg
I: Retrieving e2fslibs
I: Validating e2fslibs
I: Retrieving e2fsprogs
I: Validating e2fsprogs
I: Retrieving eject
I: Validating eject
I: Retrieving file
I: Validating file
I: Retrieving findutils
I: Validating findutils
I: Retrieving gcc-4.6-base
I: Validating gcc-4.6-base
I: Retrieving gnupg
I: Validating gnupg
I: Retrieving gpgv
I: Validating gpgv
I: Retrieving grep
I: Validating grep
I: Retrieving gzip
I: Validating gzip
I: Retrieving hostname
I: Validating hostname
I: Retrieving ifupdown
I: Validating ifupdown
I: Retrieving initramfs-tools
I: Validating initramfs-tools
I: Retrieving initramfs-tools-bin
I: Validating initramfs-tools-bin
I: Retrieving initscripts
I: Validating initscripts
I: Retrieving insserv
I: Validating insserv
I: Retrieving iproute
I: Validating iproute
I: Retrieving iputils-ping
I: Validating iputils-ping
I: Retrieving isc-dhcp-client
I: Validating isc-dhcp-client
I: Retrieving isc-dhcp-common
I: Validating isc-dhcp-common
I: Retrieving kbd
I: Validating kbd
I: Retrieving keyboard-configuration
I: Validating keyboard-configuration
I: Retrieving klibc-utils
I: Validating klibc-utils
I: Retrieving less
I: Validating less
I: Retrieving libacl1
I: Validating libacl1
I: Retrieving libapt-inst1.4
I: Validating libapt-inst1.4
I: Retrieving libapt-pkg4.12
I: Validating libapt-pkg4.12
I: Retrieving libattr1
I: Validating libattr1
I: Retrieving libblkid1
I: Validating libblkid1
I: Retrieving libbz2-1.0
I: Validating libbz2-1.0
I: Retrieving libc-bin
I: Validating libc-bin
I: 

[Bug 998766] [NEW] package samba 2:3.5.8~dfsg-1ubuntu2.5 failed to install/upgrade: ErrorMessage: Unterprozess neues post-removal-Skript gab den Fehlerwert 2 zurück

2012-05-13 Thread Matthias Andree
Public bug reported:

This happened during an upgrade with sudo do-release-upgrade from
natty (11.04) to oneiric (11.10) which is supposed to be an intermediate
step on the way to 12.04.

Note that the questions asked by apport about the samba setup (which
clients fail to connect, what my setup is) are entirely besides the
point -- I assume samba to be a dependency that other packages rely on.

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: samba 2:3.5.8~dfsg-1ubuntu2.5
ProcVersionSignature: Ubuntu 2.6.38-15.59-generic 2.6.38.8
Uname: Linux 2.6.38-15-generic x86_64
NonfreeKernelModules: fglrx
Architecture: amd64
Date: Sun May 13 16:16:38 2012
ErrorMessage: ErrorMessage: Unterprozess neues post-removal-Skript gab den 
Fehlerwert 2 zurück
OtherFailedConnect: Yes
SambaServerRegression: Yes
SmbConfIncluded: No
SourcePackage: samba
Title: package samba 2:3.5.8~dfsg-1ubuntu2.5 failed to install/upgrade: 
ErrorMessage: Unterprozess neues post-removal-Skript gab den Fehlerwert 2 zurück
UpgradeStatus: Upgraded to natty on 2012-05-13 (0 days ago)

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


** Tags: amd64 apport-package natty

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

Title:
  package samba 2:3.5.8~dfsg-1ubuntu2.5 failed to install/upgrade:
  ErrorMessage: Unterprozess neues post-removal-Skript gab den
  Fehlerwert 2 zurück

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/998766/+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 998766] Re: package samba 2:3.5.8~dfsg-1ubuntu2.5 failed to install/upgrade: ErrorMessage: Unterprozess neues post-removal-Skript gab den Fehlerwert 2 zurück

2012-05-13 Thread Matthias Andree
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in Ubuntu.
https://bugs.launchpad.net/bugs/998766

Title:
  package samba 2:3.5.8~dfsg-1ubuntu2.5 failed to install/upgrade:
  ErrorMessage: Unterprozess neues post-removal-Skript gab den
  Fehlerwert 2 zurück

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/998766/+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 890230] Re: package winbind (not installed) failed to install/upgrade: il sottoprocesso vecchio script di pre-removal ha restituito lo stato di errore 128

2012-05-13 Thread Robert Roth
*** This bug is a duplicate of bug 857765 ***
https://bugs.launchpad.net/bugs/857765

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug #857765, so it is being marked as such. Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report. Feel free to continue to report any other bugs you may
find.

** This bug has been marked a duplicate of bug 857765
   package winbind 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: 
subprocess installed pre-removal script returned error exit status 128

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

Title:
  package winbind (not installed) failed to install/upgrade: il
  sottoprocesso vecchio script di pre-removal ha restituito lo stato di
  errore 128

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/890230/+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 857765] Re: package winbind 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: subprocess installed pre-removal script returned error exit status 128

2012-05-13 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: samba (Ubuntu)
   Status: New = Confirmed

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

Title:
  package winbind 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade:
  subprocess installed pre-removal script returned error exit status 128

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/857765/+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 962826] Re: package samba-common 2:3.6.3-2ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 128

2012-05-13 Thread Robert Roth
*** This bug is a duplicate of bug 857765 ***
https://bugs.launchpad.net/bugs/857765

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug #857765, so it is being marked as such. Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report. Feel free to continue to report any other bugs you may
find.

** This bug has been marked a duplicate of bug 857765
   package winbind 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: 
subprocess installed pre-removal script returned error exit status 128

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

Title:
  package samba-common 2:3.6.3-2ubuntu1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 128

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/962826/+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 998732] Re: vmbuilder debootstrap crash

2012-05-13 Thread Alix Mougenot
It seemed that it was due to the use of a grsec kernel

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

Title:
  vmbuilder debootstrap crash

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vm-builder/+bug/998732/+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 876387] Re: fuser forking uncontrollably in cron job

2012-05-13 Thread hello there
Wow.. what a bunch of amateurs to allow such a fundamental functionality
to be crippled out of the box. Here i'm trying ubuntu for the first time
and I run into this shit? fuckk thisss. back to something I know
works NOT LIKE SHIT

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

Title:
  fuser forking uncontrollably in cron job

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/876387/+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 876387] Re: fuser forking uncontrollably in cron job

2012-05-13 Thread Philipp Kleinhenz
is this still present on 12.04 ?
inb4 a server update. and this is mission critical.

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

Title:
  fuser forking uncontrollably in cron job

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


Re: [Bug 998712] [NEW] dnsmasq integration into name resolution broken

2012-05-13 Thread Simon Kelley
On 13/05/12 11:00, Wolf Rogner wrote:
 Public bug reported:

 dnsmasq does not resolve DNS names correcty.

 Applications like Thunderbird or tools like ssh rely on working name
 resolution. However, if there never was a working name resolution,
 dnsmasq never gets to know about the DNS names.

 Setup:

 private network: 192.168.0.x/24
 domain mydomain.intern
 server: 192.168.0.1 hostname s1
 dhcp (.100 - .200) and bind running, postfix and dovecot running
 client: 192.168.0.100 (dhclient)

 /etc/resolv.conf
 ...
 nameserver 127.0.0.1
 search mydomain.intern

 /var/run/nm-dns-dnsmasq.conf
 server=192.168.0.1

 Open Thunderbird -  Thunderbird fails to open s1
 ssh admin@s1 -  ssh: Could not resolve hostname s1: Name or service not known

 Adding
 nameserver 192.168.0.1
 to /etc/resolv.conf

 resolves the issue immediately

 calling sudo resolvconf -u

 creates the lookup problem immediately again

Please could you add the  output from

dig s1

run when DNS is broken to this bug report, also

dig @192.168.0.1 s1

Cheers,

Simon.

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

Title:
  dnsmasq integration into name resolution broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dnsmasq/+bug/998712/+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 876387] Re: fuser forking uncontrollably in cron job

2012-05-13 Thread Ondřej Surý
@Phillip Kleinhenz: It's fixed in psmisc from 22.15-2 (as mentioned
above in my posts).

So yes, it is fixed in precise: http://packages.ubuntu.com/psmisc

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

Title:
  fuser forking uncontrollably in cron job

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/876387/+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 876387] Re: fuser forking uncontrollably in cron job

2012-05-13 Thread Philipp Kleinhenz
@Ondřej Surý
thank you. I wasn't aware there had been an point release including this fix.

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

Title:
  fuser forking uncontrollably in cron job

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/876387/+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 998929] [NEW] package samba 2:3.6.3-2ubuntu2.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-05-13 Thread MartyC1
*** This bug is a duplicate of bug 993581 ***
https://bugs.launchpad.net/bugs/993581

Public bug reported:

samba keeps failing during normal updates, all updates work except the
samba component

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: samba 2:3.6.3-2ubuntu2.1
ProcVersionSignature: Ubuntu 3.2.0-24.37-generic 3.2.14
Uname: Linux 3.2.0-24-generic i686
ApportVersion: 2.0.1-0ubuntu7
AptOrdering:
 ubuntu-tweak: Install
 samba: Configure
 system-config-samba: Configure
 ubuntu-tweak: Configure
Architecture: i386
Date: Sun May 13 19:09:01 2012
DuplicateSignature:
 Setting up samba (2:3.6.3-2ubuntu2.1) ...
 start: Job failed to start
 invoke-rc.d: initscript nmbd, action start failed.
 dpkg: error processing samba (--configure):
  subprocess installed post-installation script returned error exit status 1
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
SourcePackage: samba
Title: package samba 2:3.6.3-2ubuntu2.1 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
UpgradeStatus: Upgraded to precise on 2012-04-29 (14 days ago)

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


** Tags: apport-package i386 precise

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

Title:
  package samba 2:3.6.3-2ubuntu2.1 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/samba/+bug/998929/+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 998929] Re: package samba 2:3.6.3-2ubuntu2.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-05-13 Thread MartyC1
*** This bug is a duplicate of bug 993581 ***
https://bugs.launchpad.net/bugs/993581

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

Title:
  package samba 2:3.6.3-2ubuntu2.1 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/samba/+bug/998929/+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 998929] Re: package samba 2:3.6.3-2ubuntu2.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-05-13 Thread Apport retracing service
*** This bug is a duplicate of bug 993581 ***
https://bugs.launchpad.net/bugs/993581

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #993581, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Tags removed: need-duplicate-check

** This bug has been marked a duplicate of bug 993581
   package samba 2:3.6.3-2ubuntu2.1 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1

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

Title:
  package samba 2:3.6.3-2ubuntu2.1 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/samba/+bug/998929/+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 998942] [NEW] requires.txt has wrong dependancy versions

2012-05-13 Thread Sam Morrison
Public bug reported:

requires.txt has version specific requirements for pam and WebOb which
are not in installable in Ubuntu precise.

pam==0.1.4
WebOb==1.0.8

When using other wsgi apps along side keystone it will fail with error
like:

  File /usr/lib/python2.7/dist-packages/paste/deploy/loadwsgi.py, line 640, 
in find_egg_entry_point
pkg_resources.require(self.spec)
  File /usr/lib/python2.7/dist-packages/pkg_resources.py, line 686, in require
needed = self.resolve(parse_requirements(requirements))
  File /usr/lib/python2.7/dist-packages/pkg_resources.py, line 588, in resolve
raise VersionConflict(dist,req) # XXX put more info here
pkg_resources.VersionConflict: (WebOb 1.1.1 (/usr/lib/python2.7/dist-packages), 
Requirement.parse('WebOb==1.0.8'))


Similar one for pam

  File /usr/lib/python2.7/dist-packages/pkg_resources.py, line 686, in require
needed = self.resolve(parse_requirements(requirements))
  File /usr/lib/python2.7/dist-packages/pkg_resources.py, line 588, in resolve
raise VersionConflict(dist,req) # XXX put more info here
pkg_resources.VersionConflict: (PAM 0.4.2 (/usr/lib/python2.7/dist-packages), 
Requirement.parse('pam==0.1.4'))


This file is ignored when using keystone init scripts but is used for other 
things.

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

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

Title:
  requires.txt has wrong dependancy versions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/keystone/+bug/998942/+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 967410] Re: Windows clients cannot connect to shared printers

2012-05-13 Thread braddock
Same problem here.  From Win XP to a printer on Ubuntu Server 12.04.
Same procedure and error message.

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

Title:
  Windows clients cannot connect to shared printers

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/967410/+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 954127] Re: Network configuration fails during installation of 12.04

2012-05-13 Thread Launchpad Bug Tracker
[Expired for dhcp3 (Ubuntu) because there has been no activity for 60
days.]

** Changed in: dhcp3 (Ubuntu)
   Status: Incomplete = Expired

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

Title:
  Network configuration fails during installation of 12.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dhcp3/+bug/954127/+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 998715] [NEW] Unable to install libgck-1-0:i386 on amd64

2012-05-13 Thread Alexander Ponyatykh
Public bug reported:

libgcr-3-1:i386 depends on libgcr-3-common:i386, but this package doesn't 
exists, because libgcr-3-common is architecture independent.
===
$ LANG= sudo apt-get install libgcr-3-1:i386
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 libgcr-3-1:i386 : Depends: libgcr-3-common:i386 but it is not installable
E: Unable to correct problems, you have held broken packages.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: libgcr-3-1:i386 (not installed)
ProcVersionSignature: Ubuntu 3.2.0-24.37-generic 3.2.14
Uname: Linux 3.2.0-24-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 2.0.1-0ubuntu7
Architecture: amd64
Date: Sun May 13 14:05:01 2012
ProcEnviron:
 TERM=xterm
 SHELL=/bin/bash
 PATH=(custom, user)
 LANG=ru_RU.utf8
 LANGUAGE=ru_RU:ru:en_GB:en
SourcePackage: gnome-keyring
UpgradeStatus: Upgraded to precise on 2012-05-04 (9 days ago)

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


** Tags: amd64 apport-bug precise

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

Title:
  Unable to install libgck-1-0:i386 on amd64

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

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


Re: [Bug 888401] Re: Doesn't display any screen shots - just shows no screensho

2012-05-13 Thread tedaste
I'm running Kubuntu 12.04, I tried Audacity and there are no 
screenshots. This is on two separate machines

On Sat 12 May 2012 13:37:24 WST, Robert Roth wrote:
 Could you please check audacity for example? Or No screenshot is shown
 for every application?

 ** Changed in: software-center (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/888401

Title:
  Doesn't display any screen shots - just shows no screensho

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

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


[Bug 251164] Re: boot impossible due to missing initramfs failure hook / event driven initramfs

2012-05-13 Thread ceg
The udev rules don't need to prompt, the cryptsetup that gets called
will prompt. Actually, these things work quite well in the normal
system. It seems preferable to me to adjust/improve the regular tools to
be usable in initramfs as well, rather then trying to script up and
maintain! another thing inherently limited.

Failure hooks for example will be called in a specific order (not
necessarily matching the setup), if you are looping this should time out
with a message, then if the user plugs in the missing disk it won't come
up automatically (and if it does possibly only with a large delay as all
unrelated loops need to time out first), etc. Thus, its better to go
event driven, and then why not favor a proven tool.

Reasonable timeouts (see above and https://wiki.ubuntu.com/ReliableRaid)
are another reason to go event driven, they should not be several
waiting loops stacked up and possibly blocking each other.


Bug #491463 support upstart within an initramfs
https://launchpad.net/~csurbhi/+archive/natty-initramfs

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

Title:
  boot impossible due to missing initramfs failure hook / event driven
  initramfs

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

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


[Bug 751735] Re: [intel 82G35] HDMI color issues

2012-05-13 Thread Bug Watch Updater
** Changed in: linux
   Status: Confirmed = Fix Released

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

Title:
  [intel 82G35] HDMI color issues

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

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


Re: [Bug 888401] Re: Doesn't display any screen shots - just shows no screensho

2012-05-13 Thread tedaste
I'm running Kubuntu 12.04, I tried Audacity and there are no
screenshots. This is on two separate machines


On 12/05/12 13:37, Robert Roth wrote:
 Could you please check audacity for example? Or No screenshot is shown
 for every application?

 ** Changed in: software-center (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/888401

Title:
  Doesn't display any screen shots - just shows no screensho

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

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


[Bug 861625] Re: cannot save alsa settings

2012-05-13 Thread dinexi
You still can store the settings.

$ cd
$ sudo chown root .
$ sudo alsactl store
$ sudo chown `whoami` .

But this way is weird. :)

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

Title:
  cannot save alsa settings

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

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


[Bug 998716] [NEW] AttributeError: 'module' object has no attribute EventLoopActivator

2012-05-13 Thread eldad
Public bug reported:

I upgraded from ubuntu 11.10 to 12.04.
Then found out that due to ipython upgrade the command:

ipython -wthread

should be replaced by:

ipython --gui=wx

upon launching it (with or without --pylab) I would get a series of
output errors which included a repeating one:

AttributeError: 'module' object has no attribute EventLoopActivator

where the lines indicated that the 'module' is wx

After I could not find the bug on the web, I purged all packages found (under 
synaptic) searching for python wx.
After this I reinstalled mayavi2 and this resolved this error output.

I will file another bug, where I will write how to use mlab (from
mayavi), as I found this different from what I was used to in the
previous ubuntu versions.


$ lsb_release -rd
Description:Ubuntu 12.04 LTS
Release:12.04
eldada@vicpc18:~$

$ apt-cache policy python-wxgtk2.8
python-wxgtk2.8:
  Installed: 2.8.12.1-6ubuntu2
  Candidate: 2.8.12.1-6ubuntu2
  Version table:
 *** 2.8.12.1-6ubuntu2 0
500 http://mirror.isoc.org.il/pub/ubuntu/ precise/universe amd64 
Packages
100 /var/lib/dpkg/statu

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: python-wxgtk2.8 2.8.12.1-6ubuntu2
ProcVersionSignature: Ubuntu 3.2.0-24.38-generic 3.2.16
Uname: Linux 3.2.0-24-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.0.1-0ubuntu7
Architecture: amd64
Date: Sun May 13 13:11:36 2012
InstallationMedia: Ubuntu 9.10 Karmic Koala - Release amd64 (20091027)
ProcEnviron:
 LANGUAGE=en_GB:en
 PATH=(custom, user)
 LANG=en_GB.UTF-8
 SHELL=/bin/bash
SourcePackage: wxwidgets2.8
UpgradeStatus: Upgraded to precise on 2012-04-29 (13 days ago)

** Affects: wxwidgets2.8 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug precise

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

Title:
  AttributeError: 'module' object has no attribute EventLoopActivator

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wxwidgets2.8/+bug/998716/+subscriptions

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


[Bug 998716] Re: AttributeError: 'module' object has no attribute EventLoopActivator

2012-05-13 Thread eldad
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/998716

Title:
  AttributeError: 'module' object has no attribute EventLoopActivator

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wxwidgets2.8/+bug/998716/+subscriptions

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


[Bug 998239] Re: Login screen forces same resolution on all displays in non-identical multi-display setup

2012-05-13 Thread Tobias Schaible
Same here. My laptop (1366x768) and my external display (1920x1080) have
got a 16:9 resolution. On my laptop display it is shown in a 4:3
resolution with black borders on both sides. On the external display it
is shown in the same resolution like on the laptop display, but
fullscreen.

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

Title:
  Login screen forces same resolution on all displays in non-identical
  multi-display setup

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

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


[Bug 992583] Re: Touchpad cannot restart in ubuntu 12.04 with ACER 4810TZG

2012-05-13 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: ubuntu
   Status: New = Confirmed

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

Title:
  Touchpad cannot restart in ubuntu 12.04 with ACER 4810TZG

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

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


[Bug 717919] Re: ACPI + kworker high interrupts.

2012-05-13 Thread Alexander Thole
I recently updated to 12.04 from 11.10 and the problem still existed
even with the 3.4 kernel.

Disabling ACPI solved the problem but then the CPUs were running at full speed. 
As a Workaround I found this:
https://wiki.ubuntu.com/DebuggingACPI#Trouble_Booting

and booting with acpi=noirq worked for me.

$ uname -a
Linux Trifix 3.4.0-030400rc5-generic #201205011817 SMP Tue May 1 22:18:19 UTC 
2012 x86_64 x86_64 x86_64 GNU/Linux

top:

top - 12:28:01 up 21 min,  1 user,  load average: 0.50, 0.40, 0.26
Tasks: 178 total,   1 running, 177 sleeping,   0 stopped,   0 zombie
Cpu(s):  0.3%us,  0.2%sy,  0.0%ni, 98.7%id,  0.8%wa,  0.0%hi,  0.0%si,  0.0%st
Mem:   6094080k total,   952640k used,  5141440k free,90032k buffers
Swap:  6269948k total,0k used,  6269948k free,   403796k cached

  PID USER  PR  NI  VIRT  RES  SHR S %CPU %MEMTIME+  COMMAND
 1998 alex  20   0  394m  11m 8304 S2  0.2   0:06.51 multiload-apple
 2551 alex  20   0  742m 153m  35m S2  2.6   0:15.86 firefox
1 root  20   0 24432 2408 1352 S0  0.0   0:01.00 init   
2 root  20   0 000 S0  0.0   0:00.00 kthreadd   
3 root  20   0 000 S0  0.0   0:00.09 ksoftirqd/0
6 root  RT   0 000 S0  0.0   0:00.00 migration/0
7 root  RT   0 000 S0  0.0   0:00.00 watchdog/0 
8 root  RT   0 000 S0  0.0   0:00.00 migration/1
9 root  20   0 000 S0  0.0   0:00.10 kworker/1:0
   10 root  20   0 000 S0  0.0   0:00.10 ksoftirqd/1
   12 root  RT   0 000 S0  0.0   0:00.00 watchdog/1 
   13 root  RT   0 000 S0  0.0   0:00.00 migration/2
   14 root  20   0 000 S0  0.0   0:00.00 kworker/2:0
   15 root  20   0 000 S0  0.0   0:00.06 ksoftirqd/2
   16 root  RT   0 000 S0  0.0   0:00.00 watchdog/2 

The Computer is a Lenovo Y560p.

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

Title:
  ACPI + kworker high interrupts.

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

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


[Bug 969986] Re: In gnome-fallback the animation when opening an application from the panel ends with a ugly black square

2012-05-13 Thread tilly willy
The same issue. How can i disable this thing?
I delete all entries in Open Animation, but it still appears.

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

Title:
  In gnome-fallback the animation when opening an application from the
  panel ends with a ugly black square

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

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


[Bug 998718] [NEW] ipython mayavi session - change of syntax

2012-05-13 Thread eldad
Public bug reported:

This is not a true bug but there has been a change of syntax (starting with 
ubuntu 12.04)
which was not evident for me (and I could not find the full correct syntax 
anywhere else in the web).
Therefore I decided to put it here, hoping it would save others some time...

on previous ubuntu versions I used to use mayavi's module mlab within
an ipython + pylab session, using the following command:

ipython -wthread -pylab

After updating to ubuntu 12.04 this no longer works.
Searching the web I found that pylab should be called using --pylab (double 
dash instead of a single one)
and -wthread should be replaced with --gui=wx (again, a double dash is 
required).

trying:

ipython --pylab --gui=wx

(as well as interchanging the order of the arguments) failed.
First due to python-gtkwx problem which I reported (and some solution is 
proposed) here: 
https://bugs.launchpad.net/ubuntu/+source/wxwidgets2.8/+bug/998716
Next there was a problem with the behaviour of the mayavi window, invoked in 
ipython using (for example):

from mayavi import mlab
mlab.points3d(0,0,0,color=(1,0,0))

The plot was unresponsive.
To make it interactive I had to run:

 mlab.show()

which turned the ipython session unresponsive till the mayavi window was
closed.

Finally, I started the session using:

ipython --gui=wx --pylab=wx

(so far, works also when omitting --gui=wx)

For those who would like to run in the notebook flavour, inlining the
pylab plots:

ipython notebook --gui=wx --pylab inline

works nicely so far...
I hope this is useful for other users as well.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: mayavi2 4.0.0-3build1
ProcVersionSignature: Ubuntu 3.2.0-24.38-generic 3.2.16
Uname: Linux 3.2.0-24-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.0.1-0ubuntu7
Architecture: amd64
Date: Sun May 13 13:23:08 2012
InstallationMedia: Ubuntu 9.10 Karmic Koala - Release amd64 (20091027)
ProcEnviron:
 LANGUAGE=en_GB:en
 PATH=(custom, user)
 LANG=en_GB.UTF-8
 SHELL=/bin/bash
SourcePackage: mayavi2
UpgradeStatus: Upgraded to precise on 2012-04-29 (13 days ago)

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


** Tags: amd64 apport-bug precise

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

Title:
  ipython mayavi session - change of syntax

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

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


[Bug 998718] Re: ipython mayavi session - change of syntax

2012-05-13 Thread eldad
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/998718

Title:
  ipython mayavi session - change of syntax

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

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


[Bug 998716] Re: AttributeError: 'module' object has no attribute EventLoopActivator

2012-05-13 Thread eldad
** Description changed:

  I upgraded from ubuntu 11.10 to 12.04.
  Then found out that due to ipython upgrade the command:
  
- ipython -wthread
+ ipython -wthread
  
  should be replaced by:
  
- ipython --gui=wx
+ ipython --gui=wx
  
  upon launching it (with or without --pylab) I would get a series of
  output errors which included a repeating one:
  
- AttributeError: 'module' object has no attribute EventLoopActivator
+ AttributeError: 'module' object has no attribute EventLoopActivator
  
  where the lines indicated that the 'module' is wx
  
  After I could not find the bug on the web, I purged all packages found (under 
synaptic) searching for python wx.
  After this I reinstalled mayavi2 and this resolved this error output.
  
- I will file another bug, where I will write how to use mlab (from
- mayavi), as I found this different from what I was used to in the
- previous ubuntu versions.
+ I filed another bug, where I will write how to use mlab (from mayavi), as I 
found this different from what I was used to in the previous ubuntu versions:
+ https://bugs.launchpad.net/ubuntu/+source/mayavi2/+bug/998718
  
+ 
+ 
--
  
  $ lsb_release -rd
  Description:Ubuntu 12.04 LTS
  Release:12.04
  eldada@vicpc18:~$
  
  $ apt-cache policy python-wxgtk2.8
  python-wxgtk2.8:
-   Installed: 2.8.12.1-6ubuntu2
-   Candidate: 2.8.12.1-6ubuntu2
-   Version table:
-  *** 2.8.12.1-6ubuntu2 0
- 500 http://mirror.isoc.org.il/pub/ubuntu/ precise/universe amd64 
Packages
- 100 /var/lib/dpkg/statu
+   Installed: 2.8.12.1-6ubuntu2
+   Candidate: 2.8.12.1-6ubuntu2
+   Version table:
+  *** 2.8.12.1-6ubuntu2 0
+ 500 http://mirror.isoc.org.il/pub/ubuntu/ precise/universe amd64 
Packages
+ 100 /var/lib/dpkg/statu
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: python-wxgtk2.8 2.8.12.1-6ubuntu2
  ProcVersionSignature: Ubuntu 3.2.0-24.38-generic 3.2.16
  Uname: Linux 3.2.0-24-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.0.1-0ubuntu7
  Architecture: amd64
  Date: Sun May 13 13:11:36 2012
  InstallationMedia: Ubuntu 9.10 Karmic Koala - Release amd64 (20091027)
  ProcEnviron:
-  LANGUAGE=en_GB:en
-  PATH=(custom, user)
-  LANG=en_GB.UTF-8
-  SHELL=/bin/bash
+  LANGUAGE=en_GB:en
+  PATH=(custom, user)
+  LANG=en_GB.UTF-8
+  SHELL=/bin/bash
  SourcePackage: wxwidgets2.8
  UpgradeStatus: Upgraded to precise on 2012-04-29 (13 days ago)

** Description changed:

  I upgraded from ubuntu 11.10 to 12.04.
  Then found out that due to ipython upgrade the command:
  
  ipython -wthread
  
  should be replaced by:
  
  ipython --gui=wx
  
  upon launching it (with or without --pylab) I would get a series of
  output errors which included a repeating one:
  
  AttributeError: 'module' object has no attribute EventLoopActivator
  
  where the lines indicated that the 'module' is wx
  
  After I could not find the bug on the web, I purged all packages found (under 
synaptic) searching for python wx.
  After this I reinstalled mayavi2 and this resolved this error output.
  
- I filed another bug, where I will write how to use mlab (from mayavi), as I 
found this different from what I was used to in the previous ubuntu versions:
+ I filed another bug, where I explained how to use mlab (from mayavi), as I 
found this different from what I was used to in the previous ubuntu versions:
  https://bugs.launchpad.net/ubuntu/+source/mayavi2/+bug/998718
- 
  
  
--
  
  $ lsb_release -rd
  Description:Ubuntu 12.04 LTS
  Release:12.04
  eldada@vicpc18:~$
  
  $ apt-cache policy python-wxgtk2.8
  python-wxgtk2.8:
    Installed: 2.8.12.1-6ubuntu2
    Candidate: 2.8.12.1-6ubuntu2
    Version table:
   *** 2.8.12.1-6ubuntu2 0
  500 http://mirror.isoc.org.il/pub/ubuntu/ precise/universe amd64 
Packages
  100 /var/lib/dpkg/statu
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: python-wxgtk2.8 2.8.12.1-6ubuntu2
  ProcVersionSignature: Ubuntu 3.2.0-24.38-generic 3.2.16
  Uname: Linux 3.2.0-24-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.0.1-0ubuntu7
  Architecture: amd64
  Date: Sun May 13 13:11:36 2012
  InstallationMedia: Ubuntu 9.10 Karmic Koala - Release amd64 (20091027)
  ProcEnviron:
   LANGUAGE=en_GB:en
   PATH=(custom, user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: wxwidgets2.8
  UpgradeStatus: Upgraded to precise on 2012-04-29 (13 days ago)

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

Title:
  AttributeError: 'module' object has no attribute EventLoopActivator

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wxwidgets2.8/+bug/998716/+subscriptions


[Bug 978260] Re: unity-lens-video crashed with DBusException in call_blocking(): org.freedesktop.DBus.Error.Spawn.ChildExited: Process /usr/bin/zeitgeist-daemon exited with status 1

2012-05-13 Thread j.w.
*** This bug is a duplicate of bug 974756 ***
https://bugs.launchpad.net/bugs/974756

I just upgraded from 11.04 to 12.04 and got this bug.

FYI- the link in the following sentence above (the problem description)
doesn't work (it claims that the page doesn't exist):

This particular crash has already been reported and is a duplicate of
bug #974756, so is being marked as such.

PLEASE FIX THE NON-WORKING LINK.

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

Title:
  unity-lens-video crashed with DBusException in call_blocking():
  org.freedesktop.DBus.Error.Spawn.ChildExited: Process /usr/bin
  /zeitgeist-daemon exited with status 1

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

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


[Bug 974900] Re: Menus split across multi monitors

2012-05-13 Thread Jack Kelly
I have two monitors and am getting the same bug.  I'm using LibreOffice
3.5.3.2 (ubuntu repositories) and Ubuntu 12.04 x64.  LO worked fine on
Ubuntu 11.10.  The only fix I've found is to disable my second monitor
(this isn't an acceptable fix).

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

Title:
  Menus split across multi monitors

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

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


[Bug 998720] [NEW] Kernel lockup __ticket_spin_lock

2012-05-13 Thread Gareth Bult
Public bug reported:

Machine will respond to ping and I can log in with ssh, but pretty much 
everything else (top for example) doesn't work, type in the command and hit 
return and nothing happens. kern.log just repeats the following;
(all the machine is doing is running two CENTOS VM's under KVM - this is an 
up-to-date 12.04 system)


May 12 18:06:12 sh-thn-1 kernel: [435412.064004] BUG: soft lockup - CPU#0 stuck 
for 23s! [sshd:29633]
May 12 18:06:12 sh-thn-1 kernel: [435412.064084] Modules linked in: nbd 
ip6table_filter ip6_tables ebtable_nat ebtables ipt_MASQUERADE iptable_nat 
nf_nat ipt_REJECT xt_CHECKSUM iptable_mangle kvm_amd kvm nf_conntrack_ftp 
nf_conntrack_irc ipt_LOG xt_limit xt_tcpudp xt_state nf_conntrack_ipv4 
nf_conntrack nf_defrag_ipv4 iptable_filter ip_tables x_tables dm_crypt nfsd nfs 
lockd fscache auth_rpcgss nfs_acl sunrpc ext2 bridge snd_hda_codec_hdmi stp 
snd_hda_codec_realtek snd_hda_intel snd_hda_codec snd_hwdep snd_pcm snd_timer 
snd sp5100_tco soundcore shpchp dm_multipath snd_page_alloc psmouse edac_core 
edac_mce_amd k10temp joydev i2c_piix4 serio_raw sk98lin(O) asus_atk0110 mac_hid 
zfs(P) zcommon(P) znvpair(P) zavl(P) zunicode(P) spl(O) zlib_deflate multipath 
linear raid456 async_pq async_xor xor async_memcpy async_raid6_recov raid6_pq 
async_tx raid0 raid1 lp parport raid10 usbhid hid radeon ttm drm_kms_helper 
r8169 pata_atiixp drm i2c_algo_bit pata_jmicron wmi usb_storage
May 12 18:06:12 sh-thn-1 kernel: [435412.064117] CPU 0
May 12 18:06:12 sh-thn-1 kernel: [435412.064118] Modules linked in: nbd 
ip6table_filter ip6_tables ebtable_nat ebtables ipt_MASQUERADE iptable_nat 
nf_nat ipt_REJECT xt_CHECKSUM iptable_mangle kvm_amd kvm nf_conntrack_ftp 
nf_conntrack_irc ipt_LOG xt_limit xt_tcpudp xt_state nf_conntrack_ipv4 
nf_conntrack nf_defrag_ipv4 iptable_filter ip_tables x_tables dm_crypt nfsd nfs 
lockd fscache auth_rpcgss nfs_acl sunrpc ext2 bridge snd_hda_codec_hdmi stp 
snd_hda_codec_realtek snd_hda_intel snd_hda_codec snd_hwdep snd_pcm snd_timer 
snd sp5100_tco soundcore shpchp dm_multipath snd_page_alloc psmouse edac_core 
edac_mce_amd k10temp joydev i2c_piix4 serio_raw sk98lin(O) asus_atk0110 mac_hid 
zfs(P) zcommon(P) znvpair(P) zavl(P) zunicode(P) spl(O) zlib_deflate multipath 
linear raid456 async_pq async_xor xor async_memcpy async_raid6_recov raid6_pq 
async_tx raid0 raid1 lp parport raid10 usbhid hid radeon ttm drm_kms_helper 
r8169 pata_atiixp drm i2c_algo_bit pata_jmicron wmi usb_storage
May 12 18:06:12 sh-thn-1 kernel: [435412.064150]
May 12 18:06:12 sh-thn-1 kernel: [435412.064151] Pid: 29633, comm: sshd 
Tainted: P   O 3.2.0-24-generic #37-Ubuntu System manufacturer System 
Product Name/M4A89GTD-PRO
May 12 18:06:12 sh-thn-1 kernel: [435412.064154] RIP: 0010:[8103db20] 
 [8103db20] __ticket_spin_lock+0x20/0x30
May 12 18:06:12 sh-thn-1 kernel: [435412.064156] RSP: 0018:8803b1bb1c88  
EFLAGS: 0206
May 12 18:06:12 sh-thn-1 kernel: [435412.064158] RAX: 0403 RBX: 
88042dffb000 RCX: 00b0
May 12 18:06:12 sh-thn-1 kernel: [435412.064159] RDX: 0003 RSI: 
8801eb65c740 RDI: ea000d95bdf0
May 12 18:06:12 sh-thn-1 kernel: [435412.064160] RBP: 8803b1bb1c88 R08: 
7ff95d01f000 R09: 
May 12 18:06:12 sh-thn-1 kernel: [435412.064162] R10: 0004 R11: 
 R12: 02080008
May 12 18:06:12 sh-thn-1 kernel: [435412.064163] R13:  R14: 
ea000c9675c0 R15: 8803b1bb1c08
May 12 18:06:12 sh-thn-1 kernel: [435412.064165] FS:  7ff96321e7c0() 
GS:88042dc0() knlGS:
May 12 18:06:12 sh-thn-1 kernel: [435412.064167] CS:  0010 DS:  ES:  
CR0: 80050033
May 12 18:06:12 sh-thn-1 kernel: [435412.064168] CR2: 7ff95d220258 CR3: 
000317f5f000 CR4: 06f0
May 12 18:06:12 sh-thn-1 kernel: [435412.064169] DR0:  DR1: 
 DR2: 
May 12 18:06:12 sh-thn-1 kernel: [435412.064171] DR3:  DR6: 
0ff0 DR7: 0400
May 12 18:06:12 sh-thn-1 kernel: [435412.064172] Process sshd (pid: 29633, 
threadinfo 8803b1bb, task 8803fd8c2de0)
May 12 18:06:12 sh-thn-1 kernel: [435412.064173] Stack:
May 12 18:06:12 sh-thn-1 kernel: [435412.064200]  8803b1bb1c98 
8165c46e 8803b1bb1d48 8113c329
May 12 18:06:12 sh-thn-1 kernel: [435412.064203]  7ff95d220258 
0001 8803b1bb1ce8 810448dc
May 12 18:06:12 sh-thn-1 kernel: [435412.064205]  ea000844ddb0 
8803fd8c2de0 88019114e8f0 8801eb65c740
May 12 18:06:12 sh-thn-1 kernel: [435412.064208] Call Trace:
May 12 18:06:12 sh-thn-1 kernel: [435412.066211]  [8165c46e] 
_raw_spin_lock+0xe/0x20
May 12 18:06:12 sh-thn-1 kernel: [435412.066213]  [8113c329] 
zap_pte_range+0xb9/0x3c0
May 12 18:06:12 sh-thn-1 kernel: [435412.066215]  [810448dc] ? 
ptep_set_access_flags+0x6c/0x70
May 12 

[Bug 998719] [NEW] Xorg fails to start unless change from lightdm to gdm using Nouveau

2012-05-13 Thread Bill Murnane
Public bug reported:

Already reported, however this is a clean install of 12.04 and it still
happens

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: xorg 1:7.6+12ubuntu1
ProcVersionSignature: Ubuntu 3.2.0-24.37-generic-pae 3.2.14
Uname: Linux 3.2.0-24-generic-pae i686
.tmp.unity.support.test.1:
 
ApportVersion: 2.0.1-0ubuntu7
Architecture: i386
CompizPlugins: [core,composite,opengl,wobbly,cube,td]
CompositorRunning: None
Date: Sun May 13 22:33:01 2012
DistUpgraded: Fresh install
DistroCodename: precise
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes, whatever it takes to get this fixed in Ubuntu
GpuHangFrequency: I don't know
GpuHangReproducibility: Yes, I can easily reproduce it
GpuHangStarted: Immediately after installing this version of Ubuntu
GraphicsCard: NVIDIA Corporation NV18 [GeForce4 MX 440 AGP 8x] [10de:0181] (rev 
a2) (prog-if 00 [VGA controller])
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release i386 (20120423)
ProcEnviron:
 LANGUAGE=en_NZ:en
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_NZ.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-24-generic-pae 
root=UUID=e49fd143-e503-4ef1-b86c-e83b0814dc15 ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
Title: Xorg freeze
UdevDb: Error: [Errno 2] No such file or directory
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 02/13/2005
dmi.bios.vendor: Intel Corp.
dmi.bios.version: RL86510A.86A.0089.P21.0502132202
dmi.board.name: D865PERL
dmi.board.vendor: Intel Corporation
dmi.board.version: AAC27648-210
dmi.chassis.type: 2
dmi.modalias: 
dmi:bvnIntelCorp.:bvrRL86510A.86A.0089.P21.0502132202:bd02/13/2005:svn:pn:pvr:rvnIntelCorporation:rnD865PERL:rvrAAC27648-210:cvn:ct2:cvr:
version.compiz: compiz 1:0.9.7.8-0ubuntu1
version.libdrm2: libdrm2 2.4.32-1ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 8.0.2-0ubuntu3
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 8.0.2-0ubuntu3
version.xserver-xorg-core: xserver-xorg-core 2:1.11.4-0ubuntu10.1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.0-0ubuntu1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.14.99~git20111219.aacbd629-0ubuntu2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.17.0-1ubuntu4
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20111201+b5534a1-1build2

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


** Tags: apport-bug freeze i386 patch precise ubuntu

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

Title:
  Xorg fails to start unless change from lightdm to gdm using Nouveau

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

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


[Bug 998719] Re: Xorg fails to start unless change from lightdm to gdm using Nouveau

2012-05-13 Thread Bill Murnane
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/998719

Title:
  Xorg fails to start unless change from lightdm to gdm using Nouveau

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

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


[Bug 993187] Re: ubuntu 12.04 64bit completely freezes frequently

2012-05-13 Thread leh
Fails the same way for me too. Sometimes a complete freeze, sometimes I
am able to switch to the text terminal.

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

Title:
  ubuntu 12.04 64bit completely freezes frequently

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

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


[Bug 917866] Re: Not usable with gtkclutter

2012-05-13 Thread Dmitry Shachnev
Not a bug in gnome-sushi, adding clutter-gtk and overlay-scrollbar
packages.

** Changed in: gnome-sushi (Ubuntu)
   Status: New = Confirmed

** Also affects: overlay-scrollbar (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: overlay-scrollbar (Ubuntu)
   Status: New = Confirmed

** Package changed: gnome-sushi (Ubuntu) = clutter-gtk (Ubuntu)

** Summary changed:

- Not usable with gtkclutter
+ Overlay scrollbars are not working with clutter-gtk

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

Title:
  Overlay scrollbars are not working with clutter-gtk

To manage notifications about this bug go to:
https://bugs.launchpad.net/ayatana-scrollbar/+bug/917866/+subscriptions

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


[Bug 998672] Re: package plymouth-theme-kubuntu-logo 1:12.04ubuntu4 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 2

2012-05-13 Thread Harald Sitter
You unfortunately changed something on your system that broke the
package manager's abilitiy to properly use the debian alternatives
system.

Setting up plymouth-theme-edubuntu (12.04.1) ...
update-alternatives: error: cannot stat file 
'/lib/plymouth/themes/default.plymouth': Too many levels of symbolic links
dpkg: error processing plymouth-theme-edubuntu (--configure):
 subprocess installed post-installation script returned error exit status 2

You might want to try askubuntu.com for help as this is not a problem
with a package but your particular setup.

** Changed in: kubuntu-default-settings (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/998672

Title:
  package plymouth-theme-kubuntu-logo 1:12.04ubuntu4 failed to
  install/upgrade: ErrorMessage: subprocess installed post-installation
  script returned error exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kubuntu-default-settings/+bug/998672/+subscriptions

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


[Bug 982485] Re: [regression] Nvidia 295.40: Unity 3D does not work at all with the new nvidia driver

2012-05-13 Thread Evan R
Running Ubuntu 64 on Acer Aspire 8730 (NVIDIA GeForce 9600M GT), and
have the same problem when using xinerama to have dual display working
on 295.40. Unity 3d has exactly the same problem as described by
paulgault-r. I'm a linux newbie.. it says a fix was released -- where do
we find it / how do we apply it?

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

Title:
  [regression] Nvidia 295.40: Unity 3D does not work at all with the new
  nvidia driver

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

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


[Bug 910173] Re: Kernel Oops - BUG: unable to handle kernel NULL pointer dereference at 00000c88, EIP is at print_context_stack+0x80/0x100

2012-05-13 Thread Christopher M. Penalver
Sebastián Salazar Molina., please stop posting attachments to this
report. If you are having a problem in Ubuntu, please perform the
actions already requested of you in
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/910173/comments/10
.

** Attachment removed: apport.linux-image-3.2.0-24-generic-pae.h2QSq7.apport
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/910173/+attachment/3143720/+files/apport.linux-image-3.2.0-24-generic-pae.h2QSq7.apport

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

Title:
  Kernel Oops - BUG: unable to handle kernel NULL pointer dereference at
  0c88, EIP is at print_context_stack+0x80/0x100

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

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

[Bug 549727] Re: Touchpad stops working after login

2012-05-13 Thread t.alon...@gmail.com
My laptop (Compaq CQ41) running Ubuntu 12.04 was also same problem.

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

Title:
  Touchpad stops working after login

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/549727/+subscriptions

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


[Bug 251164] Re: boot impossible due to missing initramfs failure hook / event driven initramfs

2012-05-13 Thread ceg
 Since udev already provides an event driven framework in 
the initramfs, why add another one?

Hmm, if you would like to realize event driven init scripts, I believe
you may be able to rework the scripts from doing linear pre...post
things to just call a watchdog script that mostly sleeps and checks how
things are going on. And then have separate task scripts that get only
called by udev events, or the watchdog.

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

Title:
  boot impossible due to missing initramfs failure hook / event driven
  initramfs

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

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


[Bug 998722] [NEW] Disabling Bluetooth also disables Wi-Fi

2012-05-13 Thread Evren Yurtesen
Public bug reported:

I have a Broadcom Corporation BCM4313 which has bluetooth and wifi. I am
using the 'additional drivers' provided by ubuntu.

When I disable bluetooth from the top bar, wifi powers down too. It is
possible to disable bluetooth separatelly in Windows.

This happens on 12.04 LTS with latest packages (by today)

** Affects: ubuntu
 Importance: Undecided
 Status: New

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

Title:
  Disabling Bluetooth also disables Wi-Fi

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

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


[Bug 998720] Missing required logs.

2012-05-13 Thread Brad Figg
This bug is missing log files that will aid in diagnosing the problem.
From a terminal window please run:

apport-collect 998720

and then change the status of the bug to 'Confirmed'.

If, due to the nature of the issue you have encountered, you are unable
to run this command, please add a comment stating that fact and change
the bug status to 'Confirmed'.

This change has been made by an automated script, maintained by the
Ubuntu Kernel Team.

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

** Tags added: precise

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

Title:
  Kernel lockup __ticket_spin_lock

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

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


[Bug 998723] [NEW] unable to find apport in Applications Menu

2012-05-13 Thread j de lima
Public bug reported:

File not found
  
  
  
  
  


  Firefox can't find the file at 
/usr/share/ubuntustudio-docs/about/ubuntustudio-index.html.





  Check the file name for capitalization or other typing errors.
  Check to see if the file was moved, renamed or deleted.

I need help to resolve this issue.

** Affects: ubuntu
 Importance: Undecided
 Status: New

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

Title:
  unable to find apport in Applications Menu

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

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


[Bug 991713] Re: [8086:4232] Wireless not connecting in 12.04 Intel Wifi Link 5100

2012-05-13 Thread Christopher M. Penalver
Gerhard Radatz, please execute the following via the Terminal and feel free to 
subscribe me to it:
ubuntu-bug linux

Thanks!

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

Title:
  [8086:4232] Wireless not connecting in 12.04 Intel Wifi Link 5100

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

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


[Bug 974900] Re: Menus split across multi monitors

2012-05-13 Thread Jack Kelly
The relevant bug on the LibreOffice bugzilla appears to be
https://bugs.freedesktop.org/show_bug.cgi?id=48168

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

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

Title:
  Menus split across multi monitors

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

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


[Bug 185600] Re: [Upstream] LibreOffice repeatedly freezes after resuming laptop from sleep

2012-05-13 Thread Christopher M. Penalver
David, please execute the following via the Terminal and feel free to subscribe 
me to it:
ubuntu-bug nvidia-current

Thanks!

** Attachment removed: Xorg.0.log
   
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-180/+bug/185600/+attachment/3143785/+files/Xorg.0.log

** Attachment removed: To do
   
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-180/+bug/185600/+attachment/3143786/+files/To%20do

** Attachment removed: acpi-support
   
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-180/+bug/185600/+attachment/349644/+files/acpi-support

** Attachment removed: restart-compiz
   
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-180/+bug/185600/+attachment/1125902/+files/restart-compiz

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

Title:
  [Upstream] LibreOffice repeatedly freezes after resuming laptop from
  sleep

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

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


[Bug 996907] Re: Tomboy notes failed to synchronise, (500) INTERNAL SERVER ERROR.

2012-05-13 Thread David B
Hmm, seems the problem has gone away, sync is now working for me. No
changes at my end.

David

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

Title:
  Tomboy notes failed to synchronise,  (500) INTERNAL SERVER ERROR.

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

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


[Bug 325620] Re: qtpfsgui should depend on dcraw

2012-05-13 Thread Andreas Metzler
--
1.9.3-1
Superseded in lucid-release on 2010-01-05
Published in karmic-release on 2009-06-08

qtpfsgui (1.9.3-1) unstable; urgency=low
[...]
  * Add dcraw to Depends, since this tool is needed, although not
mentioned as a dependency in the upstream docs. Thanks to fabo
again.
--

** Changed in: qtpfsgui (Ubuntu)
   Status: New = Fix Released

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

Title:
  qtpfsgui should depend on dcraw

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

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


[Bug 998724] [NEW] virt-manager does not fuunction after installation

2012-05-13 Thread Evren Yurtesen
Public bug reported:

on Ubuntu 12.04 LTE the virt-manager does not function after
installation.

The installation is done by following:
https://help.ubuntu.com/community/KVM/Installation

The message is:
Error: No active connection to install on.

I have found a forum entry where other people were having the same problem and 
there are more details there:
http://ubuntuforums.org/showthread.php?t=1976578

** Affects: ubuntu
 Importance: Undecided
 Status: New

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

Title:
  virt-manager does not fuunction after installation

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

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


Re: [Bug 998592] Re: White boxes sometimes appear

2012-05-13 Thread Vadim Peretokin
Seldomly and at random GTK+ places. My GPU is a high-end GTX 560 one.

vadi@gooseberry:~$ glxinfo
name of display: :0.0
display: :0  screen: 0
direct rendering: Yes
server glx vendor string: NVIDIA Corporation
server glx version string: 1.4
server glx extensions:
GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_SGIX_fbconfig,
GLX_SGIX_pbuffer, GLX_SGI_video_sync, GLX_SGI_swap_control,
GLX_EXT_swap_control, GLX_EXT_texture_from_pixmap,
GLX_ARB_create_context,
GLX_ARB_create_context_profile, GLX_EXT_create_context_es2_profile,
GLX_ARB_create_context_robustness, GLX_ARB_multisample,
GLX_NV_float_buffer, GLX_ARB_fbconfig_float, GLX_EXT_framebuffer_sRGB
client glx vendor string: NVIDIA Corporation
client glx version string: 1.4
client glx extensions:
GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_visual_info,
GLX_EXT_visual_rating, GLX_EXT_import_context, GLX_SGI_video_sync,
GLX_NV_swap_group, GLX_NV_video_out, GLX_SGIX_fbconfig,
GLX_SGIX_pbuffer,
GLX_SGI_swap_control, GLX_EXT_swap_control, GLX_ARB_create_context,
GLX_ARB_create_context_profile, GLX_NV_float_buffer,
GLX_ARB_fbconfig_float, GLX_EXT_fbconfig_packed_float,
GLX_EXT_texture_from_pixmap, GLX_EXT_framebuffer_sRGB,
GLX_NV_present_video, GLX_NV_copy_image, GLX_NV_multisample_coverage,
GLX_NV_video_capture, GLX_EXT_create_context_es2_profile,
GLX_ARB_create_context_robustness
GLX version: 1.4
GLX extensions:
GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_SGIX_fbconfig,
GLX_SGIX_pbuffer, GLX_SGI_video_sync, GLX_SGI_swap_control,
GLX_EXT_swap_control, GLX_EXT_texture_from_pixmap,
GLX_ARB_create_context,
GLX_ARB_create_context_profile, GLX_EXT_create_context_es2_profile,
GLX_ARB_create_context_robustness, GLX_ARB_multisample,
GLX_NV_float_buffer, GLX_ARB_fbconfig_float, GLX_EXT_framebuffer_sRGB,
GLX_ARB_get_proc_address
OpenGL vendor string: NVIDIA Corporation
OpenGL renderer string: GeForce GTX 560/PCIe/SSE2
OpenGL version string: 4.2.0 NVIDIA 295.49
OpenGL shading language version string: 4.20 NVIDIA via Cg compiler
OpenGL extensions:
GL_ARB_base_instance, GL_ARB_blend_func_extended,
GL_ARB_color_buffer_float, GL_ARB_compatibility,
GL_ARB_compressed_texture_pixel_storage, GL_ARB_conservative_depth,
GL_ARB_copy_buffer, GL_ARB_depth_buffer_float, GL_ARB_depth_clamp,
GL_ARB_depth_texture, GL_ARB_draw_buffers, GL_ARB_draw_buffers_blend,
GL_ARB_draw_indirect, GL_ARB_draw_elements_base_vertex,
GL_ARB_draw_instanced, GL_ARB_ES2_compatibility,
GL_ARB_explicit_attrib_location, GL_ARB_fragment_coord_conventions,
GL_ARB_fragment_program, GL_ARB_fragment_program_shadow,
GL_ARB_fragment_shader, GL_ARB_framebuffer_object,
GL_ARB_framebuffer_sRGB, GL_ARB_geometry_shader4,
GL_ARB_get_program_binary, GL_ARB_gpu_shader5, GL_ARB_gpu_shader_fp64,
GL_ARB_half_float_pixel, GL_ARB_half_float_vertex, GL_ARB_imaging,
GL_ARB_instanced_arrays, GL_ARB_internalformat_query,
GL_ARB_map_buffer_alignment, GL_ARB_map_buffer_range,
GL_ARB_multisample,
GL_ARB_multitexture, GL_ARB_occlusion_query, GL_ARB_occlusion_query2,
GL_ARB_pixel_buffer_object, GL_ARB_point_parameters,
GL_ARB_point_sprite,
GL_ARB_provoking_vertex, GL_ARB_robustness, GL_ARB_sample_shading,
GL_ARB_sampler_objects, GL_ARB_seamless_cube_map,
GL_ARB_separate_shader_objects, GL_ARB_shader_atomic_counters,
GL_ARB_shader_bit_encoding, GL_ARB_shader_image_load_store,
GL_ARB_shader_objects, GL_ARB_shader_precision,
GL_ARB_shader_subroutine,
GL_ARB_shading_language_100, GL_ARB_shading_language_420pack,
GL_ARB_shading_language_include, GL_ARB_shading_language_packing,
GL_ARB_shadow, GL_ARB_sync, GL_ARB_tessellation_shader,
GL_ARB_texture_border_clamp, GL_ARB_texture_buffer_object,
GL_ARB_texture_buffer_object_rgb32, GL_ARB_texture_compression,
GL_ARB_texture_compression_bptc, GL_ARB_texture_compression_rgtc,
GL_ARB_texture_cube_map, GL_ARB_texture_cube_map_array,
GL_ARB_texture_env_add, GL_ARB_texture_env_combine,
GL_ARB_texture_env_crossbar, GL_ARB_texture_env_dot3,
GL_ARB_texture_float, GL_ARB_texture_gather,
GL_ARB_texture_mirrored_repeat, GL_ARB_texture_multisample,
GL_ARB_texture_non_power_of_two, GL_ARB_texture_query_lod,
GL_ARB_texture_rectangle, GL_ARB_texture_rg, GL_ARB_texture_rgb10_a2ui,
GL_ARB_texture_storage, GL_ARB_texture_swizzle, GL_ARB_timer_query,
GL_ARB_transform_feedback2, GL_ARB_transform_feedback3,
GL_ARB_transform_feedback_instanced, GL_ARB_transpose_matrix,
GL_ARB_uniform_buffer_object, GL_ARB_vertex_array_bgra,
GL_ARB_vertex_array_object, GL_ARB_vertex_attrib_64bit,
GL_ARB_vertex_buffer_object, GL_ARB_vertex_program,
GL_ARB_vertex_shader,
GL_ARB_vertex_type_2_10_10_10_rev, GL_ARB_viewport_array,
GL_ARB_window_pos, GL_ATI_draw_buffers, GL_ATI_texture_float,
GL_ATI_texture_mirror_once, GL_S3_s3tc, GL_EXT_texture_env_add,

[Bug 982485] Re: [regression] Nvidia 295.40: Unity 3D does not work at all with the new nvidia driver

2012-05-13 Thread Wal
Hi Evan if you are running 64 bit Ubuntu 12.04 precise go to the link
below and download the 55.9MB Deb file. Once downloaded open it and
install it it will automatically install through software centre. It
does work and fixed all my problems with the previous driver.


https://launchpad.net/~suraia/+archive/ppa/+build/3464331

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

Title:
  [regression] Nvidia 295.40: Unity 3D does not work at all with the new
  nvidia driver

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

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


[Bug 222695] Re: [obex] Moving or rename file on Mobile Phone is impossible

2012-05-13 Thread Niklas Fischer
I just got the same error message today on 12.04, so I guess the bug is
still not solved after more than four years :(

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

Title:
  [obex] Moving or rename file on Mobile Phone is impossible

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

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


[Bug 995570] Re: Wired PS/2 keyboard/mouse on Foxconn D270S Motherboard not responding in 12.04 Live CD or after install. Same hardware works flawlessly with 10.04

2012-05-13 Thread Christopher M. Penalver
Mehmet Akif TAŞOVA, in the Live CD please execute the following via the 
Terminal and feel free to subscribe me to it:
ubuntu-bug xserver-xorg-input-evdev

Thanks!

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

Title:
  Wired PS/2 keyboard/mouse on Foxconn D270S Motherboard not responding
  in 12.04 Live CD or after install. Same hardware works flawlessly with
  10.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-evdev/+bug/995570/+subscriptions

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

[Bug 973419] Re: ubuntu 12.04 Beta 2: Nvidia Bianary Drivers with Xinerama corupts non GTK3 themes

2012-05-13 Thread Juha Lumme
This affects me as well.

My setup is an Nvidia gtx260, with 2 monitors.
Not sure it really matters, but nobody seems to have mentioned that also 
transparent stuff gets broken, such as notifications, or unity help text when 
hovering over an icon in the launchbar... 

Here is a screenshot of my issue: http://postimage.org/image/u8k7ilnsl/
And my xorg.conf: http://paste.ubuntu.com/984926/

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

Title:
  ubuntu 12.04 Beta 2: Nvidia Bianary Drivers with Xinerama corupts non
  GTK3 themes

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

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


[Bug 889646] Re: rtl8111/8168b don't work properly at ubuntu 64-bits

2012-05-13 Thread Christopher M. Penalver
texaco, this bug report is being closed due to your last comment
regarding this being fixed with an update. 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.

** Changed in: linux (Ubuntu)
   Status: Incomplete = Invalid

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

Title:
  rtl8111/8168b don't work properly at ubuntu 64-bits

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

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


[Bug 998724] Re: virt-manager does not fuunction after installation

2012-05-13 Thread Evren Yurtesen
It appears it is working when virt-manager is executed by root and bios
has virtualization enabled (perhaps the packages should check this
automatically eh?'

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

Title:
  virt-manager does not fuunction after installation

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

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


[Bug 908526] Re: Shutter indicator somtimes only visible in Expo view

2012-05-13 Thread Lonnie Lee Best
I haven't seen the shuttle indicator show since Ubuntu 10.10 which used
GNOME 2. Is there any chance it will ever appear in Unity Desktop
running Ubuntu 12.04 (without out having to do additional white
listing steps)?

** Changed in: shutter (Ubuntu)
   Status: Invalid = Confirmed

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

Title:
  Shutter indicator somtimes only visible in Expo view

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

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


[Bug 874418] Re: linking against librt doesn't provide sem_post

2012-05-13 Thread Michael Kerrisk
So, it'd be good if someone had directed this to upstream man-pages. I
found this bug report by chance. I've made appropriate changes for the
upcoming man-pages-3.42.

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

Title:
  linking against librt doesn't provide sem_post

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

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


[Bug 998729] [NEW] lua services discovery error

2012-05-13 Thread Sam_
Public bug reported:

Reproducable.
Open vlc and then playlist. 
Go to 'Internet' and click on e.g. Free Music Charts or Jamendo. (screenshot)
Result:
It won't respond nor display anything.
Playlist dialog can only be closed by 'force quit' dialog.
But this doesn't quit vlc. 
Right click on the panel icon selecting quit also doesn't quit vlc. Needs to be 
killed by pid.

Terminal output:
~$ vlc
VLC media player 2.0.1 Twoflower (revision 2.0.1-0-gf432547)
[0x19a0d68] dbus interface: listening on dbus as: org.mpris.MediaPlayer2.vlc
[0x194b138] main libvlc: Running vlc with the default interface. Use 'cvlc' to 
use vlc without interface.
[0x7ffacc3dcbd8] lua services discovery error: Error loading script 
/usr/lib/vlc/lua/sd/fmc.luac: lua/sd/fmc.lua:22: attempt to call global 
'require' (a nil value)

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: vlc 2.0.1-4
ProcVersionSignature: Ubuntu 3.2.0-24.37-generic 3.2.14
Uname: Linux 3.2.0-24-generic x86_64
ApportVersion: 2.0.1-0ubuntu7
Architecture: amd64
Date: Sun May 13 13:16:19 2012
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Alpha amd64 (20120204)
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
SourcePackage: vlc
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug precise

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

Title:
  lua services discovery error

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

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


[Bug 998729] Re: lua services discovery error

2012-05-13 Thread Sam_
** Attachment added: playlist-stuck.png
   
https://bugs.launchpad.net/bugs/998729/+attachment/3144402/+files/playlist-stuck.png

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

Title:
  lua services discovery error

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

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


[Bug 998728] [NEW] package python-uno 1:3.4.4-0ubuntu1 failed to install/upgrade: conflicting packages - not installing python-uno

2012-05-13 Thread Ronnie
Public bug reported:

I am unable to install any app from the Softwate Centre

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: python-uno 1:3.4.4-0ubuntu1
ProcVersionSignature: Ubuntu 3.2.0-24.37-generic-pae 3.2.14
Uname: Linux 3.2.0-24-generic-pae i686
ApportVersion: 2.0.1-0ubuntu7
Architecture: i386
Date: Sun May 13 12:14:21 2012
DpkgTerminalLog:
 dpkg: regarding .../python-uno_1%3a3.5.3-0ubuntu1_i386.deb containing 
python-uno:
  python-uno conflicts with libreoffice-core ( 1:3.5~)
   libreoffice-core (version 1:3.4.4-0ubuntu1) is present and broken due to 
postinst failure.
 dpkg: error processing 
/var/cache/apt/archives/python-uno_1%3a3.5.3-0ubuntu1_i386.deb (--unpack):
  conflicting packages - not installing python-uno
ErrorMessage: conflicting packages - not installing python-uno
InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release i386 (20111012)
SourcePackage: libreoffice
Title: package python-uno 1:3.4.4-0ubuntu1 failed to install/upgrade: 
conflicting packages - not installing python-uno
UpgradeStatus: Upgraded to precise on 2012-05-12 (0 days ago)

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


** Tags: apport-package i386 precise

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

Title:
  package python-uno 1:3.4.4-0ubuntu1 failed to install/upgrade:
  conflicting packages - not installing python-uno

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

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


[Bug 998728] Re: package python-uno 1:3.4.4-0ubuntu1 failed to install/upgrade: conflicting packages - not installing python-uno

2012-05-13 Thread Ronnie
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/998728

Title:
  package python-uno 1:3.4.4-0ubuntu1 failed to install/upgrade:
  conflicting packages - not installing python-uno

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

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


[Bug 998727] [NEW] Desktop freezes, mouse movable but no interaction

2012-05-13 Thread J Phani Mahesh
*** This bug is a duplicate of bug 993187 ***
https://bugs.launchpad.net/bugs/993187

Public bug reported:

Symptoms:
Desktop freezes. A look at the clock applet indicates that display stopped 
refreshing. Mouse is movable, but there is no interaction. i.e, clicks do not 
do anything. Keyboard input does nothing.

Known workaround:
Switch to a tty, login, and run unity --replace. It gets fixed, but the 
problem may recurr after a while.

How to reproduce:
Some actions trigger this behaviour everytime they are done, for example, 
opening calibre (which doen't open, btw), or trying to delete a file (bypassing 
trash) from nautilus. Othertimes, it occours randomly.

 1. Open nautilus,
 2. Right click a file/folder, and click delete. 
  OR, with calibre installed,
1. Open Dash
2. Search for calibre
3. Click calibre to open.
OR, wait for it to happen all of a sudden.

Details and additional information:
--
Distributor ID: Ubuntu
Description:Ubuntu 12.04 LTS
Release:12.04
Codename:   precise

* Fresh installation, retaining /home from previous 11.10 install. 
* If confirmed as a bug, will be a regression. i.e; everything was working 
flawlessly in 11.10.
* Some wierd proxy config doesn't let me use ubuntu-bug, and so i'm attaching 
.apport files generated by apport-cli.
* Unsure of the culprit, but starting with compiz as a reasonable guess.

** Affects: compiz (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/998727

Title:
  Desktop freezes, mouse movable but no interaction

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

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


[Bug 998727] Re: Desktop freezes, mouse movable but no interaction

2012-05-13 Thread J Phani Mahesh
*** This bug is a duplicate of bug 993187 ***
https://bugs.launchpad.net/bugs/993187


** Attachment added: Apport-cli generated .apport file for compiz
   
https://bugs.launchpad.net/bugs/998727/+attachment/3144395/+files/compiz1.apport

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

Title:
  Desktop freezes, mouse movable but no interaction

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

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


[Bug 998727] Re: Desktop freezes, mouse movable but no interaction

2012-05-13 Thread J Phani Mahesh
*** This bug is a duplicate of bug 993187 ***
https://bugs.launchpad.net/bugs/993187


** Attachment added: Apport-cli generated .apport file for calibre
   
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/998727/+attachment/3144396/+files/calibre.apport

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

Title:
  Desktop freezes, mouse movable but no interaction

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

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


[Bug 998727] Re: Desktop freezes, mouse movable but no interaction

2012-05-13 Thread Bernhard Siebelmann
*** This bug is a duplicate of bug 993187 ***
https://bugs.launchpad.net/bugs/993187

** This bug has been marked a duplicate of bug 993187
   ubuntu 12.04 64bit completely freezes frequently

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

Title:
  Desktop freezes, mouse movable but no interaction

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

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


[Bug 998239] Re: Login screen forces same resolution on all displays in non-identical multi-display setup

2012-05-13 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: lightdm (Ubuntu)
   Status: New = Confirmed

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

Title:
  Login screen forces same resolution on all displays in non-identical
  multi-display setup

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

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


Re: [Bug 995570] Re: Wired PS/2 keyboard/mouse on Foxconn D270S Motherboard not responding in 12.04 Live CD or after install. Same hardware works flawlessly with 10.04

2012-05-13 Thread Mehmet Akif TAŞOVA
I thiink there is no need anymore, i reinstalled ubuntu and problem solved
(yeah i am a bit lazy)

On 13 May 2012 14:18, Christopher M. Penalver
christopher.penal...@gmx.comwrote:

 Mehmet Akif TAŞOVA, in the Live CD please execute the following via the
 Terminal and feel free to subscribe me to it:
 ubuntu-bug xserver-xorg-input-evdev

 Thanks!

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/995570

 Title:
  Wired PS/2 keyboard/mouse on Foxconn D270S Motherboard not responding
  in 12.04 Live CD or after install. Same hardware works flawlessly with
  10.04

 Status in “xserver-xorg-input-evdev” package in Ubuntu:
  Incomplete

 Bug description:
  My Wired PS/2 keyboard and mouse do not work in 12.04, either in a
  fresh install or from the Live CD. A USB keyboard and mouse will work.
  The PS/2 keyboard and mouse will work using the same hardware and a
  fresh 10.04 Ubuntu install or a fresh Windows 7 install.

  So far I've tried running in the fresh 12.04 install:

  sudo apt-get install

  sudo apt-get upgrade

  sudo apt-get dist-upgrade

  After the apt-get upgraded the first time, I now get to the point
  where there are 0 items to be upgraded. Rebooted and still no PS/2
  keyboard/mouse.

  I've also tried adding the following lines to GRUB at boot time (the
  PS/2 keyboard works in GRUB)

  acpi=noirq

  acpi=off

  Neither setting made any difference.

  The motherboard is a Foxconn D270S Atom based motherboard. Even more
  interestingly, 12.04 recognizes the same PS/2 keyboard and mouse on a
  separate Gigabyte AM3+ based motherboard. I only have this problem on
  this particular motherboard with Ubuntu 12.04.

  Update...

  I dug out an old PS/2 mouse that does not use a PS/2 to USB adapter
  but is directly wired for PS/2. Still no PS/2 keyboard or mouse after
  reboot. Again, I only have this problem with this motherboard and
  12.04 Ubuntu. Other motherboards work fine with 12.04 and this
  motherboard works fine with 10.04.

  Update 2...

  I installed the 12.04 Server version. The text-based installer recognized
 the keyboard without issue, but after the first boot into the installed OS,
 the PS/2 keyboard would no longer respond. I tried installing Gnome on the
 Server install and the PS/2 mouse and keyboard don't work in Gnome either.
  ---
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
  ApportVersion: 2.0.1-0ubuntu5
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  localuser   1526 F pulseaudio
  CRDA: Error: command ['iw', 'reg', 'get'] failed with exit code 1:
 nl80211 not found.
  Card0.Amixer.info:
   Card hw:0 'Intel'/'HDA Intel at 0xdff0 irq 44'
 Mixer name : 'Intel CedarTrail HDMI'
 Components : 'HDA:10ec0662,105b0d7c,00100101
 HDA:80862880,80860101,0010'
 Controls  : 44
 Simple ctrls  : 21
  DistroRelease: Ubuntu 12.04
  HibernationDevice: RESUME=UUID=3bf8023c-3957-4e59-97a7-d0b64cb87c27
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release i386
 (20120423)
  IwConfig:
   lono wireless extensions.

   eth1  no wireless extensions.

   eth0  no wireless extensions.
  MachineType: To be filled by O.E.M. To be filled by O.E.M.
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-24-generic-pae
 root=UUID=460095c2-e0ed-4610-a2ca-18e7bb8a7cb1 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.2.0-24.37-generic-pae 3.2.14
  RelatedPackageVersions:
   linux-restricted-modules-3.2.0-24-generic-pae N/A
   linux-backports-modules-3.2.0-24-generic-pae  N/A
   linux-firmware1.79
  RfKill:

  SourcePackage: linux
  Tags:  precise precise
  Uname: Linux 3.2.0-24-generic-pae i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 03/23/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: B35F1P05
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: D270S/D250S
  dmi.board.vendor: Foxconn
  dmi.board.version: MP
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias:
 dmi:bvnAmericanMegatrendsInc.:bvrB35F1P05:bd03/23/2012:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnFoxconn:rnD270S/D250S:rvrMP:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.name: To be filled by O.E.M.
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: To be filled by O.E.M.

 To manage notifications about this bug go to:

 https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-evdev/+bug/995570/+subscriptions


-- 
You received this bug 

[Bug 985640] Re: At-spi2-core package binaries are in a multi-arch location.

2012-05-13 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: at-spi2-core (Ubuntu Quantal)
   Status: New = Confirmed

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

Title:
  At-spi2-core package binaries are in a multi-arch location.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/at-spi2-core/+bug/985640/+subscriptions

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


[Bug 985585] Re: Rhythmbox freeze while enabling ReplayGain

2012-05-13 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: rhythmbox (Ubuntu)
   Status: New = Confirmed

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

Title:
  Rhythmbox freeze while enabling ReplayGain

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

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


[Bug 985585] Re: Rhythmbox freeze while enabling ReplayGain

2012-05-13 Thread Joshua Dunamis
This bug is still present in Ubuntu 12.04 64bit

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

Title:
  Rhythmbox freeze while enabling ReplayGain

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

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


[Bug 998727] Re: Desktop freezes, mouse movable but no interaction

2012-05-13 Thread J Phani Mahesh
*** This bug is a duplicate of bug 993187 ***
https://bugs.launchpad.net/bugs/993187

Since unity --replace solves, and i'm able to switch ttys and work on
the, and so its not a complete system freeze i am experiencing, and i
doubt the duplicate status. The bug#993187 and this seem to be related,
but are *possibly* different.

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

Title:
  Desktop freezes, mouse movable but no interaction

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

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


[Bug 987734] Re: mplayer crashes with 32-bit cpu but not 64-bit cpu

2012-05-13 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: mplayer2 (Ubuntu)
   Status: New = Confirmed

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

Title:
  mplayer crashes with 32-bit cpu but not 64-bit cpu

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

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


[Bug 982485] Re: [regression] Nvidia 295.40: Unity 3D does not work at all with the new nvidia driver

2012-05-13 Thread Sven
Hi everyone,
I have tried the 295.49 driver and this fixes the problem for me.
Cheers, Sven

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

Title:
  [regression] Nvidia 295.40: Unity 3D does not work at all with the new
  nvidia driver

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

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


[Bug 969986] Re: In gnome-fallback the animation when opening an application from the panel ends with a ugly black square

2012-05-13 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: compiz (Ubuntu)
   Status: New = Confirmed

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

Title:
  In gnome-fallback the animation when opening an application from the
  panel ends with a ugly black square

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

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


[Bug 721786] Re: Scroll-bar lacks sufficient contrast to easily identify its position in the scroll-track

2012-05-13 Thread nihop
Ivan writes in duplicate of this bug number 563474: In my opinion it's
good solution just to set colorize_scrollbar to TRUE in theme
gtk-2.0/gtkrc file. I agree with him.

** Attachment added: colorize_scrollbar.png
   
https://bugs.launchpad.net/ubuntu/+source/light-themes/+bug/721786/+attachment/3144405/+files/colorize_scrollbar.png

** Tags added: accessibility usability

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

Title:
  (Non-overlay) scroll-bar lacks sufficient contrast to easily identify
  its position in the scroll-track

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

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


[Bug 721786] Re: (Non-overlay) scroll-bar lacks sufficient contrast to easily identify its position in the scroll-track

2012-05-13 Thread nihop
** Summary changed:

- Scroll-bar lacks sufficient contrast to easily identify its position in the 
scroll-track
+ (Non-overlay) scroll-bar lacks sufficient contrast to easily identify its 
position in the scroll-track

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

Title:
  (Non-overlay) scroll-bar lacks sufficient contrast to easily identify
  its position in the scroll-track

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

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


[Bug 995047] Re: x-server randomly freezes on integrated intel graphics device (celeron g530)

2012-05-13 Thread Bernhard Siebelmann
*** This bug is a duplicate of bug 993187 ***
https://bugs.launchpad.net/bugs/993187

** This bug has been marked a duplicate of bug 993187
   ubuntu 12.04 64bit completely freezes frequently

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

Title:
  x-server randomly freezes on integrated intel graphics device (celeron
  g530)

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

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


[Bug 997891] Re: sometimes cannot build pdfs for de, sl, pt, es, nl, pl, or it locales

2012-05-13 Thread Melissa Draper
** Description changed:

  Newer versions of docutils (=0.8) report full language name rather than
  shortcodes and hence breaking pdf compilation in de, sl, pt, es, nl, pl
  and it locales as the \shorthandoff directive is not added and
  triggering latex is generated.
  
  I submitted this patch upstream last night and it was accepted.
  https://bitbucket.org/birkenfeld/sphinx/pull-request/64/added-language-
  names-to-the-shorthandoff
  
  SRU Info:
  [Impact] - On systems where python-docutils is version 0.8 or above, this bug 
prevents pdf generation from sphinx generated latex source for the de, sl, pt, 
es, nl, pl and it locales. I expect that my upstream patch will be released 
with the next version of python-sphinx.
  
  [Development Fix] - A debdiff for quantal has been attached. It is
  functionally identical to the precise-proposed debdiff as the sphinx
  versions are still identical.
  
  [Stable Fix] - A debdiff for precise-proposed has been attached. It adds
  full language names to the pool of shortcodes which the tex file writer
  uses to evaluate the necessity of the \shorthandoff directive.
  
- [Test Case] - I encountered this issue while trying to build the Mahara
- manual ( git://gitorious.org/mahara/manual.git ) on precise.
+ [Test Case] - Note: The debian maintainer offers a better minimal test
+ here: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=672586#31
+ 
+ I encountered this issue while trying to build the Mahara manual (
+ git://gitorious.org/mahara/manual.git ) on precise.
  
  * Install git-core and python-sphinx along with its recommends.
  * git clone git://gitorious.org/mahara/manual.git
  * cd manual
  * mkdir source/locales/es/LC_MESSAGES/
  * from https://translations.launchpad.net/mahara-manual/1.5/+export get
  the MO version of the translation files. Put all the spanish .mo files
  in that newly created directory
  * add the following to the bottom of source/conf.py:
  language = 'es'
  locale_dirs =  [locales/]
  * run 'make clean latexpdf'
  * wait while approximately 258 pages worth of latex are compiled and the
  pdf attempts to compile from those. It'll stop saying this:
  
  use groups_csv_add.png use groups_csv_add.png [188
  ./groups_csv_add.png (P
  NG copy)] groups_csv.png, id=3006, 692.5875pt x 79.29625pt
  use groups_csv.png use groups_csv.png
  ! Bad character code (-1).
  \es@chf -\char \hyphenchar \font
  
  l.8537 ...dded,public,hidemembersfrommembers}
  
  ?
  
  * view the build/latex/Mahara.tex file with an editor.
  * You should see the following after the preamble and \def stuff:
  \begin{document}
  
  \maketitle
  * after applying the changes in the patch the 'make clean latexpdf' command 
should compile the pdf without stopping. viewing the .tex file again, you 
should see this:
  \begin{document}
  \shorthandoff{}
  \maketitle
  
  [Regression Potential] - I don't believe it should regress, nothing is
  being taken away, rather additional workaround support is added.

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

Title:
  sometimes cannot build pdfs for de, sl, pt, es, nl, pl, or it locales

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

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


[Bug 952620] Re: Evolution freezes when attempting to compose email in html format

2012-05-13 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: evolution (Ubuntu)
   Status: New = Confirmed

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

Title:
  Evolution freezes when attempting to compose email in html format

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

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


[Bug 996501] Re: Keyboard not working in lenovo s-10 3c

2012-05-13 Thread Chetan Chauhan
Unlike windows , in linux the default user account , in your case
prakriti is not an administrator.

So as Christopher mentioned quite clearly in his post above -
After saving the file execute via the Terminal:
sudo update-grub

Only if you run the command by prefixing sudo or gksudo before it
will you be able to get the permissions to change files owned by the
root user.

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

Title:
  Keyboard not working in lenovo s-10 3c

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

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


[Bug 961463] Re: playonlinux crashes at startup Ubuntu 12.04

2012-05-13 Thread fenixk19
** Summary changed:

- playonlinux crashes at startup Ubuntu 12.04 Beta
+ playonlinux crashes at startup Ubuntu 12.04

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

Title:
  playonlinux crashes at startup Ubuntu 12.04

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

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


[Bug 997891] Re: sometimes cannot build pdfs for de, sl, pt, es, nl, pl, or it locales

2012-05-13 Thread Melissa Draper
FWIW I also submitted this to debian, so quantal will likely get it that
way eventually: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=672586

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

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

Title:
  sometimes cannot build pdfs for de, sl, pt, es, nl, pl, or it locales

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

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


[Bug 995699] Re: Settings freezes in Flash Player on Ubuntu 12.04

2012-05-13 Thread Konstantin
Hello!

I have a same problem.

Ubuntu 12.04

Linux 3.2.0-24-generic #37-Ubuntu SMP Wed Apr 25 08:43:22 UTC 2012
x86_64 x86_64 x86_64 GNU/Linux

This problem has appeared for me in Ubuntu 11.10.

I used the Adobe website to change some of the settings that i needed
to change. it's not work.

Workaround is login to ubuntu 2d session.

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

Title:
  Settings freezes in Flash Player on Ubuntu 12.04

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

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


[Bug 993827] Re: Logitech Wireless keyboard has bad layout on login screen

2012-05-13 Thread mmu2s
I tried to change keyboard layout from français (variante) [french
(alternative)] to français (sans touches mortes) [french (no dead
keys)] and the layout looked ok since then.

I'll try the logon screen in a minute and check wether it got fixed
there as well.

Looks like X does not set properly some of the layout configurations for
wireless keboards. How come ? I dont know.

This bug may  impact other brands, not only logitech, did someone check
this ?

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

Title:
  Logitech Wireless keyboard has bad layout on login screen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-evdev/+bug/993827/+subscriptions

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

[Bug 986321] Re: READ/Write FPDMA QUEUED failures

2012-05-13 Thread Bug Watch Updater
** Changed in: linux
   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/986321

Title:
  READ/Write FPDMA QUEUED failures

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

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


[Bug 998732] [NEW] vmbuilder debootstrap crash

2012-05-13 Thread Alix Mougenot
Public bug reported:

package:
ubuntu-vm-builder_0.12.4+bzr477

real package:
python-vm-builder_0.12.4+bzr477

running on:
Ubuntu 12.04 LTS

by running the following command (just a test):
$ sudo vmbuilder kvm ubuntu --suite precise --flavour server --libvirt 
qemu:///system

is triggered the following exception:
W: Failure trying to run: chroot /tmp/tmprLI6UB mount -t proc proc /proc
Traceback (most recent call last):
  File /usr/bin/vmbuilder, line 24, in module
cli.main()
  File /usr/lib/python2.7/dist-packages/VMBuilder/contrib/cli.py, line 216, 
in main
distro.build_chroot()
  File /usr/lib/python2.7/dist-packages/VMBuilder/distro.py, line 83, in 
build_chroot
self.call_hooks('bootstrap')
  File /usr/lib/python2.7/dist-packages/VMBuilder/distro.py, line 67, in 
call_hooks
call_hooks(self, *args, **kwargs)
  File /usr/lib/python2.7/dist-packages/VMBuilder/util.py, line 165, in 
call_hooks
getattr(context, func, log_no_such_method)(*args, **kwargs)
  File /usr/lib/python2.7/dist-packages/VMBuilder/plugins/ubuntu/distro.py, 
line 136, in bootstrap
self.suite.debootstrap()
  File /usr/lib/python2.7/dist-packages/VMBuilder/plugins/ubuntu/dapper.py, 
line 269, in debootstrap
run_cmd(*cmd, **kwargs)
  File /usr/lib/python2.7/dist-packages/VMBuilder/util.py, line 120, in 
run_cmd
raise VMBuilderException, Process (%s) returned %d. stdout: %s, stderr: 
%s % (args.__repr__(), status, mystdout.buf, mystderr.buf)
VMBuilder.exception.VMBuilderException: Process (['/usr/sbin/debootstrap', 
'--arch=amd64', 'precise', '/tmp/tmprLI6UB', 
'http://archive.ubuntu.com/ubuntu']) returned 1

- debootstrap may be the culprit its version is 1.0.39ubuntu0.1
- the targeted folder is a correct root folder
- /proc is a correct proc folder

complete output: 
2012-05-13 13:56:04,184 INFO: Calling hook: preflight_check
2012-05-13 13:56:04,186 INFO: Calling hook: set_defaults
2012-05-13 13:56:04,186 INFO: Calling hook: bootstrap
2012-05-13 13:57:12,195 INFO: Cleaning up
2012-05-13 13:57:12,195 ERROR   : Process (['/usr/sbin/debootstrap', 
'--arch=amd64', 'precise', '/tmp/tmprLI6UB', 
'http://archive.ubuntu.com/ubuntu']) returned 1. stdout: I: Retrieving Release
I: Retrieving Release.gpg
I: Checking Release signature
I: Valid Release signature (key id 630239CC130E1A7FD81A27B140976EAF437D05B5)
I: Retrieving Packages
I: Validating Packages
I: Resolving dependencies of required packages...
I: Resolving dependencies of base packages...
I: Checking component main on http://archive.ubuntu.com/ubuntu...
I: Retrieving adduser
I: Validating adduser
I: Retrieving apt
I: Validating apt
I: Retrieving apt-utils
I: Validating apt-utils
I: Retrieving base-files
I: Validating base-files
I: Retrieving base-passwd
I: Validating base-passwd
I: Retrieving bash
I: Validating bash
I: Retrieving bsdutils
I: Validating bsdutils
I: Retrieving busybox-initramfs
I: Validating busybox-initramfs
I: Retrieving bzip2
I: Validating bzip2
I: Retrieving console-setup
I: Validating console-setup
I: Retrieving coreutils
I: Validating coreutils
I: Retrieving cpio
I: Validating cpio
I: Retrieving cron
I: Validating cron
I: Retrieving dash
I: Validating dash
I: Retrieving debconf
I: Validating debconf
I: Retrieving debconf-i18n
I: Validating debconf-i18n
I: Retrieving debianutils
I: Validating debianutils
I: Retrieving diffutils
I: Validating diffutils
I: Retrieving dmsetup
I: Validating dmsetup
I: Retrieving dpkg
I: Validating dpkg
I: Retrieving e2fslibs
I: Validating e2fslibs
I: Retrieving e2fsprogs
I: Validating e2fsprogs
I: Retrieving eject
I: Validating eject
I: Retrieving file
I: Validating file
I: Retrieving findutils
I: Validating findutils
I: Retrieving gcc-4.6-base
I: Validating gcc-4.6-base
I: Retrieving gnupg
I: Validating gnupg
I: Retrieving gpgv
I: Validating gpgv
I: Retrieving grep
I: Validating grep
I: Retrieving gzip
I: Validating gzip
I: Retrieving hostname
I: Validating hostname
I: Retrieving ifupdown
I: Validating ifupdown
I: Retrieving initramfs-tools
I: Validating initramfs-tools
I: Retrieving initramfs-tools-bin
I: Validating initramfs-tools-bin
I: Retrieving initscripts
I: Validating initscripts
I: Retrieving insserv
I: Validating insserv
I: Retrieving iproute
I: Validating iproute
I: Retrieving iputils-ping
I: Validating iputils-ping
I: Retrieving isc-dhcp-client
I: Validating isc-dhcp-client
I: Retrieving isc-dhcp-common
I: Validating isc-dhcp-common
I: Retrieving kbd
I: Validating kbd
I: Retrieving keyboard-configuration
I: Validating keyboard-configuration
I: Retrieving klibc-utils
I: Validating klibc-utils
I: Retrieving less
I: Validating less
I: Retrieving libacl1
I: Validating libacl1
I: Retrieving libapt-inst1.4
I: Validating libapt-inst1.4
I: Retrieving libapt-pkg4.12
I: Validating libapt-pkg4.12
I: Retrieving libattr1
I: Validating libattr1
I: Retrieving libblkid1
I: Validating libblkid1
I: Retrieving libbz2-1.0
I: Validating libbz2-1.0
I: Retrieving libc-bin
I: Validating libc-bin
I: 

[Bug 993827] Re: Logitech Wireless keyboard has bad layout on login screen

2012-05-13 Thread mmu2s
Well, it's fixed for me in the logon screen with layout français (sans
touches mortes).

This was related to the default french (alternative) layout. Maybe
it's not entierly related with wireless keyboards.

Note: I'd like to remind everybody that, in my case, the problem arose
after an upgrade from 11.04 = 12.04.

Does anybody had the issue from a fresh install ?

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

Title:
  Logitech Wireless keyboard has bad layout on login screen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-evdev/+bug/993827/+subscriptions

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

  1   2   3   4   5   6   7   8   9   10   >