[Bug 573853] Re: Cannot control squid Unknown instance

2010-05-12 Thread Vigneswaran R
I did a fresh installation of Lucid. I was also not able to control squid 
initctl, immediately after reload.
Then, I did a squid -k shutdown, and after that I am able to control through 
initctl.

-- 
Cannot control squid Unknown instance
https://bugs.launchpad.net/bugs/573853
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to squid in ubuntu.

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


[Bug 536942] Re: --firstboot option broken in 0.12.2-0ubuntu3

2010-05-12 Thread Florian Kruse
Sorry for being so impatient, but will this fix be available as a
software package in Lucid? If so, when?

-- 
--firstboot option broken in 0.12.2-0ubuntu3
https://bugs.launchpad.net/bugs/536942
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vm-builder in ubuntu.

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


[Bug 578922] Re: user-tmp abstraction can be used in combined attack

2010-05-12 Thread Jamie Strandboge
Thank you for using Ubuntu and reporting a bug.

The initial title for this bug is misleading: Bypass AppArmor ruleset
of MySQL allows for remote code execution. First, the MySQL profile
does not allow MySQL to execute code in /tmp or other places and none of
the profile's ruleset was bypassed. As you said, it does allow writing
files to /tmp (see below for possible improvements). Second, Ubuntu does
not ship a profile for apache, php or phpnuke. While there is an example
profile for phpsysinfo (that is in complain mode), it does not use the
user-tmp abstraction. Third, the attack relies upon php being able to
include a file from /tmp. This should be considered a broken php
configuration.

That said, this bug does make a good point: administrators creating
AppArmor profiles and configuring their systems need to be mindful of
interactions between applications. As demonstrated, AppArmor can both be
configured to prevent attacks in vulnerable applications as well as
misconfigured to allow said attacks.

As described, there are several things which could help prevent this attack 
from succeeding, remembering that mysql runs as the 'mysql' user and apache 
runs as the 'www-data' user in Ubuntu:
1. include_path could be used to disallow including files from /tmp. Because of 
the wide range of applications that user's can install, Ubuntu cannot ship with 
a hardened include_path, but it should be considered standard/best practice to 
adjust this for precisely the bug you mentioned. Also, DAC should have 
prevented writing to /var/www in the first place (though by your description, 
AppArmor caught it first).
2. as mentioned, MySQL could be configured to use a different tmp directory 
with mode 700, then normal DAC would have prevented this attack. This can be 
done by adjusting the 'tmpdir' variable in mysql.cnf. This should be considered 
for inclusion in Ubuntu.
3. a umask of 077 could be used for MySQL in which case normal DAC would have 
prevented this. This should be considered for inclusion in Ubuntu
4. the php application could have been protected with AppArmor, disallowing 
reads from /tmp

I do consider it a bug that the LAMP stack is allowed to interact in
this manner. MySQL does need a temporary directory to do its work, and
the problem is not in AppArmor (we can't deny access to MySQL's scratch
area without breaking it) but in the default configuration for MySQL in
Ubuntu. Adjusting MySQL's umask to 077 is probably the simplest and
safest change that could be made, and would have prevented this attack.

I am going to open a task against mysql for 2 and 3 above. I do not
believe this is a bug in AppArmor because, as mentioned, it is simply
allowing the necessary access to MySQL's scratch area and Ubuntu does
not ship a profile for this vulnerable php application, apache or php
(if an administrator writes one, then it is the administrator's
responsibility to understand the interactions between the software in
use on his/her system).

That said, I am going to leave the apparmor task open for now, because
one improvement could be considered in the user-tmp abstraction: we
could use an owner match. If both MySQL and the php application were
confined by AppArmor and both used the user-tmp abstraction with this
owner match, then AppArmor could have prevented against the
(mis)configuration of mysql and the vulnerable php application. This
improvement needs to be carefully considered, because it might break
other applications, but it would be useful in helping prevent against
combined attacks when all the software is confined by AppArmor.

** Summary changed:

- user-tmp abstraction can be used in combined attack
+ mysql configuration does not prevent against combined attacks against LAMP 
stack

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

** Also affects: mysql-dfsg-5.1 (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: mysql-dfsg-5.1 (Ubuntu)
   Status: New = Triaged

-- 
mysql configuration does not prevent against combined attacks against LAMP stack
https://bugs.launchpad.net/bugs/578922
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 578922] Re: mysql configuration does not prevent against combined attacks against LAMP stack

2010-05-12 Thread Michael Brooks
Jamie Strandboge,

Your response is in depth and I agree that your patches would break my exploit 
in its current form.   I highly disagree with the following statement:
I do not believe this is a bug in AppArmor because, as mentioned, it is simply 
allowing the necessary access to MySQL's scratch area and Ubuntu does not ship 
a profile for this vulnerable php application, apache or php (if an 
administrator writes one, then it is the administrator's responsibility to 
understand the interactions between the software in use on his/her system).

The vast majority of administrators will use the default AppArmor rule
sets provided to them and will probably be unaware of its existence.
Although Ubuntu only ships with MySQL rules the principal of exploit
chaining is to take advantage of weak points in the system as a whole.
In a sense exploit chaining is used to exploit the weakest links in a
chain of security systems.  The lack of rule sets is every much of a
vulnerability as an ineffective one.The acknowledgment of this
bypass of an AppArmor rule set would in turn be an acknowledgment of a
fundamental design flaw in AppArmor and this is a difficult statement to
make in public.   Although my exploit and future exploits will make this
statement clear enough.  I have no doubt AppArmor dev team will react to
this.

It should also be noted that more strict forms of processes separation
such as SELinux,  Virtual Machines and Chroots do not suffer from this
same attack. The exploit that I posted,  doesn't work under Fedora.
This is because SELinux will not allow PHP to include owned by another
user such as mysqld or any other process that that is exploited. I
think this is the simplest and most widely effective patch against my
attack pattern.  Perhaps AppArmor can inherit this elegance.

Thanks,
Michael Brooks

-- 
mysql configuration does not prevent against combined attacks against LAMP stack
https://bugs.launchpad.net/bugs/578922
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 578681] Re: apache2 crashes on svn query with kerberos + ssl

2010-05-12 Thread Sönke von Heymann
Attached is a gdb coredump-output from this crash:

