[Bug 772158] Re: samba force group option fails

2011-04-28 Thread Todd Taft
problem was triggered by setgid bit on directory.

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

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

Title:
  samba force group option fails

-- 
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 723871] Re: qemu-kvm-0.14.0 Aborts with -vga qxl

2011-04-28 Thread Boris Derzhavets
Disabling AppArmor really allows libvirt to go with no problems.

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

Title:
  qemu-kvm-0.14.0 Aborts with -vga qxl

-- 
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 771698] Re: /usr/bin/id does not show ldap groups

2011-04-28 Thread Thomas Schweikle
** Attachment added: various configuration files used by pam and ldap
   
https://bugs.launchpad.net/ubuntu/+source/libnss-ldap/+bug/771698/+attachment/2092558/+files/config.tgz

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

Title:
  /usr/bin/id does not show ldap groups

-- 
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 771698] Re: /usr/bin/id does not show ldap groups

2011-04-28 Thread Thomas Schweikle
 The fact that id shows fewer groups is not a security issue
 -- the user should have fewer privileges than with the
 intended ldap groups.

This is only correct as long as belonging to a group grants additional
rights. It is not correct any more if belonging to a group revoked
rights. The user this way has, since he isn't seen in this particular
group any more, additional rights, he wouldn't have if he was part of
the group in question. We're using such a scheme for trainees. They are
part of the group, but being part of the group trainee revokes some
rights they would have if they where not part of the group trainee.

In our special case this doesn't matter: both groups are derived by
ldap. Since pam doesn't question ldap any more for groups the user is
in, rights are not granted and not revoked --- most people do not have
any rights to do anything ... :-(

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

Title:
  /usr/bin/id does not show ldap groups

-- 
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 582963] Re: SSL pass phrase dialog can't read input

2011-04-28 Thread Dave Walker
** Tags added: server-nrs

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

Title:
  SSL pass phrase dialog can't read input

-- 
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 771698] Re: /usr/bin/id does not show ldap groups

2011-04-28 Thread Thomas Schweikle
If I search ldap using ldapsearch I do get all defined groups and users. 
Accessing ldap via getent (passwd|group) I do again get all groups or users.
using id does not give back all groups a user belongs to. The system behaves, 
as if there are only local groups available.

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

Title:
  /usr/bin/id does not show ldap groups

-- 
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 723871] Re: qemu-kvm-0.14.0 Aborts with -vga qxl

2011-04-28 Thread Boris Derzhavets
Just disabling libvirtd profile is enough as well :-

# apparmor_parser -R /etc/apparmor.d/usr.sbin.libvirtd
# ln -s /etx/apparmor.d/usr.sbin.libvirtd /etc/apparmor.d/disable/

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

Title:
  qemu-kvm-0.14.0 Aborts with -vga qxl

-- 
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 772327] [NEW] Upstart script restart won't restart service

2011-04-28 Thread Pan Yongzhi
Public bug reported:

Binary package hint: xinetd

# stop xinetd
xinetd stop/waiting
# start xinetd
xinetd start/running, process 9378
# restart xinetd
xinetd start/running, process 9378

I must stop(8) then start(8) it to restart.

I investigate the upstart script at /etc/init/xinetd.conf. The pre-stop
script  is:

pre-stop script
  xinetd_pid=$(status | awk '/stop\/pre-stop/ { print $NF }')
  [ -n ${xinetd_pid} ] || exit 0
  kill -QUIT ${xinetd_pid}
end script

The first line gets nothing when invoking restart. I think that's
because awk cannot match the pattern when invoing 'restart'. It matches
when invoking 'stop'. I think using  /var/run/xinetd.pid is safe.
Changed it to this:

pre-stop script
  xinetd_pid=$(cat /var/run/xinetd.pid)
  [ -n ${xinetd_pid} ] || exit 0
  kill -QUIT ${xinetd_pid}
end script

This will stop the service but won't start it when invoking 'restart'. I
do not know the internals of upstart. This may because the pre-stop exit
with a non-zero status and 'restart' just killed it and cannot start it?

To fix the problem in the bug summary , I have to comment out the pre-
stop script, and 'restart' works OK. I see bug 605007, the author need
SIGQUIT, but in my way SIGQUIT is not explicitly sent. I do not know why
SIGQUIT is needed.

IMHO, this script needs a fix. But I haven't figured out a good patch.
Thank you guys.

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

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

Title:
  Upstart script restart won't restart service

-- 
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 772327] Re: Upstart script restart won't restart service

2011-04-28 Thread Pan Yongzhi
My version is 2.3.14-7ubuntu4 in natty.

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

Title:
  Upstart script restart won't restart service

-- 
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 772327] Re: Upstart script restart won't restart service

2011-04-28 Thread Pan Yongzhi
I added this patch. Although It misses SIGQUIT, it solves the restart
problem. Must we do it  in the original way?

** Patch added: Fix restart problem
   
https://bugs.launchpad.net/ubuntu/+source/xinetd/+bug/772327/+attachment/2092935/+files/restart_fix.patch

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

Title:
  Upstart script restart won't restart service

-- 
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 632696] Re: libvirt won't start a VM with serial or console when apparmor is enabled

2011-04-28 Thread Thomas Schweikle
Looks like it is fixed with libvirt 0.8.8. Unfortunately this package is
only available from a testing ppa

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

Title:
  libvirt won't start a VM with serial or console when apparmor is
  enabled

-- 
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 723871] Re: qemu-kvm-0.14.0 Aborts with -vga qxl

2011-04-28 Thread Jamie Strandboge
Boris, you should not disable the profile but instead update it. See
https://wiki.ubuntu.com/DebuggingApparmor and /usr/share/doc/libvirt-
bin/README.Debian for details.

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

Title:
  qemu-kvm-0.14.0 Aborts with -vga qxl

-- 
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 579857] Re: automount and auto.smb not working

2011-04-28 Thread Thomas Schweikle
Fix seems to work now out of the box.

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

Title:
  automount and auto.smb not working

-- 
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 675448] Re: ssh does not authenticate against kerberos

2011-04-28 Thread Thomas Schweikle
There was a fix for some other ssh related bug, but this fix seems to
have fixed this bug too.

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

Title:
  ssh does not authenticate against kerberos

-- 
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 676518] Re: configuration given in /etc/default/libvirt-bin ignored

2011-04-28 Thread Thomas Schweikle
/etc/default/libvirt-bin is now sourced.

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

Title:
  configuration given in /etc/default/libvirt-bin ignored

-- 
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 677153] Re: dhclient assigns all interfaces connected to a bridge addresses

2011-04-28 Thread Thomas Schweikle
This is a bug, not an Opinion. Just configure your system this way,
wait on dhcp assigning an address and then loose network connectivity.
If it where an Opinion I'd suspect not to lose network connectivity.

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