[Wed May 12 09:37:44 2010] [notice] child pid 417 exit signal Segmentation 
fault (11), possible coredump in /tmp
*** glibc detected *** /usr/sbin/apache2: double free or corruption (fasttop): 
0x7f6660018d20 ***
[Wed May 12 09:37:45 2010] [notice] child pid 549 exit signal Segmentation 
fault (11), possible coredump in /tmp
apache2: tpp.c:63: __pthread_tpp_change_priority: Assertion `new_prio == -1 || 
(new_prio = __sched_fifo_min_prio  new_prio = __sched_fifo_max_prio)' 
failed.
[Wed May 12 09:37:46 2010] [notice] child pid 582 exit signal Segmentation 
fault (11), possible coredump in /tmp
[Wed May 12 09:37:46 2010] [notice] child pid 583 exit signal Aborted (6), 
possible coredump in /tmp
*** glibc detected *** /usr/sbin/apache2: free(): invalid pointer: 
0x7f665c0085f0 ***
=== Backtrace: =
/lib/libc.so.6(+0x775b6)[0x7f667b2e25b6]
/lib/libc.so.6(cfree+0x73)[0x7f667b2e8e53]
/usr/lib/libkrb5.so.3(+0x39fd7)[0x7f6679d29fd7]
/usr/lib/apache2/modules/mod_auth_kerb.so(+0x34a2)[0x7f667a1eb4a2]
/usr/lib/apache2/modules/mod_auth_kerb.so(+0x3650)[0x7f667a1eb650]
/usr/lib/apache2/modules/mod_auth_kerb.so(+0x454c)[0x7f667a1ec54c]
/usr/lib/apache2/modules/mod_auth_kerb.so(+0x5e9f)[0x7f667a1ede9f]
/usr/sbin/apache2(ap_run_check_user_id+0x68)[0x7f667c0f12a8]
/usr/sbin/apache2(ap_process_request_internal+0x262)[0x7f667c0f34e2]
/usr/sbin/apache2(ap_process_request+0x1b8)[0x7f667c1075d8]
/usr/sbin/apache2(+0x52498)[0x7f667c104498]
/usr/sbin/apache2(ap_run_process_connection+0x68)[0x7f667c0fdf38]
/usr/sbin/apache2(+0x5ae82)[0x7f667c10ce82]
/usr/lib/libapr-1.so.0(+0x292ff)[0x7f667b8332ff]
/lib/libpthread.so.0(+0x69ca)[0x7f667b5f39ca]
/lib/libc.so.6(clone+0x6d)[0x7f667b35169d]
=== Memory map: 
7f665800-7f6658031000 rw-p  00:00 0
7f6658031000-7f665c00 ---p  00:00 0
7f665c00-7f665c032000 rw-p  00:00 0
7f665c032000-7f666000 ---p  00:00 0
7f666000-7f666005a000 rw-p  00:00 0
7f666005a000-7f666400 ---p  00:00 0
7f66658fc000-7f6665901000 r-xp  08:01 260979 
/lib/libnss_dns-2.11.1.so
7f6665901000-7f6665b0 ---p 5000 08:01 260979 
/lib/libnss_dns-2.11.1.so
7f6665b0-7f6665b01000 r--p 4000 08:01 260979 
/lib/libnss_dns-2.11.1.so
7f6665b01000-7f6665b02000 rw-p 5000 08:01 260979 
/lib/libnss_dns-2.11.1.so
7f6665b02000-7f6665b04000 r-xp  08:01 82101  
/usr/lib/krb5/plugins/preauth/encrypted_challenge.so
7f6665b04000-7f6665d03000 ---p 2000 08:01 82101  
/usr/lib/krb5/plugins/preauth/encrypted_challenge.so
7f6665d03000-7f6665d04000 r--p 1000 08:01 82101  
/usr/lib/krb5/plugins/preauth/encrypted_challenge.so
7f6665d04000-7f6665d05000 rw-p 2000 08:01 82101  
/usr/lib/krb5/plugins/preauth/encrypted_challenge.so
7f6665d05000-7f6665d1b000 r-xp  08:01 260796 
/lib/libgcc_s.so.1
7f6665d1b000-7f6665f1a000 ---p 00016000 08:01 260796 
/lib/libgcc_s.so.1
7f6665f1a000-7f6665f1b000 r--p 00015000 08:01 260796 
/lib/libgcc_s.so.1
7f6665f1b000-7f6665f1c000 rw-p 00016000 08:01 260796 
/lib/libgcc_s.so.1
7f6665f1c000-7f6665f1d000 ---p  00:00 0
7f6665f1d000-7f71d000 rw-p  00:00 0
7f71d000-7f71e000 ---p  00:00 0
7f71e000-7ff1e000 rw-p  00:00 0
7ff1e000-7ff1f000 ---p  00:00 0
7ff1f000-7f666771f000 rw-p  00:00 0
7f666771f000-7f666772 ---p  00:00 0
7f666772-7f6667f2 rw-p  00:00 0
7f6667f2-7f6667f21000 ---p  00:00 0
7f6667f21000-7f6668721000 rw-p  00:00 0
7f6668721000-7f6668722000 ---p  00:00 0
7f6668722000-7f6668f22000 rw-p  00:00 0
7f6668f22000-7f6668f23000 ---p  00:00 0
7f6668f23000-7f6669723000 rw-p  00:00 0
7f6669723000-7f6669724000 ---p  00:00 0
7f6669724000-7f6669f24000 rw-p  00:00 0
7f6669f24000-7f6669f25000 ---p  00:00 0
7f6669f25000-7f666a725000 rw-p  00:00 0
7f666a725000-7f666a726000 ---p  00:00 0
7f666a726000-7f666af26000 rw-p  00:00 0
7f666af26000-7f666af27000 ---p  00:00 0
7f666af27000-7f666b727000 rw-p  00:00 0
7f666b727000-7f666b728000 ---p  00:00 0
7f666b728000-7f666bf28000 rw-p  00:00 0
7f666bf28000-7f666bf29000 ---p  00:00 0
7f666bf29000-7f666c729000 rw-p  00:00 0
7f666c729000-7f666c72a000 ---p  00:00 0
7f666c72a000-7f666cf2a000 rw-p  00:00 0
7f666cf2a000-7f666cf2b000 ---p  00:00 0
7f666cf2b000-7f666d72b000 rw-p  00:00 0
7f666d72b000-7f666d72c000 ---p  00:00 0
7f666d72c000-7f666df2c000 rw-p  00:00 0
7f666df2c000-7f666df2d000 ---p  00:00 0
7f666df2d000-7f666e72d000 rw-p  00:00 0

[Bug 517714] Re: [Lucid] Error starting domain: could not remove profile

2010-05-12 Thread Kevin Pattison
Hey guys, I know this has been closed a while, but was still getting the error 
when trying to start a VM in Lucid RC:
libvirtError: monitor socket did not show up.: Connection refused

When I updated my  file and rebooted I'm now getting:
Unable to open connection to hypervisor URI 'qemu:///system':
unable to connect to '/var/run/libvirt/libvirt-sock': No such file or directory
Traceback (most recent call last):
  File /usr/share/virt-manager/virtManager/connection.py, line 896, in 
_try_open
None], flags)
  File /usr/lib/python2.6/dist-packages/libvirt.py, line 111, in openAuth
if ret is None:raise libvirtError('virConnectOpenAuth() failed')
libvirtError: unable to connect to '/var/run/libvirt/libvirt-sock': No such 
file or directory

I uninstalled libvirt0 (and everything that depended on it) and then re-
installed ubuntu-virt-server and ubuntu-virt-mgmt and now I'm back to
the first error (Connection refused).

I'm using a fakeraid array with /dev/mapper. Could this be causing this?

-- 
[Lucid] Error starting domain: could not remove profile
https://bugs.launchpad.net/bugs/517714
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libvirt in ubuntu.

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


[Bug 578922] Re: mysql configuration does not prevent against combined attacks against LAMP stack

2010-05-12 Thread Jamie Strandboge
Thanks for your response. My point 4 attempted to address your point:
4. the php application could have been protected with AppArmor, disallowing 
reads from /tmp

You cannot attribute a bug to AppArmor for a profile that does not
exist. The AppArmor model is to confine processes, not data. Because
apache does not have a profile in the default installation, AppArmor
cannot confine it. Therefore it is not a bug in AppArmor but rather a
missing security feature in distributions like Ubuntu that have AppArmor
available but do not have a profile for a particular application, in
this case apache. However, this is true of any system that doesn't have
full labeling and confinement. Fedora happens to have policy for apache,
but this attack would presumably work on Fedora if it was against a
different application for which policy was not written (such as
lighttpd). Simply put, one cannot bypass a rule that does not exist. The
MySQL ruleset was not bypassed -- MySQL needs an area to write files and
the ruleset allows that. Admittedly, it is a bug in the MySQL
Debian/Ubuntu packaging that allows this attack to succeed and this will
be addressed. If Apache shipped an enforcing profile which used the
user-tmp abstraction as is, only then could you attribute that the
intended AppArmor protections were bypassed. This bug highlights that
the user-tmp abstraction is too loose for when people have profiled the
applications involved and are depending on it to work to thwart chained
attacks, and I committed a fix for that to trunk which requires 'owner'
matching which should largely address this.

Fedora happens to have a MAC feature available in its distribution (see
below for why Ubuntu made a different choice) for apache. Unfortunately,
due to packaging practices in Ubuntu and Debian, it is very difficult to
confine apache in a general enough fashion for users to install and use
web applications that provides any significant security benefit. This is
a known issue and something that is being worked on (it is on the Ubuntu
security team's roadmap) in various ways. I won't go into those details
further in this bug, but if you are interested, I encourage you to
discuss this in the ubuntu-hardened mailing list and/or IRC channel.

AIUI, this vulnerability does not work on Fedora because apache is
confined with SELinux. Apache in Ubuntu is not confined by AppArmor. In
Fedora, users are often required to adjust SELinux policy to get their
applications to work. In Ubuntu, we choose to not break those
applications, but instead provide an example of how to confine a web
application that administrators can use to opt into the AppArmor
security feature. Our stance is that if a security feature breaks
default and common configurations, users will turn off the feature.
While it is possible to only disable the Apache profile, if people are
frustrated enough by a too strict AppArmor profile, they will disable
all of AppArmor on the system, which will weaken the system overall
since there are several profiles enforced on a typical Ubuntu system
(such as the aforementioned MySQL profile). This is a distribution
choice.

-- 
mysql configuration does not prevent against combined attacks against LAMP stack
https://bugs.launchpad.net/bugs/578922
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 578922] Re: mysql configuration does not prevent against combined attacks against LAMP stack

2010-05-12 Thread Jamie Strandboge
** Changed in: apparmor (Ubuntu)
   Status: Triaged = Fix Committed

** Description changed:

  Binary package hint: apparmor
  
  I have reported this to the CERT/Bugtraq system so you may have been
  contacted by them.  It was a large bug report so something may have
  fallen though the cracks.
  
- The problem is AppArmor rule sets do not antiquity protect a LAMP
+ The problem is AppArmor rule sets do not adequately protect a LAMP
  environment  from attacks.  Exploit code has been written which bypasses
  AppAmoror rule sets to obtain remote code execution.   The exploit can
  be obtained here (https://sitewat.ch/Exploits/nuke_exploit.txt).
  
  The attack scenario:
  Back before AppArmor it was common to see sql injection attacks against 
PHP/MySQL like this:
  Vulnerable code:
  ?php
  mysql_query(select name from user where id=.$_GET[id]);
  ?
  Exploit:
  http://localhost/sql_inj.php?id=0 union select ?php eval($_GET[e]);? into 
outfile /var/www/backdoor.php
  
  AppArmor stops this attack,  which is impressive.  However,  there is a
  flaw in this security system.  In my exploit i am dropping the file in
  /tmp/theme.php  then i use a Local File Include vulnerability (LFI) to
  execute this php file.   The problem is that BOTH MySQL and Apache have
  access to /tmp/.  The line #include abstractions/user-tmp in the
  usr.sbin.mysqld  is the source of the vulnerability.  The patch is very
  simple,  mysql should have its own tmp folder that only the mysqld
  process has access to.
  
  This whole concept of process separation to prevent attacks is
  completely undermined by creating unions  between processes in the
  form of these header files. In fact every time you see an #include in an
  app armor rule set,  its a point of weakness.I hope to give a
  another killer blackhat/defcon talk,  this time i am talking about about
  my exploit and these abuses against apparmor.
  
  Thanks,
  Michael Brooks.

-- 
mysql configuration does not prevent against combined attacks against LAMP stack
https://bugs.launchpad.net/bugs/578922
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 578922] Re: mysql configuration should be adjusted to help prevent against chained attacks against LAMP stack

2010-05-12 Thread Jamie Strandboge
** Summary changed:

- mysql configuration does not prevent against combined attacks against LAMP 
stack
+ mysql configuration should be adjusted to help prevent against chained 
attacks against LAMP stack

-- 
mysql configuration should be adjusted to help prevent against chained attacks 
against LAMP stack
https://bugs.launchpad.net/bugs/578922
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 579227] [NEW] [qemu-system-arm] hardware error: pl011_read: Bad offset 16000018

2010-05-12 Thread Gionn (Giovanni Toraldo)
Public bug reported:

Binary package hint: qemu-kvm

I am trying to run the arm test available at
http://wiki.qemu.org/Download

sc...@casseruola:~/arm-test$ qemu-system-arm -kernel zImage.integrator -initrd 
arm_root.img
qemu: hardware error: pl011_read: Bad offset 1618

CPU #0:
R00=0055 R01=2d02ef8d R02=1600 R03=
R04=0055 R05=00013149 R06=41069265 R07=0113
R08=0100 R09= R10=00127d9c R11=0013120c
R12=00131210 R13=00131200 R14=00010954 R15=000105f0
PSR=21d3 --C- A svc32
Aborted

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: qemu-kvm-extras 0.12.3+noroms-0ubuntu9
ProcVersionSignature: Ubuntu 2.6.32-22.33-server 2.6.32.11+drm33.2
Uname: Linux 2.6.32-22-server x86_64
Architecture: amd64
Date: Wed May 12 12:05:05 2010
KvmCmdLine:
 UIDPID  PPID  CSZ   RSS PSR STIME TTY  TIME CMD
 root  1404 1  1 117403 275672 0 11:34 ?00:00:20 /usr/bin/kvm 
-S -M pc-0.12 -enable-kvm -m 256 -smp 2 -name imap-libersoft -uuid 
56963194-4732-bc88-4086-894785a6766b -chardev 
socket,id=monitor,path=/var/lib/libvirt/qemu/imap-libersoft.monitor,server,nowait
 -monitor chardev:monitor -boot c -drive 
file=/dev/casseruola/imap-libersoft-root,if=virtio,index=0,boot=on,format=raw 
-drive if=ide,media=cdrom,index=2 -drive 
file=/dev/casseruola/imap-libersoft-srv,if=virtio,index=1,format=raw -net 
nic,macaddr=52:54:00:15:f9:94,vlan=0,model=virtio,name=virtio.0 -net 
tap,fd=38,vlan=0,name=tap.0 -chardev pty,id=serial0 -serial chardev:serial0 
-parallel none -usb -vnc 127.0.0.1:0 -vga cirrus -soundhw es1370
MachineType: Unknow Unknow
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-22-server 
root=/dev/mapper/hostname-host--root ro
ProcEnviron:
 PATH=(custom, no user)
 LANG=it_IT.UTF-8
 SHELL=/bin/bash
SourcePackage: qemu-kvm
dmi.bios.date: 05/19/2008
dmi.bios.vendor: Phoenix Technologies, LTD
dmi.bios.version: 6.00 PG
dmi.board.name: RS780-SB700
dmi.board.version: Unknow
dmi.chassis.type: 3
dmi.chassis.vendor: Unknow
dmi.chassis.version: Unknow
dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvr6.00PG:bd05/19/2008:svnUnknow:pnUnknow:pvrUnknow:rvn:rnRS780-SB700:rvrUnknow:cvnUnknow:ct3:cvrUnknow:
dmi.product.name: Unknow
dmi.product.version: Unknow
dmi.sys.vendor: Unknow

** Affects: qemu-kvm (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug lucid

-- 
[qemu-system-arm] hardware error: pl011_read: Bad offset 1618
https://bugs.launchpad.net/bugs/579227
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in ubuntu.

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


[Bug 566560] Re: samba server requires smbpasswd -a user constantly

2010-05-12 Thread rolfy
I'm having this problem, connecting smbclient connections, or linux
(gnome browser) connections or vista connections, so i dont really think
it's windows 7 specific...

-- 
samba server requires smbpasswd -a user constantly
https://bugs.launchpad.net/bugs/566560
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 566560] Re: samba server requires smbpasswd -a user constantly

2010-05-12 Thread rolfy
Okay, i've been pulling my hair out (there's not much left either, but i
digress)...

I started from a very blank smb.conf for one...

I noticed that in gnome now if i restart samba, i have to disconnect and 
reconnect the drive otherwise i get an error saying:
Could not open location 'smb://MACHINE/PATH'
no data available

work around for that issue (if it is a new issue) is to disconnect and 
reconnect the mount (linux at least - haven't tried windows, hope you don't 
have to do that there).
==
$ testparm -s /etc/samba/smb.conf
Load smb config files from /etc/samba/smb.conf
rlimit_max: rlimit_max (1024) below minimum Windows limit (16384)
Processing section [homes]
Processing section [printers]
Loaded services file OK.
Server role: ROLE_STANDALONE
[global]
server string = Samba Server
log file = /var/log/samba/log.%m
max log size = 50
unix extensions = No
dns proxy = No
wide links = Yes

[homes]
comment = Home Directories
read only = No
browseable = No
browsable = No

[printers]
comment = All Printers
path = /usr/spool/samba
printable = Yes
browseable = No
browsable = No
==

even with that (which is pretty much empty!) if i restart the service,
sometimes i get 'Password required' prompt for a drive i've already
remembered the password to...

once its in that state, smbclient does:
smbclient -L MACHINE  -U rolfy
Enter rolfy's password: 
session setup failed: NT_STATUS_LOGON_FAILURE

log.CLIENT has:
===
[2010/05/12 21:05:28,  1] smbd/service.c:676(make_connection_snum)
  create_connection_server_info failed: NT_STATUS_ACCESS_DENIED
[2010/05/12 21:05:28,  1] smbd/service.c:1063(make_connection_snum)
  merlin (192.168.1.15) connect to service rolfy initially as user rolfy 
(uid=1001, gid=1001) (pid 8251)
[2010/05/12 21:08:17,  1] smbd/service.c:1240(close_cnum)
  merlin (192.168.1.15) closed connection to service rolfy
[2010/05/12 21:08:26,  1] smbd/service.c:676(make_connection_snum)
  create_connection_server_info failed: NT_STATUS_ACCESS_DENIED
[2010/05/12 21:08:58,  1] smbd/service.c:676(make_connection_snum)
  create_connection_server_info failed: NT_STATUS_ACCESS_DENIED

log.smbd has

[2010/05/12 21:08:17,  0] smbd/server.c:1069(main)
  smbd version 3.4.7 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2009
[2010/05/12 21:08:17,  0] smbd/server.c:1115(main)
  standard input is not a socket, assuming -D option

syslog and daemon.log basically has just the 'assuming -D option' message

did a grep in /var/lib/samba, and passdb.tbd does contain my username...
so i enabled the user with smbpasswd -e, but that didn't help.

I then added, and it's good to go again

I'm not sure if this gives more information than was already here, but
hopefully it stops someone else taking these same steps...

-- 
samba server requires smbpasswd -a user constantly
https://bugs.launchpad.net/bugs/566560
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 573853] Re: Cannot control squid Unknown instance

2010-05-12 Thread enrigp
I have the same problem with network-manager, I cant stop, start o
restart it

-- 
Cannot control squid Unknown instance
https://bugs.launchpad.net/bugs/573853
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to squid in ubuntu.

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


Re: [Bug 573853] Re: Cannot control squid Unknown instance

2010-05-12 Thread ehu4ever
I'm using Squid 3.1 deb package building from source code.
It's working.


On Wed, May 12, 2010 at 8:21 PM, enrigp enrg...@gmail.com wrote:

 I have the same problem with network-manager, I cant stop, start o
 restart it

 --
 Cannot control squid Unknown instance
 https://bugs.launchpad.net/bugs/573853
 You received this bug notification because you are subscribed to squid
 in ubuntu.

 Status in “squid” package in Ubuntu: New

 Bug description:
 Binary package hint: upstart

 I cannot control squid via upstart.
 Squid is running, I want to stop it:
 $ sudo stop  squid
 stop: Unknown instance:
 $ ps -ef|grep squid
 proxy 1986 1  0 19:44 ?00:00:00 (squid)
 liptak3328  1689  0 19:54 pts/100:00:00 grep squid
 $ initctl list|grep squid
 squid stop/waiting
 $ sudo start squid
 start: Job failed to start
 $ sudo reload squid
 reload: Unknown instance:

 The squid is running and fully functioning, I am submitting this bug report
 via it.

 $ lsb_release  -rd
 Description:Ubuntu 10.04 LTS
 Release:10.04

 Using upstart 0.6.5-6 on Ubuntu 10.04 x86_64.

 ProblemType: Bug
 DistroRelease: Ubuntu 10.04
 Package: upstart 0.6.5-6
 ProcVersionSignature: Ubuntu 2.6.32-22.33-generic 2.6.32.11+drm33.2
 Uname: Linux 2.6.32-22-generic x86_64
 Architecture: amd64
 Date: Sun May  2 19:50:18 2010
 ProcEnviron:
  PATH=(custom, user)
  LANG=en_US.UTF-8
  SHELL=/bin/bash
 SourcePackage: upstart





-- 
….oooO..
…..(….)…Oooo…
……)../…..(….)….
…..(_/…….)../…..
…(_/……
… 路途…
………. 遥远 …….

-- 
Cannot control squid Unknown instance
https://bugs.launchpad.net/bugs/573853
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to squid in ubuntu.

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


[Bug 526464] Re: intermittent authentication: check_ntlm_password: Authentication for user [someuser] - [someuser] FAILED with error NT_STATUS_ACCESS_DENIED

2010-05-12 Thread Cory Coager
Has any progress been made on this?  Any chance Lucid Lynx doesn't have
this bug?

-- 
intermittent authentication: check_ntlm_password:  Authentication for user 
[someuser] - [someuser] FAILED with error NT_STATUS_ACCESS_DENIED
https://bugs.launchpad.net/bugs/526464
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 578922] Re: mysql configuration should be adjusted to help prevent against chained attacks against LAMP stack

2010-05-12 Thread Michael Brooks
Hey Jamie,

For the most part I agree with your stance and I am happy to see the summary 
update.  I also totally agree with this statement:
Our stance is that if a security feature[SELinux] breaks default and common 
configurations, users will turn off the feature.

PHP-Nuke will not run on a default Fedora system because of SELinux and
I think that the most common response is for people to disable it all
together.  I agree that a security measure like this should be avoided
at all costs in Ubuntu.  I think that we can both agree that there is a
common ground in terms of security and usability.   I will keep an eye
on this problem and see that it matures properly.

You are correct AppArmor doesn't have a feature to protect the context
in which data is accessed like SELinux,  and it would be nice if it did.
My argument is that AppArmor with its current feature set can be
configured to break my exploit,  but other proven security measures can
also be used to address this issue.  I would like to be involved with
Hardened Ubuntu to help find a good solution to these problems.

Thanks Again,
Michael

-- 
mysql configuration should be adjusted to help prevent against chained attacks 
against LAMP stack
https://bugs.launchpad.net/bugs/578922
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 292588] Re: VirtualBox can't operate in VMX root mode.

2010-05-12 Thread Felix Geyer
Running VirtualBox VMs when the kvm module is loaded works for me in Lucid.
Does it fail for anyone?

-- 
VirtualBox can't operate in VMX root mode.
https://bugs.launchpad.net/bugs/292588
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in ubuntu.

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


[Bug 292588] Re: VirtualBox can't operate in VMX root mode.

2010-05-12 Thread Felix Geyer
I still think qemu-kvm shouldn't load those kernel modules when the package has 
been removed but not purged.
Please consider sponsoring this fix:

qemu-kvm (0.12.3+noroms-0ubuntu10) maverick; urgency=low

  * debian/qemu-kvm.upstart: don't load the kernel modules if the package
has been removed but the upstart jobs still exists. (LP: #292588)

 -- Felix Geyer debfx-...@fobos.de  Wed, 12 May 2010 16:04:48 +0200


** Patch added: qemu-kvm_0.12.3+noroms-0ubuntu10.debdiff
   
http://launchpadlibrarian.net/48339883/qemu-kvm_0.12.3%2Bnoroms-0ubuntu10.debdiff

-- 
VirtualBox can't operate in VMX root mode.
https://bugs.launchpad.net/bugs/292588
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in ubuntu.

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


[Bug 400349] Re: dhclient-script fails with apparmor

2010-05-12 Thread Alex Bligh
This bug appears in Jaunty if a new kernel is loaded - strace below. Is
it really working as designed if loading a new kernel causes dhcp to
fail?

508  execve(/sbin/dhclient-script, [/sbin/dhclient-script], [/* 4 vars */]) 
= 0
2508  brk(0)= 0x215c000
2508  fcntl(0, F_GETFD) = 0
2508  fcntl(1, F_GETFD) = 0
2508  fcntl(2, F_GETFD) = 0
2508  access(/etc/suid-debug, F_OK)   = -1 ENOENT (No such file or directory)
2508  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) 
= 0x7f5fa3e92000
2508  access(/etc/ld.so.nohwcap, F_OK) = -1 ENOENT (No such file or directory)
2508  mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) 
= 0x7f5fa3e9
2508  access(/etc/ld.so.preload, R_OK) = -1 ENOENT (No such file or directory)
2508  open(/etc/ld.so.cache, O_RDONLY) = -1 EACCES (Permission denied)
2508  open(/lib/tls/x86_64/libncurses.so.5, O_RDONLY) = -1 ENOENT (No such 
file or directory)
2508  stat(/lib/tls/x86_64, 0x7fffa0d10530) = -1 ENOENT (No such file or 
directory)
2508  open(/lib/tls/libncurses.so.5, O_RDONLY) = -1 ENOENT (No such file or 
directory)
2508  stat(/lib/tls, 0x7fffa0d10530)  = -1 ENOENT (No such file or directory)
2508  open(/lib/x86_64/libncurses.so.5, O_RDONLY) = -1 ENOENT (No such file 
or directory)
2508  stat(/lib/x86_64, 0x7fffa0d10530) = -1 ENOENT (No such file or 
directory)
2508  open(/lib/libncurses.so.5, O_RDONLY) = -1 EACCES (Permission denied)

-- 
dhclient-script fails with apparmor
https://bugs.launchpad.net/bugs/400349
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dhcp3 in ubuntu.

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


[Bug 579584] [NEW] setgid, setuid needed by /etc/apparmor.d/abstractions/libvirt-qemu

2010-05-12 Thread s450r1
Public bug reported:

I couldn't boot any guest VMs with virsh until I modified 
/etc/apparmor.d/abstractions/libvirt-qemu:
j...@kvmhost:~$ sudo bzr diff /etc/apparmor.d/
=== modified file 'apparmor.d/abstractions/libvirt-qemu'
--- apparmor.d/abstractions/libvirt-qemu2010-04-30 15:33:20 +
+++ apparmor.d/abstractions/libvirt-qemu2010-05-12 17:26:56 +
@@ -8,6 +8,8 @@
   capability dac_override,
   capability dac_read_search,
   capability chown,
+  capability setgid,
+  capability setuid,
 
   # this is needed with libcap-ng support, however it breaks a lot of things
   # atm, so just silence the denial until libcap-ng works right. LP: #522845

... and restarted apparmor and libvirtd.

Without `capability setgid`, the qemu guest log file contained:
LC_ALL=C PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/sbin:/sbin:/bin QEMU_
AUDIO_DRV=none /usr/bin/kvm -S -M pc-0.11 -enable-kvm -m 512 -smp 1 -name dm1 -u
uid 79d03a71-3be6-19df-1070-791239480888 -chardev socket,id=monitor,path=/var/li
b/libvirt/qemu/dm1.monitor,server,nowait -monitor chardev:monitor -boot c -drive
 file=/var/vm/dm1/disk0.qcow2,if=ide,index=0,boot=on -drive 
file=/var/vm/dm1/disk1.qcow2,if=ide,index=1 -net 
nic,macaddr=52:54:00:bf:75:90,vlan=0,model=virtio,name=virtio.0 -net 
tap,fd=50,vlan=0,name=tap.0 -serial none -parallel none -usb -vnc 127.0.0.1:0 
-vga cirrus
libvir: QEMU error : cannot change to '109' group: Operation not permitted

Without `capability setuid`, the qemu guest log file contained:
LC_ALL=C PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/sbin:/sbin:/bin 
QEMU_AUDIO_DRV=none /usr/bin/kvm -S -M pc-0.11 -enable-kvm -m 512 -smp 1 -name 
dm1 -uuid 79d03a71-3be6-19df-1070-791239480888 -chardev 
socket,id=monitor,path=/var/lib/libvirt/qemu/dm1.monitor,server,nowait -monitor 
chardev:monitor -boot c -drive 
file=/var/vm/dm1/disk0.qcow2,if=ide,index=0,boot=on -drive 
file=/var/vm/dm1/disk1.qcow2,if=ide,index=1 -net 
nic,macaddr=52:54:00:bf:75:90,vlan=0,model=virtio,name=virtio.0 -net 
tap,fd=50,vlan=0,name=tap.0 -serial none -parallel none -usb -vnc 127.0.0.1:0 
-vga cirrus
libvir: QEMU error : cannot change to '104' user: Operation not permitted

I don't really know if these changes were the right thing to do, but it
did allow me to boot the VMs with virsh.

j...@kvmhost:~$ lsb_release -rd
Description:Ubuntu 10.04 LTS
Release:10.04

j...@kvmhost:~$ apt-cache policy libvirt-bin kvm qemu-kvm
libvirt-bin:
  Installed: 0.7.5-5ubuntu27
  Candidate: 0.7.5-5ubuntu27
  Version table:
 *** 0.7.5-5ubuntu27 0
500 http://us.archive.ubuntu.com/ubuntu/ lucid/main Packages
100 /var/lib/dpkg/status
kvm:
  Installed: 1:84+dfsg-0ubuntu16+0.12.3+noroms+0ubuntu9
  Candidate: 1:84+dfsg-0ubuntu16+0.12.3+noroms+0ubuntu9
  Version table:
 *** 1:84+dfsg-0ubuntu16+0.12.3+noroms+0ubuntu9 0
500 http://us.archive.ubuntu.com/ubuntu/ lucid/main Packages
100 /var/lib/dpkg/status
qemu-kvm:
  Installed: 0.12.3+noroms-0ubuntu9
  Candidate: 0.12.3+noroms-0ubuntu9
  Version table:
 *** 0.12.3+noroms-0ubuntu9 0
500 http://us.archive.ubuntu.com/ubuntu/ lucid/main Packages
100 /var/lib/dpkg/status

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


** Tags: apparmor

-- 
setgid, setuid needed by /etc/apparmor.d/abstractions/libvirt-qemu
https://bugs.launchpad.net/bugs/579584
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libvirt in ubuntu.

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


[Bug 579596] [NEW] VNC console doesn't accept keyboard input during PXE boot

2010-05-12 Thread John Morrissey
Public bug reported:

Binary package hint: qemu-kvm

On lucid, I'm PXE booting a VM.

Keyboard input on the VNC console works fine until PXELinux loads, so I
can answer N to:

Boot from (N)etwork or (Q)uit? N

just fine, but once PXELinux loads, the VNC console ignores all keyboard
input at the boot: prompt. No matter what keystrokes I hit, nothing
happens on the VNC console.

Input on PXELinux's *serial* console works fine. I can boot a target and
keyboard input on the VNC console works fine when the target boots. What
I type on the PXELinux serial console appears in the PXELinux VNC
console. Interestingly, if I request a nonexistent boot target on the
serial console, the VNC console starts accepting keyboard input. For
example:

r...@pxe-244:~# virsh console foo
Connected to domain foo
Escape character is ^]

PXELINUX 3.63 Debian-2008-07-15  Copyright (C) 1994-2008 H. Peter Anvin
boot: a
Could not find kernel image: a
boot: 

The VNC console now accepts keyboard input.

I have kvm-pxe installed (obviously, since the VM *does* successfully
load PXELinux). I'm not sure how to troubleshoot this further, or even
if this is a bug in qemu-kvm proper; this is a strange failure mode.

The libvirt domain XML for the VM I'm booting is below. It was created
by a local tool, but using virt-manager(1) to create and PXE boot a VM
exhibits the same behavior.


domain type='kvm'
  namefoo/name
  uuidc80f27f4-cf2d-2125-9dd5-ca35855bdf42/uuid
  memory2097152/memory
  currentMemory2097152/currentMemory
  vcpu1/vcpu
  os
type arch='x86_64' machine='pc-0.12'hvm/type
boot dev='network'/
  /os
  features
acpi/
  /features
  clock offset='utc'/
  on_poweroffdestroy/on_poweroff
  on_rebootrestart/on_reboot
  on_crashrestart/on_crash
  devices
emulator/usr/bin/kvm/emulator
disk type='file' device='disk'
  source file='/var/lib/libvirt/images/foo.raw'/
  target dev='vda' bus='virtio'/
/disk
interface type='bridge'
  mac address='02:00:00:3d:7c:a5'/
  source bridge='br0'/
  target dev='vnet0'/
  model type='virtio'/
/interface
serial type='pty'
  target port='0'/
/serial
console type='pty'
  target port='0'/
/console
input type='mouse' bus='ps2'/
graphics type='vnc' port='-1' autoport='yes' listen='0.0.0.0'/
video
  model type='cirrus' vram='9216' heads='1'/
/video
  /devices
/domain

** Affects: qemu-kvm (Ubuntu)
 Importance: Undecided
 Status: New

-- 
VNC console doesn't accept keyboard input during PXE boot
https://bugs.launchpad.net/bugs/579596
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in ubuntu.

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


[Bug 556326] Re: libvirtd will not run on virtual machine

2010-05-12 Thread Scott Moser
this is easily reproducible on lucid in ec2.

-- 
libvirtd will not run on virtual machine
https://bugs.launchpad.net/bugs/556326
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libvirt in ubuntu.

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


Re: [Bug 463684] Re: openldap sections in ubuntu server guide not updated for packages in karmic

2010-05-12 Thread Nathan Stratton Treadway
On Thu, Apr 29, 2010 at 15:03:46 -, Adam Sommer wrote:
 The OpenLDAP instructions have been updated for Ubuntu Lucid, and they work
 for Karmic.  

I noticed that the Lucid version of the Ubuntu Server Guide is now
available on the web site:

  https://help.ubuntu.com/10.04/serverguide/C/openldap-server.html

Nathan

-- 
openldap sections in ubuntu server guide not updated for packages in karmic
https://bugs.launchpad.net/bugs/463684
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openldap in ubuntu.

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


[Bug 529714] Re: rhythmbox crashed with SIGSEGV in _nss_wins_gethostbyname_r()

2010-05-12 Thread Arnaud Lechevallier
It affects me at home (direct access to internet) when i run rhythmbox
and only if i forget to disable the proxy settings i use at work.

x...@xx:~$ rhythmbox
** (rhythmbox:4514): DEBUG: Loading the real store page
** (rhythmbox:4514): DEBUG: navigation requested to 
https://one.ubuntu.com/music/store-no-token
Erreur de segmentation (core dumped)

wins is added at the end of the line host in /etc/nsswitch.conf

-- 
rhythmbox crashed with SIGSEGV in _nss_wins_gethostbyname_r()
https://bugs.launchpad.net/bugs/529714
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 578930] Re: Lucid qemu-kvm: ksmd default config is CPU hog

2010-05-12 Thread Dustin Kirkland
Hi there-

You can actually set it to whatever you want, and have it persist across
boots.  Just modify the values in the file /etc/default/qemu-kvm.

We're just using the default, upstream kernel value for
SLEEP_MILLISECONDS, which is 20.  It does seem a bit aggressive, but
it's the upstream default.  We should have a discussion with them to see
if it makes sense to change it.

However, I'm going to mark this won't-fix against the qemu-kvm package,
since we have an easy configuration file where you can tune this value
to your liking.

** Changed in: qemu-kvm (Ubuntu)
   Status: New = Won't Fix

-- 
Lucid qemu-kvm: ksmd default config is CPU hog
https://bugs.launchpad.net/bugs/578930
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in ubuntu.

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


[Bug 527381] Re: Purges all installed locales

2010-05-12 Thread Soren Hansen
** Changed in: vmbuilder
   Status: New = Fix Released

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

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


[Bug 579094] Re: 10.04 Upgrade, backend no longer communicating with mysql database

2010-05-12 Thread MarcRandolph
In doing some quick searching, I couldn't immedately find a complete 
resolution.  This was the closest thing I came across: 
http://.ubuntuforums.org/showthread.php?t=1469902
You might do some further searching on variations of your error message(s).

** Also affects: mysql-dfsg-5.1 (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: mysql-dfsg-5.1 (Ubuntu)
   Status: New = Confirmed

** Changed in: mythbuntu
   Status: Incomplete = Invalid

-- 
10.04 Upgrade, backend no longer communicating with mysql database
https://bugs.launchpad.net/bugs/579094
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 579701] [NEW] install_kernel method no such method after upgrade to lucid

2010-05-12 Thread William King
Public bug reported:

2010-05-12 15:47:41,121 DEBUG   : Setting up linux-firmware (1.26) ...
2010-05-12 15:47:41,126 DEBUG   : Setting up linux-image-server (2.6.31.21.34) 
...
2010-05-12 15:47:41,143 DEBUG   : Calling install_kernel method in context 
plugin VMBuilder.plugins.kvm.vm.
2010-05-12 15:47:41,143 DEBUG   : No such method
2010-05-12 15:47:41,144 INFO: Calling hook: unmount_partitions
2010-05-12 15:47:41,144 DEBUG   : (args=(), kwargs={})
2010-05-12 15:47:41,144 DEBUG   : Calling unmount_partitions method in 
VMBuilder.plugins.libvirt plugin.
2010-05-12 15:47:41,144 DEBUG   : No such method
2010-05-12 15:47:41,145 DEBUG   : Calling unmount_partitions method in 
VMBuilder.plugins.network plugin.
2010-05-12 15:47:41,145 DEBUG   : No such method
2010-05-12 15:47:41,145 DEBUG   : Calling unmount_partitions method in 
VMBuilder.plugins.ubuntu.distro plugin.
2010-05-12 15:47:41,145 DEBUG   : No such method
2010-05-12 15:47:41,145 DEBUG   : Calling unmount_partitions method in context 
plugin VMBuilder.plugins.kvm.vm.
2010-05-12 15:47:41,146 INFO: Unmounting target filesystem
2010-05-12 15:47:41,146 DEBUG   : Unmounting /tmp/tmpEDT5tL/
2010-05-12 15:47:41,146 DEBUG   : ['umount', '/tmp/tmpEDT5tL/']
2010-05-12 15:47:46,245 DEBUG   : ['kpartx', '-d', '/tmp/tmpcybKao']
2010-05-12 15:47:46,371 DEBUG   : loop deleted : /dev/loop0
2010-05-12 15:47:46,372 DEBUG   : ['kpartx', '-d', '/tmp/tmpcybKao']
2010-05-12 15:47:46,379 DEBUG   : Changing ownership of 
/mnt/kvm/virtservers/openbravo2 to root
Traceback (most recent call last):
  File /usr/bin/vmbuilder, line 24, in module
cli.main()
  File /usr/lib/python2.6/dist-packages/VMBuilder/contrib/cli.py, line 119, 
in main
self.fix_ownership(destdir)
  File /usr/lib/python2.6/dist-packages/VMBuilder/contrib/cli.py, line 136, 
in fix_ownership
os.chown(filename, uid, gid)
OSError: [Errno 1] Operation not permitted: '/mnt/kvm/virtservers/openbravo2'
error: failed to get domain 'openbravo2'
error: Domain not found: no domain with matching name 'openbravo2'


sudo vmbuilder kvm ubuntu --debug -v --suite karmic --config
/mnt/kvm/scripts/.vmbuilder.cfg --dest /mnt/kvm/virtservers/openbravo2
--hostname openbravo2

** Affects: vm-builder (Ubuntu)
 Importance: Undecided
 Status: New

-- 
install_kernel method no such method after upgrade to lucid
https://bugs.launchpad.net/bugs/579701
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vm-builder in ubuntu.

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


[Bug 371037] Re: Windows Fails To Maximise

2010-05-12 Thread seanK
The following screencast will show the bug
http://www.mediafire.com/download.php?enmnwx2ommy

-- 
Windows Fails To Maximise
https://bugs.launchpad.net/bugs/371037
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nmap in ubuntu.

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


Re: [Bug 292588] Re: VirtualBox can't operate in VMX root mode.

2010-05-12 Thread Gresley
I tried that when I first reported the bug. The files still loaded  
despite being blacklisted.

That was my original annoyance. I should have just been able to stop  
KVM ever loading, but couldn't

Sent from my iPhone

On 12 May 2010, at 01:20, Christophe Besson christophe.bes...@grenet.org 
  wrote:

 (not tested)
 If you want to use VirtualBox as your default VT solution and if you  
 don't want to uninstall kvm, try to not load the kvm modules at  
 startup by adding a new file in /etc/modprobe.d/kvm-blacklist,  
 containing these directives:
 blacklist kvm
 blacklist kvm_intel

 That should work after the next reboot. After that, in case you need  
 to
 run KVM just for one time, you need to load the kvm modules thanks to
 modprobe kvm  modprobe kvm_intel before lauching your KVM machine.

 What is the best behavior for the installation of the package in order
 to have VBox running out of the box? I don't know. For example, exim  
 is
 removed when you install postfix (Conflicts: mail-transport-agent),  
 but
 we can maybe imagine a thing like an update-alternative machanism (?)

 -- 
 VirtualBox can't operate in VMX root mode.
 https://bugs.launchpad.net/bugs/292588
 You received this bug notification because you are a direct subscriber
 of a duplicate bug.

 Status in “qemu-kvm” package in Ubuntu: New
 Status in “virtualbox-ose” package in Ubuntu: Triaged

 Bug description:
 Binary package hint: virtualbox-ose

 When starting virtualmachine, VirtualBox will complain now:

 Failed to start the virtual machine XYZ

 VirtualBox can't operate in VMX root mode. Please disable the KVM  
 kernel extension, recompile your kernel and reboot.
 VBox status code: -4011 (VERR_VMX_IN_VMX_ROOT_MODE).

 Result Code:
 NS_ERROR_FAILURE (0x80004005)
 Component:
 Console
 Interface:
 IConsole {e3c6d4a1-a935-47ca-b16d-f9e9c496e53e}

 This worked with 8.04 LTS ubuntu, so how can I install kernel that  
 will work with new virtualbox on 8.10?

 # lsb_release -rd
 Description:Ubuntu 8.10
 Release:8.10
 # apt-cache policy virtualbox-ose
 virtualbox-ose:
  Asennettu: 2.0.4-dfsg-0ubuntu1
  Ehdokas: 2.0.4-dfsg-0ubuntu1
  Versiotaulukko:
 *** 2.0.4-dfsg-0ubuntu1 0
500 http://fi.archive.ubuntu.com intrepid/universe Packages
100 /var/lib/dpkg/status

 To unsubscribe from this bug, go to:
 https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/292588/+subscribe

-- 
VirtualBox can't operate in VMX root mode.
https://bugs.launchpad.net/bugs/292588
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in ubuntu.

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


[Bug 288616] Re: Packages depending on JRE might not have a usable JRE when configured

2010-05-12 Thread Alex Valavanis
** Changed in: apt (Ubuntu Intrepid)
   Status: New = Invalid

-- 
Packages depending on JRE might not have a usable JRE when configured
https://bugs.launchpad.net/bugs/288616
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to tomcat6 in ubuntu.

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


[Bug 579723] [NEW] kvm memory ballooning is unusable in Lucid

2010-05-12 Thread lhotari
Public bug reported:

kvm/qemu doesn't enable ballooning by default anymore (the man page still 
claims that ballooning is enabled by default) .
There is no easy way to enable it with libvirt.

libvirt should add -balloon virtio to the qemu command line by default
or provide a way to modify the setting.

virsh dominfo domain should show the original qemu error message The
balloon device has not been activated by the guest, but it hides it. I
found out the reason for the ballooning problem by starting kvm from the
command line and switching to the monitor console and by entering info
balloon

testing kvm/qemu behaviour:
kvm -cdrom ubuntu-10.04-server-amd64.iso
(CTRL-ALT 2 , enter: info balloon- shows error message: 
The balloon device has not been activated by the guest
)

info balloon shows successfull balloon info after adding -balloon virtio to 
the command line.
kvm -cdrom ubuntu-10.04-server-amd64.iso -balloon virtio

Workaround:
- add a file called /usr/local/bin/kvm-balloon :
#!/bin/sh
/usr/bin/kvm -balloon virtio $@
- modify /etc/libvirt/qemu/domain.xml (virsh edit domain) , replace 
/usr/bin/kvm with /usr/local/bin/kvm-balloon
- poweroff and restart the VM (reboot isn't enough)

In the VM, the virtio_balloon module has to be loaded:
modprobe virtio_balloon
(to persistent after reboot: echo virtio_balloon  /etc/modules)

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


** Tags: balloon freemem kvm mem setmem virsh virtio

-- 
kvm memory ballooning is unusable in Lucid
https://bugs.launchpad.net/bugs/579723
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libvirt in ubuntu.

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


[Bug 573853] Re: Cannot control squid Unknown instance

2010-05-12 Thread Ismael Ignacio Saavedra Middleton
error al iniciar o reiniciar squid en ubuntu migrado desde 9.04 a 10.4 lucid al 
reiniciar/iniciar
 /etc/init.d/squid stard

da el siguiente error

Rather than invoking init scripts through /etc/init.d, use the service(8)
utility, e.g. service squid stard

The script you are attempting to invoke has been converted to an Upstart
job, but stard is not supported for Upstart jobs.


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

** Changed in: squid (Ubuntu)
 Assignee: (unassigned) = Ismael Ignacio Saavedra Middleton (isma-14-94)

-- 
Cannot control squid Unknown instance
https://bugs.launchpad.net/bugs/573853
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to squid in ubuntu.

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


[Bug 579737] [NEW] OpenVPN client connect hangs on PUSH_REQUEST

2010-05-12 Thread Waldo2k2
Public bug reported:

Binary package hint: openvpn

A client connecting to an OpenVPN server running Lucid hangs on
PUSH_REQUEST. Same server config works on Karmic.

My server config does not contain any 'push' directives. If I add the
tcp-nodelay macro to my server config, the 'push socket-flags
TCP_NODELAY' that it sends the client prevents it from hanging and the
connection completes. The tcp-nodelay option fails on the Windows
clients I tested it with, but merely passing the PUSH fixes the
connection hang.

I haven't tested any other push directives to see if they have the same
effect.

Current package version: 2.1.0-1ubuntu1 (lucid)
Working package version: 2.1~rc19-1ubuntu2 (karmic)

OpenVPN server config used:
-
mode server
port 1194
proto udp
dev tap0
up /etc/openvpn/up.sh br0
down /etc/openvpn/down.sh br0
replay-persist replay-persist-file 
tls-server
ca ca.crt
cert server.crt
key server.key
dh dh2048.pem
ping 15
ping-restart 300 # 5 minutes, good for dynamic dns
resolv-retry 300 # 5 minutes, good for dynamic dns
persist-tun
persist-key
comp-lzo
user nobody
group nogroup
status openvpn-status.log
verb 3
#tcp-nodelay #uncomment to fix in lucid

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

-- 
OpenVPN client connect hangs on PUSH_REQUEST
https://bugs.launchpad.net/bugs/579737
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvpn in ubuntu.

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


[Bug 368962] Re: Can't reboot kvm virtual machines using virsh

2010-05-12 Thread Andrew M
I understand this isn't severe but in the interests of trying to solve a
problem would it be possible to define an element in the XML definition
which is equivalent to saying 'This domain supports ACPI'. If this flag
is set ( it can default to off) then those who know their domain
supports acpi use reboot. Would this be an acceptable change ? If so i
could try and implement it .I understand libvirt doesn't / can't have a
dtd so the barrier for adding elements is low so long as people are
comfortable that this would be a positive change.

Andrew

-- 
Can't reboot kvm virtual machines using virsh
https://bugs.launchpad.net/bugs/368962
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libvirt in ubuntu.

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


[Bug 579737] Re: OpenVPN client connect hangs on PUSH_REQUEST

2010-05-12 Thread Waldo2k2
OpenVPN Client config used:

client
dev tap
remote somedomain.org
nobind
replay-persist replay-persist-file
ca ca.crt
cert client.crt
key client.key
ns-cert-type server
ping 15
ping-restart 300
resolv-retry 300
persist-tun
persist-key
comp-lzo
verb 3

-- 
OpenVPN client connect hangs on PUSH_REQUEST
https://bugs.launchpad.net/bugs/579737
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvpn in ubuntu.

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


[Bug 150840] Re: Motorola Si3054 software modem not working

2010-05-12 Thread Ahmed El-Mahmoudy
Please provide the output of the following commands:

dpkg -l sl-modem*
uname -a
cat /proc/version_signature
lsmod

Also attach the following files:
/etc/default/sl-modem-daemon
/proc/asound/*

-- 
Motorola Si3054 software modem not working
https://bugs.launchpad.net/bugs/150840
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 578922] Re: Bypass AppArmor ruleset of MySQL allows for remote code execution.

2010-05-12 Thread Jamie Strandboge
** Visibility changed to: Public

** Summary changed:

- Bypass AppArmor ruleset of MySQL allows for remote code execution.
+ user-tmp abstraction can be used in combined attack

-- 
user-tmp abstraction can be used in combined attack
https://bugs.launchpad.net/bugs/578922
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 546406] Re: update-initramfs Can't open /scripts/functions

2010-05-12 Thread ruben0909
Imake

sudo find / -name *initramfs-tools* -type d
and return

/etc/initramfs-tools
/usr/lib/initramfs-tools
/usr/share/bug/initramfs-tools
/usr/share/doc/initramfs-tools-bin
/usr/share/doc/initramfs-tools
/usr/share/initramfs-tools
/var/lib/initramfs-tools

there aren't scripts folder, if i create in /
/scripts/functions
don't say nothing but don't fix because i can't access to bootcd now
terminal say me

ruben0...@marciano:~$ bootcd
No command 'bootcd' found, did you mean:
 Command 'bootpd' from package 'bootp' (universe)
bootcd: command not found
ruben0...@marciano:~$ 

and is installed.once, i can execute
i don't know if is important this nformation.
Sorry i`m spanish

-- 
update-initramfs Can't open /scripts/functions
https://bugs.launchpad.net/bugs/546406
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 535660] Re: Regression: file operations dialog cannot be hidden

2010-05-12 Thread nowhere
Works for me.

On Tue, May 11, 2010 at 6:37 PM, Gray gray_gr...@inbox.ru wrote:

 2. disable the file operations dialog's close button
 close button was in previous releases too (i.e. karmic) and, in my opinion,
 it's affected as expected: it is closing_the_window - not breaking the
 operation. For breaking the operation there is another button - cancel

 --
 Regression: file operations dialog cannot be hidden
 https://bugs.launchpad.net/bugs/535660
 You received this bug notification because you are a direct subscriber
 of the bug.


-- 
Regression: file operations dialog cannot be hidden
https://bugs.launchpad.net/bugs/535660
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 259037] Re: [needs-packaging] Areca backup

2010-05-12 Thread klausner
Bump! Anyone have this packaged yet?

-- 
[needs-packaging] Areca backup
https://bugs.launchpad.net/bugs/259037
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 197290] Re: 2 gb max inbox

2010-05-12 Thread Fabián Rodríguez
I've marked Bug #118820 as a duplicate of this one. I also checked
upstream, still an issue there. I havea  confirmation of this in Ubuntu
9.10. Can someone confirm this still happens in 10.04 LTS ? We may be
able to get a fix i the next point release or an SRU if that's the case.

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

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