Title:
  dhclient assigns all interfaces connected to a bridge addresses

-- 
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 723871] Re: qemu-kvm-0.14.0 Aborts with -vga qxl

2011-04-28 Thread Boris Derzhavets
Thanks for advice. My primary target was to make sure , that it's not
libvirt 8.8.1 on Ubuntu 11.04 issue.

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

Title:
  qemu-kvm-0.14.0 Aborts with -vga qxl

-- 
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 684424] Re: Bridges are not transparent for packets

2011-04-28 Thread Thomas Schweikle
If this is an Opinion please do not call the whole thing bridge.
Bridges are transparently connecting networks at layer 2. An non-
transparent bridge can't be called a bridge. Whatever it is. It's not a
bridge as bridge meant in networking terminology.

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

Title:
  Bridges are not transparent for packets

-- 
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 692775] Re: linking two virtual machines does not work

2011-04-28 Thread Thomas Schweikle
No, this is not the case. Both machines are assigned network unique MAC-
Addresses. I've checked them:

1:  52:54:00:9a:a1:18
2:  52:54:00:9a:a1:20

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

Title:
  linking two virtual machines does not work

-- 
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 692775] Re: linking two virtual machines does not work

2011-04-28 Thread Serge Hallyn
@Thomas

which NICs have the MAC addrs listed in comment #13?

Note that the description shows both eth4 on the dhcp server VM
and eth0 on the dhcp client VM has having MAC address
52:54:00:ae:6c:73.  That is what Santiago was pointing out.

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

Title:
  linking two virtual machines does not work

-- 
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 697592] Re: unable to create socket on eth0 (210) for ::ffff:192.168.1.4#123

2011-04-28 Thread Thomas Schweikle
Aaarr: has to read :::ip-v4-address and ::ip-v4-address, not
ff:ff::ip-v4-address and 0::ip-v4-address!

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

Title:
   unable to create socket on eth0 (210) for :::192.168.1.4#123

-- 
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 692775] Re: linking two virtual machines does not work

2011-04-28 Thread Thomas Schweikle
These are the mac addresses for eth4 and eth0 respectively.
Looks like I've taken a listing from before I changed mac addresses. :-(

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

Title:
  linking two virtual machines does not work

-- 
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 458521] Re: kvm crash when using virtio for network, hardy guest

2011-04-28 Thread Jamie Strandboge
@John, what is the status of this bug on Hardy/linux?

** Changed in: qemu
   Status: In Progress = Fix Released

** Changed in: linux (Ubuntu Hardy)
   Status: Triaged = Incomplete

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

Title:
  kvm crash when using virtio for network, hardy guest

-- 
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 684424] Re: Bridges are not transparent for packets

2011-04-28 Thread Serge Hallyn
@Thomas,

can you try 'brctl stp br0 on' in the VM?

I reproduced your setup using an lxc container connected to a bridge,
and a separate network namespace inside the container.  With stp off, I
could not ping the host or the outside world (without setting routes).
With stp on, I could ping the host, ping google.com, and ssh to other
laptops on the same subnet.

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

Title:
  Bridges are not transparent for packets

-- 
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 772327] Re: Upstart script restart won't restart service

2011-04-28 Thread Brian Murray
** Tags added: patch

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

Title:
  Upstart script restart won't restart service

-- 
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 771305] Re: smbd does not start on first boot with 20110426

2011-04-28 Thread Clint Byrum
Accepted samba into natty-proposed, the package will build now and be
available in a few hours. Please test and give feedback here. See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed. Thank you in advance!

** Changed in: samba (Ubuntu Natty)
   Status: Confirmed = Fix Committed

** Tags added: verification-needed

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is a bug assignee.
https://bugs.launchpad.net/bugs/771305

Title:
  smbd does not start on first boot with 20110426

-- 
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 717243] Re: vlan interface won't start with ifup, can be started manually

2011-04-28 Thread Alexey Toptygin
I have lost access to the hardware that this problem was happening on (I
no longer work at the company that owns the hardware), so I will not be
able to troubleshoot this further. You may want to close this bug as not
reproducible.

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

Title:
  vlan interface won't start with ifup, can be started manually

-- 
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 394350] Re: RLimitCPU has no effect in Apache

2011-04-28 Thread Serge Hallyn
The actual setrlimit is done by apr.  Apache source ships with its own
coyp of the apr source under srclib, but that does not get compiled (or
used).

Apache definately sees the RLimit_CPU configuration and sets internal
variables accordingly.  I've yet to instrument the libapr1-dev code
itself to see why it is not calling setrlimit.

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

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

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

Title:
  RLimitCPU has no effect in Apache

-- 
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 772868] [NEW] package samba 2:3.5.8~dfsg-1ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-04-28 Thread Harris Butler
Public bug reported:

Binary package hint: samba

Release- 11.04  
Package- samba
What I expected to happen- I expected samba to reinstall and not tell me it 
failed to install.
What happened instead-  I was in the middle of upgrading to v11.04, and it said 
that samba failed to install.  I ignored the error (what else was I going to 
do? I was in the middle of the upgrade) and tried to reinstall samba after 
restarting my computer.  It still failed to install.  I currently only use it 
to share my printer on the network, so it's not a real big priority if I can't 
get samba working again, but I figure that a bug report can't hurt.

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: samba 2:3.5.8~dfsg-1ubuntu2
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic-pae 2.6.38.2
Uname: Linux 2.6.38-8-generic-pae i686
AptOrdering:
 samba: Install
 samba: Configure
Architecture: i386
Date: Thu Apr 28 22:17:12 2011
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
RelatedPackageVersions:
 nautilus 1:2.32.2.1-0ubuntu13
 gvfs 1.8.0-0ubuntu2
SambaClientRegression: Yes
SourcePackage: samba
Title: package samba 2:3.5.8~dfsg-1ubuntu2 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
UpgradeStatus: Upgraded to natty on 2011-04-28 (0 days ago)

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


** Tags: apport-package i386 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/772868

Title:
  package samba 2:3.5.8~dfsg-1ubuntu2 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

-- 
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 772868] Re: package samba 2:3.5.8~dfsg-1ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-04-28 Thread Harris Butler
-- 
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/772868

Title:
  package samba 2:3.5.8~dfsg-1ubuntu2 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

-- 
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 772164] [NEW] 11.04 reqs 4.4GB to install, dell mini 9 has 4GB SSD

2011-04-28 Thread marker 加拿大
Public bug reported:

I downloaded the 11.04 desktop i386 iso, put it on a usb drive so i
could it install it on my netbook, but couldnt even get past the install
screen, because it says i need 4.4GB to install ubuntu 11.04.  The
problem is that my hard drive is only 4GB large, a common size in
netbooks.  I have run installers for ubuntu 10.10, 10.04, 9.10 and 9.04
netbook editions on my netbook and never had a problem before.  I notice
that 11.04 has netbook and desktop editions combined into a single ISO,
so maybe that is why the error happened in 11.04 and not before.

Also, I notice that the install footprint of 10.10 is around 2.1GB, so
it shouldnt be a problem running 11.04 unless they truly added 2GB of
junk to the OS.  The problem is I just can't get past the installer.

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: ubuntu-netbook (not installed)
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic i686
Architecture: i386
Date: Thu Apr 28 05:43:29 2011
LiveMediaBuild: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
ProcEnviron:
 LANGUAGE=en_US:en
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: netbook-meta
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: netbook-meta (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 natty running-unity

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

Title:
  11.04 reqs 4.4GB to install, dell mini 9 has 4GB SSD

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


[Bug 772164] Re: 11.04 reqs 4.4GB to install, dell mini 9 has 4GB SSD

2011-04-28 Thread marker 加拿大
** Attachment added: Screenshot-Install.png
   
https://bugs.launchpad.net/bugs/772164/+attachment/2092460/+files/Screenshot-Install.png

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

Title:
  11.04 reqs 4.4GB to install, dell mini 9 has 4GB SSD

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


[Bug 772121] Re: typo in pam_tally manpage

2011-04-28 Thread Daniel van Vugt
The typo is still present in the upstream source too. You can notify the PAM 
maintainers or join the mailing list here:
http://www.kernel.org/pub/linux/libs/pam/

** Changed in: pam (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/772121

Title:
  typo in pam_tally manpage

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


[Bug 768636] Re: Adding desktop folder as a .desktop file folder

2011-04-28 Thread Robert Dyer
It seems to me that the Chromium issue is a bug that needs to be filed
against that project, to make them generate the launcher into ~/.local
(and then if they want, symlink to it on the Desktop).

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

Title:
  Adding desktop folder as a .desktop file folder

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


[Bug 736808] Re: [mk-sbuild] schroot configuration should be stored in /etc/schroot/chroot.d.

2011-04-28 Thread DSSDSD
Internal condensation 
http://www.compraedhardy.com/ed-hardy-mulheres/ed-hardy-mulher-tempo-t-shirts.html
 can harm Stylers, so once the temperatures 
http://www.compraedhardy.com/ed-hardy.html from the space 
http://www.compraedhardy.com/ed-hardy-acessorios/ed-hardy-cintos.html is below 
8°C, your 

http://www.compraedhardy.com/ed-hardy-loja.html ghd straighteners will
http://www.compraedhardy.com/ed-hardy-acessorios.html turn toff to
defend alone right up until the temperatures rises again.

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

Title:
  [mk-sbuild] schroot configuration should be stored in
  /etc/schroot/chroot.d.

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

[Bug 456307] Re: Xorg becomes unresponsive (only some keys and right button of mouse work)

2011-04-28 Thread Andrea Grandi
It's not anymore a bug on Ubuntu 10.10 and I suppose in 11.04 too. I
changed to Fix Released.

** Changed in: nvidia-graphics-drivers-180 (Ubuntu)
   Status: Incomplete = 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/456307

Title:
  Xorg becomes unresponsive (only some keys and right button of mouse
  work)

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


[Bug 753144] Re: focused, or maximized windows blank

2011-04-28 Thread Christophe C
nvidia card + compiz + nvidia official driver + Unity beta2 + AMD
processor + 2Go memory.

Precision : the problem occurs in natty / unity AND in natty / Unbuntu
classic.

No bug without nvidia-current (but Unity doesn't run).

** Attachment added: show the bug in natty ubuntu classic
   
https://bugs.launchpad.net/unity/+bug/753144/+attachment/2092461/+files/natty-classique-2011-04-28.png

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

Title:
  focused, or maximized windows blank

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


[Bug 714430] Re: Xorg crash on deactivate external display while internal switched off

2011-04-28 Thread Юрий Чудновский
I will wait for 11.04 release and will test it. Please be patient :)

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

Title:
  Xorg crash on deactivate external display while internal switched off

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


[Bug 218785] Re: have to reinstall nvidia drivers on every reboot

2011-04-28 Thread Erik
** Changed in: linux-restricted-modules-2.6.24 (Ubuntu)
   Status: Incomplete = 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/218785

Title:
  have to reinstall nvidia drivers on every reboot

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


[Bug 772168] Re: Workspace switcher keyboard shortcuts do nothing when there is no workspace in the indicated direction

2011-04-28 Thread Ryan Prior
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/772168

Title:
  Workspace switcher keyboard shortcuts do nothing when there is no
  workspace in the indicated direction

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


[Bug 772168] [NEW] Workspace switcher keyboard shortcuts do nothing when there is no workspace in the indicated direction

2011-04-28 Thread Ryan Prior
Public bug reported:

Binary package hint: unity

If I am presently viewing the top-left workspace and I press
control+alt+up or control+alt+left, nothing happens at all. If I
believed myself to be on another workspace, I might then wonder whether
my computer is responding to me.

In order to re-orient the user and provide a response, the workspace
overview should be shown on the screen even when no movement is made.

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: unity 3.8.10-0ubuntu2
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic x86_64
NonfreeKernelModules: fglrx
Architecture: amd64
CompizPlugins: 
[core,bailer,detection,composite,opengl,decor,mousepoll,vpswitch,regex,animation,snap,expo,move,compiztoolbox,place,grid,imgpng,gnomecompat,wall,ezoom,workarounds,staticswitcher,resize,fade,unitymtgrabhandles,scale,session,unityshell]
Date: Wed Apr 27 19:32:21 2011
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Beta amd64 (20110330)
ProcEnviron:
 LANGUAGE=en_US:en
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: unity
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  Workspace switcher keyboard shortcuts do nothing when there is no
  workspace in the indicated direction

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


Re: [Bug 740785] Re: Caught signal 11 (Segmentation fault). Server aborting

2011-04-28 Thread nierce
I don't have natty yet. Perhaps in this week.
This bug hasn't appear for longer time but this makes it even subtle.
I will update this bug if it will continue in natty.
Thanks for info

On 28.4.2011 06:17, bugbot wrote:
 Hey nierce,


 Hi, have you had a chance to test if this bug is still present in natty?

 If it does (and if you're the original reporter), please boot into natty
 and run the command:

apport-collectbug-number

 which will update the bug with fresh logs and tag the bug as affecting
 natty.  (It is best to run this right after reproducing the problem.)


 ** Changed in: xorg-server (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/740785

Title:
  Caught signal 11 (Segmentation fault). Server aborting

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


Re: [Bug 667104] Re: Screen distortion with compiz cube rotation and recommended nvidia driver

2011-04-28 Thread Colin Church
Hi !.
I reported some time ago now that this problem was cured by un-ticking
nvidia  in the startup group. Since removing it from the start-up
action no further problem. The problem still occurs with natty if I
allow nvidia in the start up, which obviously I no longer do.
Hope this helps

Colin Church

On Thu, 2011-04-28 at 04:04 +, bugbot wrote:

 Hey Colin,
 
 
 Hi, have you had a chance to test if this bug is still present in natty?
 
 If it does (and if you're the original reporter), please boot into natty
 and run the command:
 
   apport-collect bug-number
 
 which will update the bug with fresh logs and tag the bug as affecting
 natty.  (It is best to run this right after reproducing the problem.)
 
 
 ** Changed in: nvidia-graphics-drivers (Ubuntu)
Status: New = Incomplete


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

Title:
  Screen distortion with compiz cube rotation and recommended nvidia
  driver

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


[Bug 661248] Re: Nvidia GeForce 8600M GT doesn't work with nvidia-current 260

2011-04-28 Thread Alex Bell
I've posted about this bug on forums.nvidia.com:
http://forums.nvidia.com/index.php?showtopic=199105
and on the www.nvnews.net:
http://www.nvnews.net/vbulletin/showthread.php?p=2424771#post2424771
Maybe someone will help us. :(

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

Title:
  Nvidia GeForce 8600M GT doesn't work with nvidia-current 260

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


Re: [Bug 465470] Re: KDE doesn't start after 9.10 update. Radeon? KDM?

2011-04-28 Thread Chris
I guess this was solved with 10.04 - at least I don't remember any
problems at the end any more. I used that box till last December and
didn't update to 10.10 as the new box was already on the horizont.

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

Title:
  KDE doesn't start after 9.10 update. Radeon? KDM?

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


[Bug 772169] [NEW] Favorite contacts always appear even when offline

2011-04-28 Thread François Tissandier
Public bug reported:

Binary package hint: empathy

In a freshly upgraded Natty, the favorite contacts always appear in the
list, even if they are offline. In Maverick, they were hidden when
offline, just like the other contacts. I don't see why they are always
displayed, maybe it's useful in some cases, but on our Jabber network,
it's not.

The expected behavior would be :

-to hide them also
-or to give the option to make them always visible

** Affects: empathy (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/772169

Title:
  Favorite contacts always appear even when offline

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


[Bug 710144] Re: Xsession: unable to launch X session --- not found; falling back to default session.

2011-04-28 Thread Malte S. Stretz
A quick glance at the source of the script should show if the bug is
still there.

I reassigned this bug to xorg-server since the bugbot always reassigns
to xserver-xorg-video-ati if the bug is assigned to xorg where this bug
really stems from.

** Package changed: xserver-xorg-video-ati (Ubuntu) = xorg-server
(Ubuntu)

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

Title:
  Xsession: unable to launch  X session ---  not found; falling back
  to default session.

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


[Bug 772161] Re: 'focus follows mouse' hinders ALT-TAB focus switching

2011-04-28 Thread Daniel van Vugt
Confirmed. This one is not just a matter of opinion because the
behaviour changes and is inconsistent. While Alt-Tab seems reliable at
raising windows, whether it then focuses the raised window (which the
mouse is not over) is unpredictable. Sometimes it focuses, sometimes
not.

** Changed in: unity (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/772161

Title:
  'focus follows mouse' hinders ALT-TAB focus switching

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


[Bug 772158] Re: samba force group option fails

2011-04-28 Thread Todd Taft
problem was triggered by setgid bit on directory.

** Changed in: samba (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/772158

Title:
  samba force group option fails

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


[Bug 219252] Re: [Hardy] webcam stopped working after last kernel update

2011-04-28 Thread Tino Meinen
Thanks for looking into this nmathew.
The problem is when I want to compile the driver on ubuntu Natty 11.04  I get a 
compile error:

r5u870/usbcam/usbcam.h:38:28: fatal error: linux/videodev.h: No such
file or directory

this is because videodev.h is no longer included in the 2.6.38 header files.
This problem was not in Maverick because the 2.6.35 header files still had 
those header files included.

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

Title:
  [Hardy] webcam stopped working after last kernel update

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


[Bug 772164] Re: 11.04 reqs 4.4GB to install, dell mini 9 has 4GB SSD

2011-04-28 Thread Micah Gersten
** Tags added: regression-release

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

Title:
  11.04 reqs 4.4GB to install, dell mini 9 has 4GB SSD

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


[Bug 772122] Re: gtk-engine(?) and panel ugliness with unity-2d

2011-04-28 Thread Olivier Tilloy
*** This bug is a duplicate of bug 728803 ***
https://bugs.launchpad.net/bugs/728803

** This bug has been marked a duplicate of bug 728803
   Ubuntu theme switches from partially broken to gnome default on VirtualBox 
guest
 * You can subscribe to bug 728803 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/728803/+subscribe

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

Title:
  gtk-engine(?) and panel ugliness with unity-2d

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


[Bug 771963] Re: graphics card uses more power than needed when on battery

2011-04-28 Thread Laurent Bonnaud
** Summary changed:

- graphics card uses more power than needed when on batery
+ graphics card uses more power than needed when on battery

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

Title:
  graphics card uses more power than needed when on battery

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


[Bug 762975] Re: [Natty-Beta2] Wireless hot-switch off causes ssytem freeze on Dell Vostro 3500 Laptop

2011-04-28 Thread Joaquín Ignacio Aramendía
Works in today's Natty build (20110427.1)

** Changed in: linux (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/762975

Title:
  [Natty-Beta2] Wireless hot-switch off causes ssytem freeze on Dell
  Vostro 3500 Laptop

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


[Bug 755356] Re: update-manager crashed with Depends in _run_in_dialog(): libxfixes3 (= 1:4.0.1) but 1:4.0.5-1ubuntu1 is installed

2011-04-28 Thread Simon Margolis
I just updated tonight and ran into some more fglrx trouble.  May have
resolved it... Will update when I have an answer.

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

Title:
  update-manager crashed with Depends in
  _run_in_dialog(): libxfixes3 (= 1:4.0.1) but 1:4.0.5-1ubuntu1 is
  installed

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


[Bug 753857] Re: [Natty-Beta1] Wireless LED does not turn on or blinks on a Dell Vostro 3500 laptop

2011-04-28 Thread Joaquín Ignacio Aramendía
Works fine in today's Natty build (20110427.1)

** Changed in: linux (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/753857

Title:
  [Natty-Beta1] Wireless LED does not turn on or blinks on a Dell Vostro
  3500 laptop

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


[Bug 752104] Re: update-manager crashed with SystemError in mark_install(): E:Unable to correct problems, you have held broken packages.

2011-04-28 Thread anatoly techtonik
It is hard to reproduce. You need a bunch of interdependent updates I
guess. Right now I am not getting that much.

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

Title:
  update-manager crashed with SystemError in mark_install(): E:Unable to
  correct problems, you have held broken packages.

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


[Bug 616891] Re: Wacom Bamboo Fun (056a:00d3 Wacom Co., Ltd): Pen Touch don't work in any way (touch or pencil)

2011-04-28 Thread JussiP
I have this same tablet. It did not work with 10/10 but it does work
with 04/11 beta.

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

Title:
  Wacom Bamboo Fun (056a:00d3 Wacom Co., Ltd): Pen  Touch don't work in
  any way (touch or pencil)

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


[Bug 772173] [NEW] FALTA DE PLUGIN PARA OUVIR PODCAST

2011-04-28 Thread Rodrigo de Araujo
Public bug reported:

Olá pessoal!

Estou utilizando neste momento a versão 3.6.16 do Mozilla Firefox for
Ubuntu Canonical 1.0 sob Ubuntu 10.10 Maverick Meerkat.

Infelizmente, tenho sempre que recorrer ao Windows XP para ouvir um de
meus podcasts favoritos, produzido pela  Deutsche Welle International.

Experimentem tocar o link: http://www.dw-
world.de/popups/popup_single_mediaplayer/0,,4129511_type_audio_struct_608_contentId_2241375,00.html

Verão que ocorre um erro relacionado à ausência do Plugin Protocolo do
Servidor de Mídia da Microsoft. Seria excelente se a próxima versão do
sistema contasse com este plugin nativo, ou ao menos que fosse
disponibilizado para download. Pode ser algo bastante específico
produzido em código fechado, mas para isto existe Ubuntu, não é verdade?
De forma a integrar os usuários de todo o mundo. Sendo este um podcast
feito em português destinado à África, nada mais justo do que fazer
valer a essência da palavra Ubuntu para este plugin em específico.

Fica registrado a minha preocupação (e em certa medida insatisfação)
como forma de incentivar as equipes de desenvolvimento.:)

Grato e boa sorte!

** Affects: ubuntu
 Importance: Undecided
 Assignee: Rodrigo de Araujo (drigomf)
 Status: Opinion


** Tags: bug microsoft plugin podcast ubuntu

** Changed in: ubuntu
 Assignee: (unassigned) = Rodrigo de Araujo (drigomf)

** Tags added: bug microsoft plugin podcast ubuntu

** Changed in: ubuntu
   Status: New = Opinion

** Description changed:

  Olá pessoal!
  
  Estou utilizando neste momento a versão 3.6.16 do Mozilla Firefox for
  Ubuntu Canonical 1.0 sob Ubuntu 10.10 Maverick Meerkat.
  
  Infelizmente, tenho sempre que recorrer ao Windows XP para ouvir um de
  meus podcasts favoritos, produzido pela  Deutsche Welle International.
  
  Experimentem tocar o link: http://www.dw-
  
world.de/popups/popup_single_mediaplayer/0,,4129511_type_audio_struct_608_contentId_2241375,00.html
  
  Verão que ocorre um erro relacionado à ausência do Plugin Protocolo do
  Servidor de Mídia da Microsoft. Seria excelente se a próxima versão do
  sistema contasse com este plugin nativo, ou ao menos que fosse
  disponibilizado para download. Pode ser algo bastante específico
  produzido em código fechado, mas para isto existe Ubuntu, não é verdade?
+ De forma a integrar os usuários de todo o mundo. Sendo este um podcast
+ feito em português destinado à África, nada mais justo do que fazer
+ valer a essência da palavra Ubuntu para este plugin em específico.
  
- Fica registrado a minha insatisfação, como forma de incentivar as
- equipes de desenvolvimento.
+ Fica registrado a minha preocupação (e em certa medida insatisfação)
+ como forma de incentivar as equipes de desenvolvimento.:)
  
  Grato e boa sorte!

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

Title:
  FALTA DE PLUGIN PARA OUVIR PODCAST

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

[Bug 771996] Re: unity side pannel

2011-04-28 Thread Omer Akram
*** This bug is a duplicate of bug 766857 ***
https://bugs.launchpad.net/bugs/766857

thanks for the bug report. this particular bug has already beeon
reported but feel free to report any other bugs you may find

** This bug has been marked a duplicate of bug 766857
   Can't open nautilus when a file copying action is in progress
 * You can subscribe to bug 766857 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/unity/+bug/766857/+subscribe

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

Title:
  unity side pannel

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


[Bug 771608] Re: Flash hides login screen if coming back from screensaver in fullscreen; Ubuntu Natty; Inspiron 1546

2011-04-28 Thread Sly
Anyone have an idea of what package would be causing this issue? I don't
think it is a flash issue, because it shouldn't be flash's place to
remove itself from being on top when coming back from a screensaver and
showing the login box.

On the subject of flash, why does it stop itself when the screensaver
starts in the first place? Of course, you can't see it while the
screensaver is up. However, some people may listen to music on flash as
they sleep or whatever their preference is.

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

Title:
  Flash hides login screen if coming back from screensaver in
  fullscreen; Ubuntu Natty; Inspiron 1546

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


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

2011-04-28 Thread Bryce Harrington
*** This bug is a duplicate of bug 705737 ***
https://bugs.launchpad.net/bugs/705737

** This bug has been marked a duplicate of bug 705737
   package fglrx 2:8.780-0ubuntu2 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
 * You can subscribe to bug 705737 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/705737/+subscribe

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

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

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


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

2011-04-28 Thread Bryce Harrington
*** This bug is a duplicate of bug 705737 ***
https://bugs.launchpad.net/bugs/705737

** This bug has been marked a duplicate of bug 705737
   package fglrx 2:8.780-0ubuntu2 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
 * You can subscribe to bug 705737 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/705737/+subscribe

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

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

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


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

2011-04-28 Thread Bryce Harrington
*** This bug is a duplicate of bug 705737 ***
https://bugs.launchpad.net/bugs/705737

** This bug has been marked a duplicate of bug 705737
   package fglrx 2:8.780-0ubuntu2 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
 * You can subscribe to bug 705737 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/705737/+subscribe

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

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

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


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

2011-04-28 Thread Bryce Harrington
*** This bug is a duplicate of bug 705737 ***
https://bugs.launchpad.net/bugs/705737

** This bug has been marked a duplicate of bug 705737
   package fglrx 2:8.780-0ubuntu2 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
 * You can subscribe to bug 705737 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/705737/+subscribe

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

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

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


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

2011-04-28 Thread Bryce Harrington
*** This bug is a duplicate of bug 705737 ***
https://bugs.launchpad.net/bugs/705737

** This bug has been marked a duplicate of bug 705737
   package fglrx 2:8.780-0ubuntu2 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
 * You can subscribe to bug 705737 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/705737/+subscribe

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

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

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


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

2011-04-28 Thread Bryce Harrington
*** This bug is a duplicate of bug 705737 ***
https://bugs.launchpad.net/bugs/705737

** This bug has been marked a duplicate of bug 705737
   package fglrx 2:8.780-0ubuntu2 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
 * You can subscribe to bug 705737 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/705737/+subscribe

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

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

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


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

2011-04-28 Thread Bryce Harrington
*** This bug is a duplicate of bug 705737 ***
https://bugs.launchpad.net/bugs/705737

** This bug has been marked a duplicate of bug 705737
   package fglrx 2:8.780-0ubuntu2 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
 * You can subscribe to bug 705737 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/705737/+subscribe

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

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

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


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

2011-04-28 Thread Bryce Harrington
*** This bug is a duplicate of bug 705737 ***
https://bugs.launchpad.net/bugs/705737

** Changed in: fglrx-installer (Ubuntu)
   Status: Incomplete = New

** This bug has been marked a duplicate of bug 705737
   package fglrx 2:8.780-0ubuntu2 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
 * You can subscribe to bug 705737 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/705737/+subscribe

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

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

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


[Bug 669513] Re: Ubuntu 10.10 running on Beagleboard-xM is slow

2011-04-28 Thread nabilt
I am having a similar issue with Ubuntu 10.10 and 11.04 on my
BeagleBoard C2.I am getting BogoMIPS 477.86.

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

Title:
  Ubuntu 10.10 running on Beagleboard-xM is slow

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


[Bug 772177] [NEW] Alt+Tab Feels slow

2011-04-28 Thread Mario Limonciello
Public bug reported:

Binary package hint: compiz

version: 1:0.9.4+bzr20110415-0ubuntu2

Ever since coming from 2D gnome-classic I felt like Alt+Tab felt really
slow in Unity 3D.  Like it was an unnecessary delay for how long until I
was given a menu of options to switch between apps.

I was just pointed out compiz config settings manager can configure this
value.  I promptly changed the Popup delay to 0 and i'm now much
happier with how quickly I can switch apps.

I feel like I can't be the only one who feels this way about the popup
delay though, it can certainly slow down a workflow for someone who
alt+tab's all the time.

Can the delay maybe be reduced?  Is there a reason for it being there in
the first place?

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

Title:
  Alt+Tab Feels slow

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


[Bug 772161] Re: 'focus follows mouse' hinders ALT-TAB focus switching

2011-04-28 Thread Omer Akram
*** This bug is a duplicate of bug 762032 ***
https://bugs.launchpad.net/bugs/762032

** This bug has been marked a duplicate of bug 762032
   alt+tab broken with click-to-focus off
 * You can subscribe to bug 762032 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/unity/+bug/762032/+subscribe

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

Title:
  'focus follows mouse' hinders ALT-TAB focus switching

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


[Bug 771423] Re: syncio_http.c: 282: Previous read error

2011-04-28 Thread Tobias Heinemann
Well, I succeeded in building and installing gwenhywfar 4.0.9. The bug
is fixed in this version. Could somebody please contact the package
maintainer to ask for an update?

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

Title:
  syncio_http.c:  282: Previous read error

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


[Bug 766082] Re: [natty] OCZ Vertex 3 not detected using BIOS emulation

2011-04-28 Thread Dogers
I had this issue with Maverick too, however the all_generic_ide option
fixed it. Doesn't appear to have any effect with Natty though,
unfortunately.

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

Title:
  [natty] OCZ Vertex 3 not detected using BIOS emulation

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


Re: [Bug 736686] Re: Panels are invisible in unity [ati x1300]

2011-04-28 Thread matyas
I've only tested the alpha3 and beta1 versions, in which the bug was NOT
present, everything was working fine

On Thu, Apr 28, 2011 at 7:26 AM, bugbot 736...@bugs.launchpad.net
wrote:

 Hey matyas,


 Hi, have you had a chance to test if this bug is still present in natty?

 If it does (and if you're the original reporter), please boot into natty
 and run the command:

  apport-collect bug-number

 which will update the bug with fresh logs and tag the bug as affecting
 natty.  (It is best to run this right after reproducing the problem.)


 ** Changed in: xserver-xorg-video-ati (Ubuntu)
   Status: New = Incomplete

 --
 You received this bug notification because you are a direct subscriber
 of the bug.
 https://bugs.launchpad.net/bugs/736686

 Title:
  Panels are invisible in unity [ati x1300]

 To unsubscribe from this bug, go to:

 https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-ati/+bug/736686/+subscribe


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

Title:
  Panels are invisible in unity [ati x1300]

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


[Bug 729201] Re: when booting after ubuntu splash screen display is blank

2011-04-28 Thread silverdulcet
Was using fglrx built from the ati binaries, not the version shipped and
supported by Ubuntu.

** Changed in: fglrx-installer (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/729201

Title:
  when booting after ubuntu splash screen display is blank

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


[Bug 701856] Re: Brother's printer/scanner drivers awkward to find and install

2011-04-28 Thread Yousry Abdallah
Here is a workaround for the problem:

HOWTO: 
Patch brdcp7030lpr-2.0.2-1.i386.deb  cupswrapperDCP7030-2.0.2-1.i386.deb for NN

Problem: 
  dpkg doesn't understand the the libc version 2.13-0ubuntu13 = 2.3.4-1

Solution:
 remove the libc dependency

Instructions:

Create a directory.
move the .deb files into the directory
open a shell
change dir into the directory

For each package do the following:

1.  dpkg -x [package].deb common
2.  dpkg --control [package].deb
3. vim DEBIAN/control
4. remove the Dependency: libc (... line (move to line than press 'dd' than 
ESC:x)
5. cp -a DEBIAN/ common/
6. dpkb -b common [package].deb
7. dpkg --force-all -i [package].deb
8. rm  -rf common DEBIAN

With some additional tweaking (read the other manuals) you should be
able to use your printer. The Scanner should work without these steps.

The state of Linux device drivers is really worsening day by day :(

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

Title:
  Brother's printer/scanner drivers awkward to find and install

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


[Bug 670345] Re: fglxrx - fullscreen openGL / always on top

2011-04-28 Thread VixsLee
I have no idea I am afriad, my laptop died a few month ago and I am
currently using an nvidia card so I dont know about the ATI side of
things now.

Sorry I cant be of more help

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

Title:
  fglxrx - fullscreen openGL / always on top

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


[Bug 634487] Re: t1.micro instance hangs when installing java

2011-04-28 Thread Gabriel Nell
I hope that since it remains as confirmed in linux-ec2 and
new/confirmed in linux that the Ubuntu team is still following up with
the root cause, and the release notes being updated doesn't de-
prioritize fixing the root issue. Is this understanding correct?

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

Title:
  t1.micro instance hangs when installing java

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


[Bug 586722] Re: sleep is not inhibited

2011-04-28 Thread Julien Olivier
This is way off-topic, but, are there any plans to add a timeout before
the laptop goes to sleep when you close the lid? This way, you could
move from one place to another with the lid closed, without getting
disconnected.

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

Title:
  sleep is not inhibited

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


[Bug 772176] [NEW] 'Next' and 'Previous' navigation links are untranslatable

2011-04-28 Thread David Planella
Public bug reported:

Binary package hint: yelp

When opening yelp and navigating through a topic with several pages, the
'Previous' and 'Next' links at the top right hand corner appear
untranslated, and they are also not exposed for translation in the
yelp.pot template.

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: yelp 3.0.0-0ubuntu2
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic x86_64
NonfreeKernelModules: nvidia
Architecture: amd64
Date: Thu Apr 28 08:13:29 2011
EcryptfsInUse: Yes
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Alpha amd64 (20110319)
ProcEnviron:
 LANGUAGE=ca:en
 LANG=ca_ES.UTF-8
 SHELL=/bin/bash
SourcePackage: yelp
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: ubuntu-translations
 Importance: Medium
 Status: Triaged

** Affects: yelp
 Importance: Unknown
 Status: Unknown

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


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

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

Title:
  'Next' and 'Previous' navigation links are untranslatable

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


[Bug 772176] Re: 'Next' and 'Previous' navigation links are untranslatable

2011-04-28 Thread David Planella
** Also affects: yelp
   Importance: Undecided
   Status: New

** Also affects: ubuntu-translations
   Importance: Undecided
   Status: New

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

** Changed in: yelp
   Importance: Undecided = Unknown

** Changed in: yelp
   Status: New = Unknown

** Changed in: yelp
 Remote watch: None = GNOME Bug Tracker #648837

** Changed in: ubuntu-translations
   Status: New = Triaged

** Changed in: ubuntu-translations
   Importance: Undecided = Medium

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

Title:
  'Next' and 'Previous' navigation links are untranslatable

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


[Bug 772178] [NEW] View Show Text _Cursor menu item appears untranslated

2011-04-28 Thread David Planella
Public bug reported:

Binary package hint: yelp

When starting yelp and opening the View menu, the Show Text _Cursor
menu entry appears always in English, regardless of the locale and
regardless of the fact that it has been translated in the PO file.

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: yelp 3.0.0-0ubuntu2
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic x86_64
NonfreeKernelModules: nvidia
Architecture: amd64
Date: Thu Apr 28 08:33:08 2011
EcryptfsInUse: Yes
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Alpha amd64 (20110319)
ProcEnviron:
 LANGUAGE=pl
 LANG=ca_ES.UTF-8
 SHELL=/bin/bash
SourcePackage: yelp
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: ubuntu-translations
 Importance: Medium
 Status: Triaged

** Affects: yelp
 Importance: Unknown
 Status: Unknown

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


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

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

Title:
  View  Show Text _Cursor menu item appears untranslated

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


[Bug 772178] Re: View Show Text _Cursor menu item appears untranslated

2011-04-28 Thread David Planella
** Bug watch added: GNOME Bug Tracker #648840
   https://bugzilla.gnome.org/show_bug.cgi?id=648840

** Also affects: yelp via
   https://bugzilla.gnome.org/show_bug.cgi?id=648840
   Importance: Unknown
   Status: Unknown

** Also affects: ubuntu-translations
   Importance: Undecided
   Status: New

** Changed in: ubuntu-translations
   Status: New = Triaged

** Changed in: ubuntu-translations
   Importance: Undecided = Medium

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

Title:
  View  Show Text _Cursor menu item appears untranslated

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


[Bug 772169] Re: Favorite contacts always appear even when offline

2011-04-28 Thread Omer Akram
Thank you for your bug report. This bug has been reported to the
developers of the software. You can track it and make comments at:
https://bugzilla.gnome.org/show_bug.cgi?id=648838

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

** Also affects: empathy via
   https://bugzilla.gnome.org/show_bug.cgi?id=648838
   Importance: Unknown
   Status: Unknown

** Changed in: empathy (Ubuntu)
   Importance: Undecided = Wishlist

** Changed in: empathy (Ubuntu)
   Status: New = Triaged

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

Title:
  Favorite contacts always appear even when offline

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


[Bug 772169] Re: Favorite contacts always appear even when offline

2011-04-28 Thread Bug Watch Updater
** Changed in: empathy
   Status: Unknown = New

** Changed in: empathy
   Importance: Unknown = Wishlist

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

Title:
  Favorite contacts always appear even when offline

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


[Bug 771969] Re: type 'exceptions.SystemError': E:I wasn't able to locate file for the gdebi-kde package. This might mean you need to manually fix this package.

2011-04-28 Thread Daniel van Vugt
*** This bug is a duplicate of bug 659438 ***
https://bugs.launchpad.net/bugs/659438

** This bug has been marked a duplicate of bug 659438
   Installation/Removal fails because of package which could not be located 
(failure in apt.Cache.required_download)
 * You can subscribe to bug 659438 by following this link: 
https://bugs.launchpad.net/aptdaemon/+bug/659438/+subscribe

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

Title:
  type 'exceptions.SystemError': E:I wasn't able to locate file for
  the gdebi-kde package. This might mean you need to manually fix this
  package.

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


[Bug 771407] Re: type 'exceptions.SystemError': E:I wasn't able to locate file for the libgeda-common package. This might mean you need to manually fix this package.

2011-04-28 Thread Daniel van Vugt
*** This bug is a duplicate of bug 659438 ***
https://bugs.launchpad.net/bugs/659438

** This bug has been marked a duplicate of bug 659438
   Installation/Removal fails because of package which could not be located 
(failure in apt.Cache.required_download)
 * You can subscribe to bug 659438 by following this link: 
https://bugs.launchpad.net/aptdaemon/+bug/659438/+subscribe

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

Title:
  type 'exceptions.SystemError': E:I wasn't able to locate file for
  the libgeda-common package. This might mean you need to manually fix
  this package.

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


[Bug 761249] Re: gwibber-accounts crashed with HTTPError in http_error_default(): HTTP Error 401: Unauthorized

2011-04-28 Thread An Yang
Hi Kamus and Hou,

Could you please show me how to reproduce this bug?

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

Title:
  gwibber-accounts crashed with HTTPError in http_error_default(): HTTP
  Error 401: Unauthorized

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


[Bug 681240] Re: [gm45] X11 causes general protection fault

2011-04-28 Thread monochromec
If the status is incomplete on this rather old bug: what's missing?

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

Title:
  [gm45] X11 causes general protection fault

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


[Bug 568015] Re: Watermark AMD unsupported hardware is displayed

2011-04-28 Thread Mantas Kriaučiūnas
I've removed AMD Unsupported Hardware watermark from the screen simply - 
replaced /etc/ati/control file with *older* file, from Ubuntu 10.10 or 10.04 
package :)
It seems sometimes control file should be replaced with older file, not with 
newer :)

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

Title:
  Watermark AMD unsupported hardware is displayed

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


[Bug 543875] Re: unable to find a medium containing a live file system

2011-04-28 Thread John Haitas
Ubuntu Natty Desktop amd64 daily iso 20110427.1 both regular and '+mac'
versions booting into live mode

MacBook Pro 8,2 (thunderbolt)

work around is to boot with a usb thumb drive attached

** Description changed:

  When trying to boot Ubuntu 10.04 beta1 64bit on the Primary Slave IDE CD-ROM 
drive it fails with the message:
  stdin: error 0 (repeated over 25 times)
  
  BusyBox v1.13.3 (Ubuntu 1:1.13.3-1ubuntu9) built-in shell (ash)
  Enter 'help' for a list of built-in commands
  
  (initramfs) Unable to find a medium containing a live file system.
  
- 
  If I switch my CD-ROM drive over to Primary Master IDE then it will boot
  no problem.
  
  I'm not using any of the other IDE ports, my HD is SATA.
+ 
+ Problem still exists in Natty.

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

Title:
  unable to find a medium containing a live file system

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


[Bug 772180] [NEW] lxc-start fails to pivot_root if rootfs is a separate file system

2011-04-28 Thread Federico Sevilla III (FS3)
Public bug reported:

Binary package hint: lxc

lxc-start fails with the error message lxc-start: failed to pivot_root
to ... if lxc.rootfs is separate from the root file system. It is
common for /var to not be the same file system as /, and in these cases
/var is typically larger and contains, among other things, the rootfs
for the containers.

This is described in full detail in the thread http://www.mail-
archive.com/lxc-us...@lists.sourceforge.net/msg00261.html. This is fixed
by downgrading or upgrading, neither of which is available for LTS.

** Affects: lxc (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/772180

Title:
  lxc-start fails to pivot_root if rootfs is a separate file system

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


[Bug 772180] Re: lxc-start fails to pivot_root if rootfs is a separate file system

2011-04-28 Thread Federico Sevilla III (FS3)
This affects lxc 0.6.5-1 in Ubuntu 10.04 LTS.

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

Title:
  lxc-start fails to pivot_root if rootfs is a separate file system

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


[Bug 772153] Re: unity prevents me from being productive on my desktop

2011-04-28 Thread Sly
This bug report is all opinion, not valid bugs. Provide specific
details on one or more bugs for this to be considered a bug report.

Don't be discouraged, though, as all feedback is welcome.

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

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

Title:
  unity prevents me from being productive on my desktop

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


[Bug 772153] Re: unity prevents me from being productive on my desktop

2011-04-28 Thread BavarianPH
One has to agree with PresuntoRJ above.

Finding the right app takes much more time

then the classic main-menu  gnome-panel..

By the way, both apps can be used  in natty-unity,

use the startup applications preferences  add

gnome-panel, vola, natty-unity is half way fixed.

Now, make the launcher roll into one icon-button,

 make the rolled up launcher move to any panel,

 any of th sides or corners, horizontal or vertical.

Have the search window actually accept input 

execute.

Better yet, have gnome3  gnome-shell install,

switchable with unity  classic desktop.

Unity was a error  bug of epic proportions.

Gnome3 is by far the best upgrade of Linux,

from its start to now.

Gnome3 has great updatability, is upgradeable , tweak-able,

 adaptable.

Unity is a dead end!

The main-menu or gnome-menu

could work for small devices.

Many of us anonymous testers  decision makers

will go with gnome3, Ubuntu-gnome,

we'll keep an eye on unity to the bitter end.

BavarianPH,

Ubuntu  gnome forever!

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

Title:
  unity prevents me from being productive on my desktop

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


[Bug 771436] Re: Messages are displayed out of order when sent from notification

2011-04-28 Thread Omer Akram
this version of empathy does not come with Ubuntu so I am closing this
bug as invalid please report this bug here:
https://bugzilla.gnome.org/enter_bug.cgi?product=empathy

** Changed in: empathy (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/771436

Title:
  Messages are displayed out of order when sent from notification

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


[Bug 769958] Re: SystemError: E:I wasn't able to locate file for the ttf-mscorefonts-installer package. This might mean you need to manually fix this package.

2011-04-28 Thread Daniel van Vugt
*** This bug is a duplicate of bug 659438 ***
https://bugs.launchpad.net/bugs/659438

** This bug has been marked a duplicate of bug 659438
   Installation/Removal fails because of package which could not be located 
(failure in apt.Cache.required_download)
 * You can subscribe to bug 659438 by following this link: 
https://bugs.launchpad.net/aptdaemon/+bug/659438/+subscribe

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

Title:
  SystemError: E:I wasn't able to locate file for the ttf-mscorefonts-
  installer package. This might mean you need to manually fix this
  package.

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


[Bug 769880] Re: type 'exceptions.SystemError': E:I wasn't able to locate file for the linux-image-2.6.35-22-generic package. This might mean you need to manually fix this package.

2011-04-28 Thread Daniel van Vugt
*** This bug is a duplicate of bug 659438 ***
https://bugs.launchpad.net/bugs/659438

** This bug has been marked a duplicate of bug 659438
   Installation/Removal fails because of package which could not be located 
(failure in apt.Cache.required_download)
 * You can subscribe to bug 659438 by following this link: 
https://bugs.launchpad.net/aptdaemon/+bug/659438/+subscribe

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

Title:
  type 'exceptions.SystemError': E:I wasn't able to locate file for
  the linux-image-2.6.35-22-generic package. This might mean you need to
  manually fix this package.

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


[Bug 769046] Re: package fglrx 2:8.723.1-0ubuntu5 failed to install/upgrade: fglrx kernel module failed to build

2011-04-28 Thread Bryce Harrington
fglrx 8.723 can only be used with the 2.6.32 kernel but it appears you
tried to update to the 2.6.35 kernel.

For technical support on upgrading your kernel + fglrx beyond the
standard Lucid versions, request assistance from http://askubuntu.com or
other technical support forums.

** Changed in: fglrx-installer (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/769046

Title:
  package fglrx 2:8.723.1-0ubuntu5 failed to install/upgrade: fglrx
  kernel module failed to build

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