[Bug 118820] Re: Evolution cannot handle mbox files larger than 2Gb

2010-05-12 Thread Fabián Rodríguez
*** This bug is a duplicate of bug 197290 ***
https://bugs.launchpad.net/bugs/197290

** This bug has been marked a duplicate of bug 197290
   2 gb max inbox

-- 
Evolution cannot handle mbox files larger than 2Gb
https://bugs.launchpad.net/bugs/118820
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 573853] Re: Cannot control squid Unknown instance

2010-05-12 Thread Vigneswaran R
I did a fresh installation of Lucid. I was also not able to control squid 
initctl, immediately after reload.
Then, I did a squid -k shutdown, and after that I am able to control through 
initctl.

-- 
Cannot control squid Unknown instance
https://bugs.launchpad.net/bugs/573853
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 579052] Re: [needs-packaging] Lugaru HD

2010-05-12 Thread Gabe Gorelick
** Tags added: needs-packaging

-- 
[needs-packaging] Lugaru HD
https://bugs.launchpad.net/bugs/579052
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 579021] Re: kword missing PDF import filter

2010-05-12 Thread Duncan Lithgow
** Description changed:

  Binary package hint: kword
  
  kword 2.1.2 (I only installed kword and its dependencies, not koffice)
  ubuntu 10.04
  
  Various places on the net say that Kword can import PDF files, for
  example here:
  http://www.linuxtopia.org/online_books/office_guides/koffice_kword_guide
  /filters-included.html
  
  Kword 2.1.2 in Ubuntu 10.04 is missing the PDF import filter. Kword is
- the only application which can import PDF files and export them as ODT
- files, so this is an important function.
+ the only linux native application which can import PDF files and export
+ them as ODT files, so this is an important function currently missing
+ from Ubuntu.

-- 
kword missing PDF import filter
https://bugs.launchpad.net/bugs/579021
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 578131] Re: Update Kubuntu Karmic - Lucid broke system if openoffice.org-writer2latex or openoffice.org-presentation-minimizer where installed

2010-05-12 Thread Gabe Gorelick
** Tags added: karmic2lucid

-- 
Update Kubuntu Karmic - Lucid broke system if openoffice.org-writer2latex or 
openoffice.org-presentation-minimizer where installed
https://bugs.launchpad.net/bugs/578131
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 578768] Re: Main menu applet scrolling issue

2010-05-12 Thread Gabe Gorelick
** Package changed: ubuntu = light-themes (Ubuntu)

** Summary changed:

- Main menu applet scrolling issue
+ Main menu applet scrolling issue with Ambiance theme

-- 
Main menu applet scrolling issue with Ambiance theme
https://bugs.launchpad.net/bugs/578768
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 569646] Re: [Lucid] Updated dynamic key mappings for Hauppauge mceusb remote

2010-05-12 Thread Aaron Whitehouse
Here is my complete ~/mythbuntu/.lirc/mythtv file for others to use
until the diff is applied.

** Attachment added: mythtv
   http://launchpadlibrarian.net/48314459/mythtv

-- 
[Lucid] Updated dynamic key mappings for Hauppauge mceusb remote
https://bugs.launchpad.net/bugs/569646
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 551201] Re: New Evolution Stable 2.30 for lucid

2010-05-12 Thread Herbert V. Riedel
here's a ppa for the mean time:
https://launchpad.net/~jacob/+archive/evo230

-- 
New Evolution Stable 2.30 for lucid
https://bugs.launchpad.net/bugs/551201
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 311877] Re: Bluetooth not automatically found on sony VGN-FW21J

2010-05-12 Thread Jeremy Foshee
This bug report was marked as Incomplete and has not had any updated
comments for quite some time.  As a result this bug is being closed.
Please reopen if this is still an issue in the current Ubuntu release
http://www.ubuntu.com/getubuntu/download . Also, please be sure to
provide any requested information that may have been missing.  To reopen
the bug, click on the current status under the Status column and change
the status back to New.  Thanks.

[This is an automated message.  Apologies if it has reached you
inappropriately; please just reply to this message indicating so.]

-- 
Bluetooth not automatically found on sony VGN-FW21J
https://bugs.launchpad.net/bugs/311877
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 91230] Re: keyboard+mouse unusable, low speed USB device reset continiously

2010-05-12 Thread Jeremy Foshee
This bug report was marked as Triaged a while ago but has not had any
updated comments for quite some time.  Please let us know if this issue
remains in the current Ubuntu release,
http://www.ubuntu.com/getubuntu/download .  If the issue remains, click
on the current status under the Status column and change the status back
to New.  Thanks.

[This is an automated message.  Apologies if it has reached you
inappropriately; please just reply to this message indicating so.]

-- 
keyboard+mouse unusable, low speed USB device reset continiously
https://bugs.launchpad.net/bugs/91230
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 571308] Re: Thunderbird crashes with segmentation fault

2010-05-12 Thread Robert
I installed 10.04 (no upgrade). Everything worked fine. Thunderbird as
well, but just for two days. Today I get the segment fault message as
well. My system has no NFS, everything is installed locally on EXT4.

-- 
Thunderbird crashes with segmentation fault
https://bugs.launchpad.net/bugs/571308
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 193325] Re: unknown media type during update

2010-05-12 Thread Uqbar
This ridiculous bug is still here on Lucid, after 2+ years and 4
releases!

Elaborazione dei trigger per shared-mime-info...
Unknown media type in type 'all/all'

Unknown media type in type 'all/allfiles'

Unknown media type in type 'uri/mms'

Unknown media type in type 'uri/mmst'

Unknown media type in type 'uri/mmsu'

Unknown media type in type 'uri/pnm'

Unknown media type in type 'uri/rtspt'

Unknown media type in type 'uri/rtspu'

Unknown media type in type 'fonts/package'

Unknown media type in type 'interface/x-winamp-skin'

-- 
unknown media type during update
https://bugs.launchpad.net/bugs/193325
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 579137] [NEW] java crash - glibc detected double free or corruption

2010-05-12 Thread Torsten Krah
Public bug reported:

Stopping my servlet container the attached stacktrace was given. Seems
to be APR related as i am using the native APR connectors.

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: sun-java6-bin 6.20dlj-1ubuntu3
ProcVersionSignature: Ubuntu 2.6.32-22.33-generic 2.6.32.11+drm33.2
Uname: Linux 2.6.32-22-generic x86_64
Architecture: amd64
Date: Wed May 12 08:06:01 2010
ProcEnviron:
 LANGUAGE=de_DE.UTF-8:de
 PATH=(custom, user)
 LANG=de_DE.utf8
 SHELL=/bin/bash
SourcePackage: sun-java6

** Affects: sun-java6 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug lucid

-- 
java crash - glibc detected double free or corruption
https://bugs.launchpad.net/bugs/579137
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 579137] Re: java crash - glibc detected double free or corruption

2010-05-12 Thread Torsten Krah

** Attachment added: stacktrace
   http://launchpadlibrarian.net/48314717/crash.txt

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

-- 
java crash - glibc detected double free or corruption
https://bugs.launchpad.net/bugs/579137
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 556204] Re: myth-backend started before kernel driver it needs

2010-05-12 Thread Steven Ellis
I'm running 10.04 with the recent 0.23 auto-builds and I have a dual
tuner HVR-2200 card.

This combination has the same on boot race condition where the dual
DVB-T tuners are still initialising after the backend has started and
the devices are then missing from the available tuners.

Modifying /etc/init/mythtv-backend.conf to contain and started udev-
finish as suggested above has resolved the problem.

-- 
myth-backend started before kernel driver it needs
https://bugs.launchpad.net/bugs/556204
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 554972] Re: Program Guide DST offset is GMT and not Local

2010-05-12 Thread Steven Ellis
Patch has been added under http://svn.mythtv.org/trac/ticket/8217

-- 
Program Guide DST offset is GMT and not Local
https://bugs.launchpad.net/bugs/554972
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 579139] [NEW] package info 4.13a.dfsg .1-5ubuntu1 failed to install/upgrade: 依 赖关系问题 - 仍未被配置

2010-05-12 Thread songzongquan
Public bug reported:

Binary package hint: texinfo

/etc/environment: line 2: LANG=zh_CN.UTF-8:找不到命令
dpkg:处理 install-info (--configure)时出错:
 子进程 已安装的 post-installation 脚本 返回了错误号 127
dpkg:依赖关系问题使得 info 的配置工作不能继续:
 info 依赖于 install-info;然而:
  软件包 install-info 还没有被配置。
dpkg:处理 info (--configure)时出错:
 依赖关系问题 - 仍未被配置
dpkg:依赖关系问题使得 ubuntu-standard 的配置工作不能继续:
 ubuntu-standard 依赖于 info;然而:
  软件包 info 还没有被配置。
dpkg:处理 ubuntu-standard (--configure)时出错:
 依赖关系问题 - 仍未被配置
dpkg:依赖关系问题使得 emacs23 的配置工作不能继续:
 emacs23 依赖于 install-info;然而:
  软件包 install-info 还没有被配置。
dpkg:处理 emacs23 (--configure)时出错:
 依赖关系问题 - 仍未被配置
dpkg:依赖关系问题使得 emacs 的配置工作不能继续:
 emac没有写入 apport 报告,因为错误信息指示它是从上一个失败导致的。
   没有写入 apport 
报告,因为错误信息指示它是从上一个失败导致的。
 没有写入 apport 报告,因为已经达到最大报告数
  没有写入 apport 报告,因为已经达到最大报告数
  没有写入 apport 
报告,因为已经达到最大报告数
  s 依赖于 emacs23 | emacs23-lucid | emacs23-nox;然而:
  软件包 emacs23 还没有被配置。
  未曾安装软件包“emacs23-lucid”。
  未曾安装软件包“emacs23-nox”。
dpkg:处理 emacs (--configure)时出错:
 依赖关系问题 - 仍未被配置
dpkg:依赖关系问题使得 emacs22-gtk 的配置工作不能继续:
 emacs22-gtk 依赖于 install-info;然而:
  软件包 install-info 还没有被配置。
dpkg:处理 emacs22-gtk (--configure)时出错:
 依赖关系问题 - 仍未被配置
在处理时有错误发生:
 install-info
 info
 ubuntu-standard
 emacs23
 emacs
 emacs22-gtk

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: info 4.13a.dfsg.1-5ubuntu1
ProcVersionSignature: Ubuntu 2.6.32-22.33-generic 2.6.32.11+drm33.2
Uname: Linux 2.6.32-22-generic i686
NonfreeKernelModules: nvidia
Architecture: i386
Date: Wed May 12 14:15:03 2010
ErrorMessage: 依赖关系问题 - 仍未被配置
SourcePackage: texinfo
Title: package info 4.13a.dfsg.1-5ubuntu1 failed to install/upgrade: 依赖关系问题 - 
仍未被配置

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


** Tags: apport-package i386 lucid

-- 
package info 4.13a.dfsg.1-5ubuntu1 failed to install/upgrade: 依赖关系问题 - 仍未被配置
https://bugs.launchpad.net/bugs/579139
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 579139] Re: package info 4.13a.dfsg.1-5 ubuntu1 failed to install/upgrade: 依赖 关系问题 - 仍未被配置

2010-05-12 Thread songzongquan

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

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

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

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

-- 
package info 4.13a.dfsg.1-5ubuntu1 failed to install/upgrade: 依赖关系问题 - 仍未被配置
https://bugs.launchpad.net/bugs/579139
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 578168] Re: [regression-release] Cannot switch to virtual terminals with Ctrl+Alt+F1

2010-05-12 Thread Mark XIII
Lenovo S12 
latest openChrome revision - 853

Cannot switch to virtual terminals with Ctrl+Alt+F1 since I installed
Ubuntu 10.04



** Attachment added: Xorg.0.log
   http://launchpadlibrarian.net/48314752/Xorg.0.log

-- 
[regression-release] Cannot switch to virtual terminals with Ctrl+Alt+F1
https://bugs.launchpad.net/bugs/578168
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 578168] Re: [regression-release] Cannot switch to virtual terminals with Ctrl+Alt+F1

2010-05-12 Thread Mark XIII

** Attachment added: Xorg.0.log
   http://launchpadlibrarian.net/48314878/Xorg.0.log

** Attachment removed: RelatedPackageVersions.txt
   http://launchpadlibrarian.net/48198713/RelatedPackageVersions.txt

** Attachment removed: Xorg.0.log
   http://launchpadlibrarian.net/48314878/Xorg.0.log

-- 
[regression-release] Cannot switch to virtual terminals with Ctrl+Alt+F1
https://bugs.launchpad.net/bugs/578168
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 578168] Re: [regression-release] Cannot switch to virtual terminals with Ctrl+Alt+F1

2010-05-12 Thread Mark XIII

** Attachment added: xorg.conf
   http://launchpadlibrarian.net/48314937/xorg.conf

-- 
[regression-release] Cannot switch to virtual terminals with Ctrl+Alt+F1
https://bugs.launchpad.net/bugs/578168
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 538964] Re: Window manager not started after login

2010-05-12 Thread Paul
Same problem for me. I need to start the window manager with

metacity --replace 

after login. The file ~/.xsession-errors seems to have some errors that
look like they may be connected to the problem, so I attached it. (I
suppose I turned on the mild version of visual effects called Normal
in my german ubuntu).


** Attachment added: .xsession-errors
   http://launchpadlibrarian.net/48315025/.xsession-errors

-- 
Window manager not started after login
https://bugs.launchpad.net/bugs/538964
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 518626] Re: This Key Is Not Writable

2010-05-12 Thread mellofello
Not sure if this fits here, but it's kid of a pain to log out/in
especially when you've gone to the trouble of setting up compiz, kiba,
numerus other things that will probably have to be redone.  It would
have been nice to have known this ahead of time.

I noticed that if I:
 sudo gconf-editor
then the showdesktop option is configurable.

As above, I read that the fix is committed, what does this mean and how can I 
access it?
Any help is appreciated.

-- 
This Key Is Not Writable
https://bugs.launchpad.net/bugs/518626
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 578948] Re: rhythmbox volume level keep back to max level after changing tracks

2010-05-12 Thread squiddy
Hi, i set the volume on rhythmbox.

-- 
rhythmbox volume level keep back to max level after changing tracks
https://bugs.launchpad.net/bugs/578948
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 574388] Re: cgroup in fstab prevents boot after upgrade to Lucid

2010-05-12 Thread Toby Corkindale
I didn't want to trash my work desktop, so tried creating a virtual machine 
running a fresh Lucid Desktop install in order to try and recreate the bug.
However that fresh install doesn't exhibit the bug.

My real machine has more services that start up (mysql, postgresql, apache, 
mt-daapd, amongst others) so it may be a side effect of having those as well..
I will try and get the virtual machine to exhibit the problem by installing 
more services; if that fails, I'll do it on the desktop when I don't have any 
critical work on.

-- 
cgroup in fstab prevents boot after upgrade to Lucid
https://bugs.launchpad.net/bugs/574388
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 569932] Re: Missing Input Devices in udev from Alsa

2010-05-12 Thread David Henningsson
To me it looks like martin and Martin Owens are having different
problems, at least their logs don't look the same.

-- 
Missing Input Devices in udev from Alsa
https://bugs.launchpad.net/bugs/569932
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 561802] Re: [lucid] [i915] blank screen on Latitude E6410

2010-05-12 Thread botbanky
I have the Dell E6510 with Nvidia 3100M, and when using the 10.04 64-bit
install CD the display hangs before any install screen appears.  It
simply sits blank.

Does anyone know of an official solution coming from ubuntu?  Will they
be updating the 10.04 distro with this issue addressed?

-- 
[lucid] [i915] blank screen on Latitude E6410
https://bugs.launchpad.net/bugs/561802
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 536942] Re: --firstboot option broken in 0.12.2-0ubuntu3

2010-05-12 Thread Florian Kruse
Sorry for being so impatient, but will this fix be available as a
software package in Lucid? If so, when?

-- 
--firstboot option broken in 0.12.2-0ubuntu3
https://bugs.launchpad.net/bugs/536942
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 496093] Re: [lucid] rt2860 frequently fails to connect to mixed mode WPA/WPA2 secured wireless networks

2010-05-12 Thread Timo Ströhlein
Hi,

thank you for instructions.

Driver update has solved the problem for me.

One minor correction to instructions:
- change sudo apt-get install build-essential to *sudo aptitude install
linux-headers-`uname -r` build-essential*

Br,
Timo

2010/5/11 Stephen Tanner step...@stephentanner.com

 I found it really easy just to install the updated driver from ralink.
 Here are my steps thanks to post #25:

 First download the new driver from ralink:

 http://bit.ly/bpzQRQ

 While you still have inter-tubes access, make sure you install build-
 essential so you can compile the driver

 sudo apt-get install build-essential

 Next untar it somewhere in your home dir.

 edit this file in the folder you just untared ./os/linux/config.mk and
 make it look like this:
 (I found this step necessary. I tested it without these changes and it
 still fails to connect)

 HAS_WPA_SUPPLICANT=y
 ...
 ...
 HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y


 turn off your wifi card

 sudo ifconfig ra0, eth1, wlan0 down

 unload the kernel module

 sudo rmmod rt2860sta

 rename the old module in:
 (this is done *just in case* AFAICT)

  /lib/modules/2.6.*/kernel/drivers/staging/rt2860/ from filename.ko to
 filename.ko_old

 cd into the folder you untared if your not already there

 make
 sudo make install

 sudo depmod -a

 now either reboot or load it manually with

 sudo modeprobe rt2860sta
 sudo ifconfig ra0 up
 (my wireless card started out as wlan0 and after the driver update showed
 up as ra0)

 If some one knows a way I can turn this into a dkms package and put it
 in a ppa, I will gladly do that later this week (after finals)

 --
 [lucid] rt2860 frequently fails to connect to mixed mode WPA/WPA2 secured
 wireless networks
 https://bugs.launchpad.net/bugs/496093
 You received this bug notification because you are a direct subscriber
 of the bug.

 Status in The Linux Kernel: Invalid
 Status in Ubuntu Release Notes: New
 Status in “linux” package in Ubuntu: Triaged
 Status in “linux” source package in Lucid: Triaged

 Bug description:
 The rt2860sta module, included with Ubuntu Lucid Lynx (10.04) cannot
 connect to mixed WPA/WPA2 networks.
 This driver is used in most EeePCs.
 This issue is fixed in the 2.6.33 kernel, unfortunately this kernel is not
 yet available in Lucid.

 Symptoms are: connection works once but disconnects rapidly and then gets
 stuck in a connect/ask password cycle, or cannot connect at all.

 There are two known fixes at the moment:
 [1]: Ricardo Salveti maintains a 2.6.32 kernel with the fix backported (See
 comment #80)
 [2]: Installing the official drivers from RaLink also solves the issue for
 some. (See comment #107).

 To check if your wireless chipset is indeed the RaLink chipset that is
 affected by this driver, execute the lspci -vnn | grep RaLink command.
 It should display something close to the following:

 $ lspci -vnn | grep RaLink
 01:00.0 Network controller [0280]: RaLink RT2860 [1814:0781]
  Subsystem: RaLink Device [1814:2790]

 To unsubscribe from this bug, go to:
 https://bugs.launchpad.net/linux/+bug/496093/+subscribe


-- 
[lucid] rt2860 frequently fails to connect to mixed mode WPA/WPA2 secured 
wireless networks
https://bugs.launchpad.net/bugs/496093
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 374090] Re: [VX800] Samsung NC20 installation problem(test pattern on screen)

2010-05-12 Thread Mark XIII
Lenovo S12
latest openChrome revision - 853
Ubuntu 10.04 Lts

Cannot switch to virtual terminals with Ctrl+Alt+F1 (test pattern on
screen)

** Attachment added: Xorg.0.log
   http://launchpadlibrarian.net/48315293/Xorg.0.log

-- 
[VX800] Samsung NC20 installation problem(test pattern on screen)
https://bugs.launchpad.net/bugs/374090
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 374090] Re: [VX800] Samsung NC20 installation problem(test pattern on screen)

2010-05-12 Thread Mark XIII

** Attachment added: xorg.conf
   http://launchpadlibrarian.net/48315316/xorg.conf

-- 
[VX800] Samsung NC20 installation problem(test pattern on screen)
https://bugs.launchpad.net/bugs/374090
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 578922] Re: user-tmp abstraction can be used in combined attack

2010-05-12 Thread Jamie Strandboge
Thank you for using Ubuntu and reporting a bug.

The initial title for this bug is misleading: Bypass AppArmor ruleset
of MySQL allows for remote code execution. First, the MySQL profile
does not allow MySQL to execute code in /tmp or other places and none of
the profile's ruleset was bypassed. As you said, it does allow writing
files to /tmp (see below for possible improvements). Second, Ubuntu does
not ship a profile for apache, php or phpnuke. While there is an example
profile for phpsysinfo (that is in complain mode), it does not use the
user-tmp abstraction. Third, the attack relies upon php being able to
include a file from /tmp. This should be considered a broken php
configuration.

That said, this bug does make a good point: administrators creating
AppArmor profiles and configuring their systems need to be mindful of
interactions between applications. As demonstrated, AppArmor can both be
configured to prevent attacks in vulnerable applications as well as
misconfigured to allow said attacks.

As described, there are several things which could help prevent this attack 
from succeeding, remembering that mysql runs as the 'mysql' user and apache 
runs as the 'www-data' user in Ubuntu:
1. include_path could be used to disallow including files from /tmp. Because of 
the wide range of applications that user's can install, Ubuntu cannot ship with 
a hardened include_path, but it should be considered standard/best practice to 
adjust this for precisely the bug you mentioned. Also, DAC should have 
prevented writing to /var/www in the first place (though by your description, 
AppArmor caught it first).
2. as mentioned, MySQL could be configured to use a different tmp directory 
with mode 700, then normal DAC would have prevented this attack. This can be 
done by adjusting the 'tmpdir' variable in mysql.cnf. This should be considered 
for inclusion in Ubuntu.
3. a umask of 077 could be used for MySQL in which case normal DAC would have 
prevented this. This should be considered for inclusion in Ubuntu
4. the php application could have been protected with AppArmor, disallowing 
reads from /tmp

I do consider it a bug that the LAMP stack is allowed to interact in
this manner. MySQL does need a temporary directory to do its work, and
the problem is not in AppArmor (we can't deny access to MySQL's scratch
area without breaking it) but in the default configuration for MySQL in
Ubuntu. Adjusting MySQL's umask to 077 is probably the simplest and
safest change that could be made, and would have prevented this attack.

I am going to open a task against mysql for 2 and 3 above. I do not
believe this is a bug in AppArmor because, as mentioned, it is simply
allowing the necessary access to MySQL's scratch area and Ubuntu does
not ship a profile for this vulnerable php application, apache or php
(if an administrator writes one, then it is the administrator's
responsibility to understand the interactions between the software in
use on his/her system).

That said, I am going to leave the apparmor task open for now, because
one improvement could be considered in the user-tmp abstraction: we
could use an owner match. If both MySQL and the php application were
confined by AppArmor and both used the user-tmp abstraction with this
owner match, then AppArmor could have prevented against the
(mis)configuration of mysql and the vulnerable php application. This
improvement needs to be carefully considered, because it might break
other applications, but it would be useful in helping prevent against
combined attacks when all the software is confined by AppArmor.

** Summary changed:

- user-tmp abstraction can be used in combined attack
+ mysql configuration does not prevent against combined attacks against LAMP 
stack

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

** Also affects: mysql-dfsg-5.1 (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: mysql-dfsg-5.1 (Ubuntu)
   Status: New = Triaged

-- 
mysql configuration does not prevent against combined attacks against LAMP stack
https://bugs.launchpad.net/bugs/578922
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 544525] Re: [RV380] dual monitor not working - M24 1P [Radeon Mobility X600]

2010-05-12 Thread Olivier Goutet
In fact no, problem still there. It worked only one time. 
Now I'm back in the situation described in the #6 comment

-- 
[RV380] dual monitor not working - M24 1P [Radeon Mobility X600]
https://bugs.launchpad.net/bugs/544525
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 174192] Re: Status bar shows only space left

2010-05-12 Thread Puzzlet Chung
** Bug watch added: GNOME Bug Tracker #504771
   https://bugzilla.gnome.org/show_bug.cgi?id=504771

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

-- 
Status bar shows only space left
https://bugs.launchpad.net/bugs/174192
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 537241] Re: My computer updates are very slow since latest dpkg update

2010-05-12 Thread Michael Kofler
I guess this bug also causes the massive slow-down during the Ubuntu
installation (compared to earlier Ubuntu versions).

I had already several reports about the standard installation hanging at
95 % (or whatever other percentage). At this point the dpkg database is
built/updated/whatever. The installation does not really hang, but
depending on how slow your disk is, this step can take up to 15 minutes
(perhaps even longer on really old computers).

This also affects the alternate installation, but in a somewhat lesser
degree (according to my own experiences).

When Ubuntu 10.04 has nearly achieved a boot time of 10 seconds (it's
more like 20 seconds on my computers, but it really boots much faster
than before), installation time has almost quadrupled :-( One step
forwards here, one step backwards there

-- 
My computer updates are very slow since latest dpkg update
https://bugs.launchpad.net/bugs/537241
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 391667] Re: Show folder size in status bar when selected

2010-05-12 Thread Puzzlet Chung
It seems that #174192 (and related upstream bug) is related to this.

-- 
Show folder size in status bar when selected
https://bugs.launchpad.net/bugs/391667
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 356152] Re: update-manager doesn't show updates, even after 1 week

2010-05-12 Thread CyrusCT
dORSY,

I don't remember posting a work-around or a fix.  I recall replying to 
Adam Seitz's post because reading it gave me the impression that he 
might benefit having access to additional configuration options that he 
might not have known about; I then listed two options that I though he 
might find interesting to play around with.  I don't remember claiming 
that a specific combination of settings fixed anything.

On my computers I tend to keep auto_launch unchecked and 
regular_auto_launch_interval set to 0, and I have not been experiencing 
any problems with receiving notifications with those settings in Ubuntu 
10.04 Lucid Lynx, but I'm not using the intended UI methodology for 
receiving notifications, so my lack of problems may not be very meaningful.

I would describe this a changing to a UI methodology when the problem 
doesn't exist, not as a fix or a work-around for the problem, since the 
design team's desired UI methodology is not preserved in my method.  A 
fix or work-around would achieve the desired behavior, instead of 
changing to a more functional but different behavior.

I agree that update-notifier /should/ default to checking regularly 
instead of weekly and would gladly vote that opinion at any poll that 
will be reviewed by the design team.  The concept of infrequent 
notification of regularly checked updates confuses me, but I don't 
experience it with my current settings.


On 05/11/2010 12:12 AM, dORSY wrote:
 Hello!

   hitalt  +f2  then type gconf-editor...
  
 This is a _workaround_. It won't fix the initial problem.
 We do not except this when we set the updates in our update-manager. It 
 _is_confusing_. It will search for updates every day, but we _do_not_ get the 
 notification of them. Then why to search for them? I think this _should_ be 
 the _default_ behaviour of update-notifier. I really don't understand this 
 one-week-delay thing at all.
 Thanks: *dORSY*



-- 
update-manager doesn't show updates, even after 1 week
https://bugs.launchpad.net/bugs/356152
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 221690] Re: Full ACPI support

2010-05-12 Thread madbiologist
ACPI 4.0 introduces ACPI support for USB 3.0.

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

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


[Bug 578960] Re: Segmentation fault on playlist reordering

2010-05-12 Thread Rémi Denis-Courmont
This is already fixed in Ubuntu VLC 1.0.5-1 and later releases.

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

-- 
Segmentation fault on playlist reordering
https://bugs.launchpad.net/bugs/578960
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 575176] Re: Suspend hibernate fail after upgrading to the lucid release

2010-05-12 Thread Kaj Wiik
Hi!

2010/5/12 tec t...@turboprinz.de:

 and after installing the last one there was a note that:

 package blcr-dkms 0.8.2-10 failed to install/upgrade: blcr kernel module
 failed to build

 and was asked to report this bug. i dont know if this package is
 important for the issue with suspend/hibernate i have.
It's a kernel module for Berkeley lab checkpointing system. I guess
the kernel is just so recent that they haven't done a version  for it.
I do not have that package installed and if you do not actively use it
for debugging, you can just remove it.

 are there any other possibilities to solve my problem?
Maybe others know, sorry I do not. I  think if you dpkg -r blcr-dkms
(and start Ubuntu using the rc6 kernel) suspending will work.

Cheers,
Kaj

-- 
Suspend  hibernate fail after upgrading to the lucid release
https://bugs.launchpad.net/bugs/575176
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 574302] Re: Thunderbird segfault after random periods of time in Lucid 10.04

2010-05-12 Thread Joe Richards
Anyone have any ideas? This is pretty annoying :)

-- 
Thunderbird segfault after random periods of time in Lucid 10.04
https://bugs.launchpad.net/bugs/574302
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 115381] Re: [apport] BloGTK.py crashed with ImportError in ?()

2010-05-12 Thread Jeremy L. Gaddis
@Sam (#3) and @Mariusz (#4):

Installing python-gtkhtml2 package from Debian
(http://packages.debian.org/sid/python-gtkhtml2), while not the best
solution, was a successful workaround for me.

-- 
[apport] BloGTK.py crashed with ImportError in ?()
https://bugs.launchpad.net/bugs/115381
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 579148] [NEW] Print screen function changes the screen state when pressed

2010-05-12 Thread Nokya
Public bug reported:


Ubuntu: 10.04LTS

Description
===
Example: 
I want to make a screen capture of the suggestions list displayed by the google 
search engine when I start typing a search query.

Expected behavior: 
When pressing the 'prt scr' button, I was expecting the screen to be captured 
as it is

Observed behavior:
Pressing the 'prt scr' button makes the suggestions disappear and prevents 
screen capture.

Remarks: 
- Tested on Chrome  Firefox browsers, the same problem appears
- Tested on the WIndows OS with the same browsers: the bug is not reproducible 
(screen capture works and does not affect the application)

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
Print screen function changes the screen state when pressed 
https://bugs.launchpad.net/bugs/579148
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 578585] Re: Ubuntu Unity keeps reloading on my system ...

2010-05-12 Thread Neil J. Patel
I think this bug is because the gnome-panel is persisting in the Unity
session. For a quick test, try and export UNITY_DISABLE_TRAY=1 or remove
the systray from the panel and try again to run Unity. I'll try and get
a fix uploaded sometime today.

-- 
Ubuntu Unity keeps reloading on my system ...
https://bugs.launchpad.net/bugs/578585
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 575338] Re: qlog search not working correctly.

2010-05-12 Thread Launchpad Bug Tracker
This bug was fixed in the package qbzr - 0.18.6-0ubuntu1

---
qbzr (0.18.6-0ubuntu1) lucid-proposed; urgency=low

  * New upstream release
   - Fixes qlog search. (LP: #575338)
 -- Gary van der Merwe gary...@gmail.com   Tue, 04 May 2010 22:13:23 +0200

** Changed in: qbzr (Ubuntu Lucid)
   Status: Fix Committed = Fix Released

-- 
qlog search not working correctly.
https://bugs.launchpad.net/bugs/575338
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 562718] Re: [savage] glblur crashed with SIGSEGV in _mesa_CopyTexImage2D()

2010-05-12 Thread Martin Pitt
Can someone please test the lucid-proposed version?

-- 
[savage] glblur crashed with SIGSEGV in _mesa_CopyTexImage2D()
https://bugs.launchpad.net/bugs/562718
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 457688] Re: [SRU, 9.10] libboost-python1.38 issues with __doc__ property in Python = 2.6.3

2010-05-12 Thread Launchpad Bug Tracker
This bug was fixed in the package boost1.38 - 1.38.0-6ubuntu6.1

---
boost1.38 (1.38.0-6ubuntu6.1) karmic-proposed; urgency=low

  * Apply patch from SVN r53731 to fix the static property initialization
   - patches/python2.6.4.patch (Boost SVN r53731) (LP: #457688)
 -- Andrew Mitchell ajmi...@ubuntu.com   Wed, 11 Nov 2009 16:55:00 +1300

** Changed in: boost1.38 (Ubuntu Karmic)
   Status: Fix Committed = Fix Released

-- 
[SRU, 9.10] libboost-python1.38 issues with __doc__ property in Python = 2.6.3
https://bugs.launchpad.net/bugs/457688
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 452871] Re: internal bluetooth device 413c:8121 in dell m2010 is not recognized

2010-05-12 Thread mcfrei
@CharlesR:
My mouse worked after i installed the bluetooth software that also paired it in 
bluetooth mode, i guess.
I was not doing through testing, moreover, i've (sadly) updated it to Jaunty 
and now i have ot reinstall it.
I have a dual boot, one hdd is for windows, and another for ubuntu.

As far as i know there are no updates for 9.04 that break the keyboard.

I don't have a clue what kills the keyboard. As far as i know it's the
default hid driver that makes the keyboard work, and i think that it
sees the device as custom composite hid that has keyboard, touchpad and
mouse data in one.

-- 
internal bluetooth device 413c:8121 in dell m2010 is not recognized
https://bugs.launchpad.net/bugs/452871
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 305835] Re: unable to delete messages

2010-05-12 Thread SYED AHMED QUADRI
 I try to delete a message a box flashes up stating that messages could
not be moved or copied to folder trash because writing to folder failed.
To gain disk space choose empty trash and compact folders.

I have tried doing this and nothing has happened.

Any advice?

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

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


[Bug 158481] Re: IPv6 causes wireless to disconnect/reconnect often

2010-05-12 Thread hants
Same Problem occurres in Ubuntu 9.10 and 10.04 (and Debian Lenny). 
My WLAN (iwl3945,  WPA Encrypted) connection drops randomly after a view 
minutes and automatic reconnecting often fails (always asking me to reenter the 
connection details and password). 
Blacklisting IPV6 solves the issue.

-- 
IPv6 causes wireless to disconnect/reconnect often
https://bugs.launchpad.net/bugs/158481
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 576832] Re: Firefox search tools problem

2010-05-12 Thread t-ice
*** This bug is a duplicate of bug 539772 ***
https://bugs.launchpad.net/bugs/539772

Hi!  
  
Thanks a lot for help. Now Firefox works fine.  
  
Best regards, Taras.  
  
--- Оригінальне повідомлення ---  
Від кого: John Vivirito gnomefr...@gmail.com  
Кому: t-...@ukr.net  
Дата: 11 травня, 16:10:00  
Тема: [Bug 576832] Re: Firefox search tools problem  
  
  *** This bug is a duplicate of bug 539772 ***  
https://bugs.launchpad.net/bugs/539772  
  
This does look to be the same as bug #539772 so i am marking as a  
duplicate of the above mentioned bug.  
  
** This bug has been marked a duplicate of bug 539772  
Lucid 2.6.32-16 crashed to login screen - miCopyRegion  
  
--  
Firefox search tools problem  
https://bugs.launchpad.net/bugs/576832  
You received this bug notification because you are a direct subscriber  
of the bug.  
  
Status in “firefox” package in Ubuntu: Incomplete  
  
Bug description:  
Binary package hint: firefox  
  
When trying to search with Firefox search tools (google search, youtube search, 
etc.) the Ubuntu logs out every time. Reinstalling Firefox doesn't help.  
1) I use Ubuntu 10.04 LTS. Before upgrading from Ubuntu 9 there wasn't such 
problem, search engines worked well.  
2) Firefox version - 3.6.3+nobinonly-0ubuntu4.  
3) I expect to see search results.  
4) The Ubuntu logs out.  
  
ProblemType: Bug  
DistroRelease: Ubuntu 10.04  
Package: firefox 3.6.3+nobinonly-0ubuntu4  
ProcVersionSignature: Ubuntu 2.6.32-22.33-generic 2.6.32.11+drm33.2  
Uname: Linux 2.6.32-22-generic i686  
Architecture: i386  
CheckboxSubmission: 9c15a7de88c5d22492294da4dbf58299  
CheckboxSystem: 2a6f54df59af338184485e85cbcf0d32  
Date: Fri May 7 09:56:07 2010  
FirefoxPackages:  
firefox 3.6.3+nobinonly-0ubuntu4  
firefox-gnome-support 3.6.3+nobinonly-0ubuntu4  
firefox-branding 3.6.3+nobinonly-0ubuntu4  
abroswer N/A  
abrowser-branding N/A  
InstallationMedia: Ubuntu 9.10 Karmic Koala - Release i386 (20091028.5)  
ProcEnviron:  
LANG=uk_UA.utf8  
SHELL=/bin/bash  
SourcePackage: firefox  
  
To unsubscribe from this bug, go to:  
https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/576832/+subscribe

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

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

[Bug 575338] Re: qlog search not working correctly.

2010-05-12 Thread Martin Pitt
Copied to maverick.

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

-- 
qlog search not working correctly.
https://bugs.launchpad.net/bugs/575338
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 575054] Re: Move libx264 plugin from vlc to vlc-nox

2010-05-12 Thread Launchpad Bug Tracker
This bug was fixed in the package vlc - 1.0.6-1ubuntu1.1

---
vlc (1.0.6-1ubuntu1.1) lucid-proposed; urgency=low

  * debian/vlc{,-nox}.install:
- Move libx264 plugin from vlc to vlc-nox (LP: #575054).
  * debian/control:
- Adjust vlc-nox Replaces field properly.
 -- Alessio Treglia quadris...@ubuntu.com   Tue, 04 May 2010 14:17:27 +0200

** Changed in: vlc (Ubuntu Lucid)
   Status: Fix Committed = Fix Released

-- 
Move libx264 plugin from vlc to vlc-nox
https://bugs.launchpad.net/bugs/575054
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 575054] Re: Move libx264 plugin from vlc to vlc-nox

2010-05-12 Thread Martin Pitt
Copied to maverick.

** Changed in: vlc (Ubuntu)
   Status: In Progress = Fix Released

-- 
Move libx264 plugin from vlc to vlc-nox
https://bugs.launchpad.net/bugs/575054
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 575054] Re: Move libx264 plugin from vlc to vlc-nox

2010-05-12 Thread Martin Pitt
Copied to maverick.

-- 
Move libx264 plugin from vlc to vlc-nox
https://bugs.launchpad.net/bugs/575054
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 574264] Re: $XDG_DATA_DIRS is missing /usr/local/share on xubuntu 10.04

2010-05-12 Thread Launchpad Bug Tracker
This bug was fixed in the package xubuntu-default-settings - 10.04.8

---
xubuntu-default-settings (10.04.8) lucid-proposed; urgency=low

  * usr/share/xubuntu/session.sh:
- Do not forcefully set $XDG_CONFIG_DIRS, it creates issue with non-Xfce
  applications, and 60xdg_path-on-session from gdm already takes care of
  that. lp: #571133
- Ensure that /usr/local/share is present in $XDG_DATA_DIRS. lp: #574264
 -- Lionel Le Folgoc mrpo...@ubuntu.com   Mon, 03 May 2010 20:15:27 +0200

** Changed in: xubuntu-default-settings (Ubuntu Lucid)
   Status: Fix Committed = Fix Released

-- 
$XDG_DATA_DIRS is missing /usr/local/share on xubuntu 10.04
https://bugs.launchpad.net/bugs/574264
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 574264] Re: $XDG_DATA_DIRS is missing /usr/local/share on xubuntu 10.04

2010-05-12 Thread Martin Pitt
Copied to maverick.

** Changed in: xubuntu-default-settings (Ubuntu)
   Status: Triaged = Fix Released

-- 
$XDG_DATA_DIRS is missing /usr/local/share on xubuntu 10.04
https://bugs.launchpad.net/bugs/574264
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 574034] Re: google earth does not render any zoom level with ATI Radeon Xpress 200M video graphics adaptor

2010-05-12 Thread costobak
Hi,
I have exactly the same problem with a Radeon X1200 Series (X1250) on 10.04.

-- 
google earth does not render any zoom level with ATI Radeon Xpress 200M video 
graphics adaptor
https://bugs.launchpad.net/bugs/574034
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


  1   2   3   4   5   6   7   8   9   10   >