[Bug 1042388] Re: qemu: Unsupported syscall: 257 (timer_create)

2014-08-09 Thread Erik de Castro Lopo
I've been looking at it over the last week or so and I have submitted a
patch toe the qemu-devel mailing list to fix another timer_create()
problem sometime in the last week.

Unfortunately the test case @pittit submitted is far harder to support
than the original test case. In this case the timer_create() syscall
gets passed pointers to functions and data in the target's address space
and I have not figured out how to handle that yet.

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

Title:
  qemu: Unsupported syscall: 257 (timer_create)

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

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


[Bug 1353944] Re: Typo in package description

2014-08-09 Thread Filip Sohajek
** Changed in: txamqp (Ubuntu)
   Status: New = In Progress

** Changed in: txamqp (Ubuntu)
 Assignee: (unassigned) = Filip Sohajek (filip-sohajek)

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

Title:
  Typo in package description

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

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


[Bug 933417] Re: Stack smashing while using a lot of connections

2014-08-09 Thread Bug Watch Updater
** Changed in: libfcgi (Debian)
   Status: New = Fix Released

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

Title:
  Stack smashing while using a lot of connections

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

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


[Bug 1354668] [NEW] Fix for suspend/hibernate with DVB-t USB stick

2014-08-09 Thread sander
Public bug reported:

I have a Terratec Cinergy T USB XXS DVB-t USB stick, but when you
suspend the system while a radio or TV channel is actively playing in
some application, the system does not correctly suspend the device. The
system will not wake up again and you have to reset the computer. This
bug exists for at least 3 year and likely people with similar DVB-t USB
sticks will be affected as well.

I have created a failure proof workaround solution for VLC by creating
the script /etc/pm/sleep.d/50_dvb_usb_dib0700_quirk:

#!/bin/sh

PASS=enter password for LUA telnet access to VLC

case $1 in
hibernate|suspend)
 # check whether a stream with telx (Teletext) is active or not
  if [ `{ echo $PASS; echo info; } | netcat localhost 4212 -q 1 | grep -c 
telx` -eq 0 ]
  then
   continue
  else
   { echo $PASS; echo stop; } | netcat localhost 4212 -q 1  /dev/null
  fi
  modprobe -r dvb_usb_dib0700
  sleep 1
  ;;
thaw|resume)
  modprobe dvb_usb_dib0700
  # automatically start playing after wake up
  { echo $PASS; echo play; } | netcat localhost 4212 -q 1  /dev/null
  ;;
*) exit $NA
  ;;
esac

This solution was inspired by:
http://forum.xbmc.org/printthread.php?tid=71490

** Affects: pm-utils (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Fix  for suspend/hibernate with DVB-t USB stick

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

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


[Bug 1350435] Re: tcg.c:1693: tcg fatal error

2014-08-09 Thread LocutusOfBorg
Interesting enough the utopic build was successful!

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

Title:
  tcg.c:1693: tcg fatal error

To manage notifications about this bug go to:
https://bugs.launchpad.net/launchpad-buildd/+bug/1350435/+subscriptions

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


[Bug 1350435] Re: tcg.c:1693: tcg fatal error

2014-08-09 Thread LocutusOfBorg
I got this morning a new FTBFS in a package that have been always built 
successfully in the past, just FYI
https://launchpadlibrarian.net/181879742/buildlog_ubuntu-trusty-armhf.boinc_7.4.0~nightly1~~git20140809%2Br21874~r184~ubuntu14.04.1_FAILEDTOBUILD.txt.gz

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

Title:
  tcg.c:1693: tcg fatal error

To manage notifications about this bug go to:
https://bugs.launchpad.net/launchpad-buildd/+bug/1350435/+subscriptions

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


[Bug 1319595] Re: upstart script ignores some php-fpm.conf parameters, cannot be bypassed in preference of SystemV init script.

2014-08-09 Thread Jeff Waugh
The init script bails out if the system is using upstart, so anything
that expects sysvinit compatibility won't work.

# Don't run if we are running upstart
if init_is_upstart; then
exit 1
fi

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

Title:
  upstart script ignores some php-fpm.conf parameters, cannot be
  bypassed in preference of SystemV init script.

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

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


Re: [Qemu-devel] [Bug 1042388] Re: qemu: Unsupported syscall: 257 (timer_create)

2014-08-09 Thread Peter Maydell
On 9 August 2014 07:15, Erik de Castro Lopo 1042...@bugs.launchpad.net wrote:
 Unfortunately the test case @pittit submitted is far harder to support
 than the original test case. In this case the timer_create() syscall
 gets passed pointers to functions and data in the target's address space
 and I have not figured out how to handle that yet.

Didn't we discuss this on the list a while back? You're confusing
the libc API with the kernel syscall API here -- the kernel definitely
does not take a pointer to a function to call here. (The timer_create
manpage explicitly says that the SIGEV_THREAD functionality
is implemented in the C library, not the kernel.) You can see
this if you strace it:

clone(child_stack=0xb76e5494,
flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID,
parent_tidptr=0xb76e5bd8, {entry_number:6, base_addr:0xb76e5b70,
limit:1048575, seg_32bit:1, contents:0, read_exec_only:0,
limit_in_pages:1, seg_not_present:0, useable:1},
child_tidptr=0xb76e5bd8) = 12666
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
futex(0xb76d324c, FUTEX_WAKE_PRIVATE, 2147483647) = 0
timer_create(CLOCK_REALTIME, {0x984b098, 32, SIGEV_THREAD_ID,
{12666}}, {0x1}) = 0
timer_settime(0x1, 0, {it_interval={0, 0}, it_value={0, 5000}}, NULL) = 0

Under the hood libc is creating a new thread with clone, and
what the timer_create() syscall gets passed is a struct including
the thread ID to be sent a signal when the timer expires (here
that's 12666).

So all you need to do is support SIGEV_THREAD_ID,
which I think doesn't require much more than copying
across the thread ID struct field.

(On the other hand that does mean that all programs which
use SIGEV_THREAD are by definition multithreaded, which
puts them into this isn't supported territory because of our
well known and longstanding threading issues.)

-- PMM

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

Title:
  qemu: Unsupported syscall: 257 (timer_create)

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

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


[Bug 1354699] [NEW] libldns.pc (pkg-config description) installed in wrong folder

2014-08-09 Thread Jakob Petsovits
Public bug reported:

After installing libldns-dev, there is a pkg-config file at /usr/lib
/pkg-config/libldns.pc, however running pkg-config --libs libldns
doesn't find it. That's because Ubuntu's standard pkg-config directory
is /usr/lib/pkgconfig without a dash.

Please fix the package so that the file is installed in the correct
location.

Test case:
$ pkg-config --libs libldns
should list required libraries to link against.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: libldns-dev 1.6.17-1
ProcVersionSignature: Ubuntu 3.13.0-30.55-generic 3.13.11.2
Uname: Linux 3.13.0-30-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.2
Architecture: amd64
CurrentDesktop: KDE
Date: Sat Aug  9 10:38:29 2014
InstallationDate: Installed on 2014-06-26 (43 days ago)
InstallationMedia: Kubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140416.1)
SourcePackage: ldns
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug trusty

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

Title:
  libldns.pc (pkg-config description) installed in wrong folder

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

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


[Bug 1042388] Re: qemu: Unsupported syscall: 257 (timer_create)

2014-08-09 Thread Peter Maydell
Patch which seems to at least make the test case work (tested with
i386-on-i386 linux-user): http://patchwork.ozlabs.org/patch/378769/

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

Title:
  qemu: Unsupported syscall: 257 (timer_create)

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

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


[Bug 1350435] Re: tcg.c:1693: tcg fatal error

2014-08-09 Thread LocutusOfBorg
And when I retried the failed build it succeeded but a segmentation fault (core 
dumped) is in the logs
https://code.launchpad.net/~costamagnagianfranco/+archive/ubuntu/firefox/+build/6254532
qemu: uncaught target signal 11 (Segmentation fault) - core dumped
Segmentation fault (core dumped)
Segmentation fault (core dumped)

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

Title:
  tcg.c:1693: tcg fatal error

To manage notifications about this bug go to:
https://bugs.launchpad.net/launchpad-buildd/+bug/1350435/+subscriptions

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


[Bug 1343407] Re: Add support for Dell PowerEdge 13G servers

2014-08-09 Thread Bug Watch Updater
** Changed in: ipmitool (Debian)
   Status: Confirmed = Fix Released

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

Title:
  Add support for Dell PowerEdge 13G servers

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

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


[Bug 1354714] Re: buffer overrun in kadmind with ldap backend

2014-08-09 Thread Sam Hartman
This is fixed in Debian in 1.12.1+dfsg-87, currently in unstable.  The
only change between -6 (utopic) and -7 is the fix to this bug.

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

Title:
  buffer overrun in kadmind with ldap backend

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

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


[Bug 1354714] [NEW] buffer overrun in kadmind with ldap backend

2014-08-09 Thread Sam Hartman
*** This bug is a security vulnerability ***

Public security bug reported:

Fix LDAP key data segmentation [CVE-2014-4345]

For principal entries having keys with multiple kvnos (due to use of
-keepold), the LDAP KDB module makes an attempt to store all the keys
having the same kvno into a single krbPrincipalKey attribute value.
There is a fencepost error in the loop, causing currkvno to be set to
the just-processed value instead of the next kvno.  As a result, the
second and all following groups of multiple keys by kvno are each
stored in two krbPrincipalKey attribute values.  Fix the loop to use
the correct kvno value.

CVE-2014-4345:

In MIT krb5, when kadmind is configured to use LDAP for the KDC
database, an authenticated remote attacker can cause it to perform an
out-of-bounds write (buffer overrun) by performing multiple cpw
-keepold operations.  An off-by-one error while copying key
information to the new database entry results in keys sharing a common
kvno being written to different array buckets, in an array whose size
is determined by the number of kvnos present.  After sufficient
iterations, the extra writes extend past the end of the
(NULL-terminated) array.  The NULL terminator is always written after
the end of the loop, so no out-of-bounds data is read, it is only
written.

Historically, it has been possible to convert an out-of-bounds write
into remote code execution in some cases, though the necessary
exploits must be tailored to the individual application and are
usually quite complicated.  Depending on the allocated length of the
array, an out-of-bounds write may also cause a segmentation fault
and/or application crash.

CVSSv2 Vector: AV:N/AC:M/Au:S/C:C/I:C/A:C/E:POC/RL:OF/RC:C

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

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

** CVE added: http://www.cve.mitre.org/cgi-
bin/cvename.cgi?name=2014-4345

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

** Also affects: krb5 (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=757416
   Importance: Unknown
   Status: Unknown

** Information type changed from Public to Public Security

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

Title:
  buffer overrun in kadmind with ldap backend

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

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


[Bug 1354714] Re: buffer overrun in kadmind with ldap backend

2014-08-09 Thread Marc Deslauriers
This bug was fixed in the package krb5 - 1.12.1+dfsg-7
Sponsored for Sam Hartman (hartmans)

---
krb5 (1.12.1+dfsg-7) unstable; urgency=high

  * Apply upstream's patch for CVE-2014-4345 (MITKRB5-SA-2014-001), buffer
overrun in kadmind with LDAP backend, Closes: #757416

 -- Benjamin Kaduk ka...@mit.edu  Thu, 07 Aug 2014 18:33:37 -0400

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

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

Title:
  buffer overrun in kadmind with ldap backend

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

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


[Bug 1354714] Re: buffer overrun in kadmind with ldap backend

2014-08-09 Thread Bug Watch Updater
** Changed in: krb5 (Debian)
   Status: Unknown = Fix Released

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

Title:
  buffer overrun in kadmind with ldap backend

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

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


[Bug 1353944] Re: Typo in package description

2014-08-09 Thread Launchpad Bug Tracker
** Branch linked: lp:~filip-sohajek/ubuntu/utopic/txamqp/fix-for-1353944

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

Title:
  Typo in package description

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

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


[Bug 1353792] Re: Detect renamed files and handle by renaming instead of delete/re-send

2014-08-09 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  Detect renamed files and handle by renaming instead of delete/re-send

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

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


[Bug 1354745] [NEW] umask 111 in envvars

2014-08-09 Thread OwN
Public bug reported:

In Ubuntu 13.04 and up (including the latest version of Ubuntu 14.04 x86
and x64 versions), the /etc/apache2/envvars file has the following line
at the bottom of the file:

umask 111

This needs to be removed, or files will not be able to be uploaded into
the /tmp directory on the file system with the appropriate permissions
they need.  I have a php update script that attempts to store the latest
files in the /tmp directory, but with the umask set to 111, it fails
with a generic error message that the access is denied and the file
cannot be created.  Once this line is removed, and apache2 is restarted,
everything works properly again.

I've noticed that when an update for Apache2 is released, it will add
the umask 111 line back to the end of the file. Updates should not
overwrite your settings,  and this line should not even be in the
envvars file to begin with.

1.  Ubuntu 14.04 x64
2.  Version
apache2:
  Installed: 2.4.7-1ubuntu4.1
  Candidate: 2.4.7-1ubuntu4.1
  Version table:
 *** 2.4.7-1ubuntu4.1 0
500 http://us.archive.ubuntu.com/ubuntu/ trusty-updates/main amd64 
Packages
500 http://security.ubuntu.com/ubuntu/ trusty-security/main amd64 
Packages
100 /var/lib/dpkg/status
 2.4.7-1ubuntu4 0
500 http://us.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages
3.  No umask should be specified in envvars file by default nor should a umask 
of 111 be readded / set to the envvars configuration when an update exists for 
the apache2 package.
4.  I removed the umask 111 line in the configuration.  When an update was 
installed, it was readded to the envvars configuration which messed up my 
files' default permissions.

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

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

Title:
  umask 111 in envvars

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

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


[Bug 1347147] Re: krb5 database operations enter infinite loop

2014-08-09 Thread Launchpad Bug Tracker
** Branch linked: lp:debian/gcc-4.9

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

Title:
  krb5 database operations enter infinite loop

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

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


[Bug 1316851] Re: Laptop screen remains blank when resuming from pm-suspend, even though an external display would turn back on.

2014-08-09 Thread Yves Saint-Franc
** Summary changed:

- Screen remains blank when resuming from pm-suspend
+ Laptop screen remains blank when resuming from pm-suspend, even though an 
external display would turn back on.

** Description changed:

+ Update (2014-Aug-09): An external display connected via VGA port would
+ turn on when the system resumed from suspend, but the primary screen
+ (and possibly backlight) remained blank.
+ 
+ --
+ 
  When resuming from suspend, the PC's screen remained blank. However,
  everything else seemed responsive, as I was able to log in and turn
  up/down the volume via shortcut keys and got an audio response.
  
  ---System Details---
  Description:Ubuntu 14.04 LTS
  Release:14.04
  Machine:Toshiba Satellite L755D
  
  pm-utils:
    Installed: 1.4.1-13
    Candidate: 1.4.1-13
    Version table:
   *** 1.4.1-13 0
  500 http://us.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages
  100 /var/lib/dpkg/status
  
  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: pm-utils 1.4.1-13
  Uname: Linux 3.12.2-031202-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Tue May  6 18:58:20 2014
  InstallationDate: Installed on 2012-12-05 (517 days ago)
  InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
  PackageArchitecture: all
  SourcePackage: pm-utils
  UpgradeStatus: Upgraded to trusty on 2014-04-19 (17 days ago)

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

Title:
  Laptop screen remains blank when resuming from pm-suspend, even though
  an external display would turn back on.

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

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


[Bug 1299186] Re: Creating a Samba Share is not possible because 'net usershare' returned error 255: net usershare add: cannot convert name Everyone to a SID. Access denied.

2014-08-09 Thread Felix Wolters
** This bug is no longer a duplicate of bug 1261873
   [trusty] usershare access denied error (leads to non working nautilus 
samba sharing)

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

Title:
  Creating a Samba Share is not possible because 'net usershare'
  returned error 255: net usershare add: cannot convert name Everyone
  to a SID. Access denied.

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

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


[Bug 1299186] Re: Creating a Samba Share is not possible because 'net usershare' returned error 255: net usershare add: cannot convert name Everyone to a SID. Access denied.

2014-08-09 Thread Felix Wolters
First of all, this is NOT a duplicate of
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1261873. I get the
same problem, while my [homes] section in smb.conf is ok, i.e. ALL the
lines there are commented out.

What happens on at least two independend installations of Trusty, one of
them a fresh one: Trying to share a folder in Nautilus for the first
time makes it automatically ask to install the samba package. This seems
to work, but then a simmilar dialogue appears asking to install libpam-
smbpass, too, but this time the whole dialogue is greyed out and
clicking one of the two buttons (cancel or install) has no effect at
all. It can only be closed clicking the x button in the top corner.

Shares don't work then, as discribed before.

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

Title:
  Creating a Samba Share is not possible because 'net usershare'
  returned error 255: net usershare add: cannot convert name Everyone
  to a SID. Access denied.

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

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


[Bug 700912] Re: dosbox crashed with SIGSEGV

2014-08-09 Thread shankao
@milasudril, are you talking about the same bug reported here? I.e. same
segfault, happening when running 3D Studio R3. If not, please fill up a
different bug report.

Then, if you're having trouble compiling dosbox from svn, that's an
upstream bug and should be reported at the dosbox bugtracker
(http://sourceforge.net/tracker/?group_id=52551atid=467232) by
following the instructions at
http://vogons.zetafleet.com/viewtopic.php?t=2949.

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

Title:
  dosbox crashed with SIGSEGV

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

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


[Bug 1287341] Re: Touchscreen controls both screens in dual-monitor setup

2014-08-09 Thread Mathew Hodson
** Branch linked: lp:~albertomilone/unity-settings-
daemon/lp1287341-14.10

** Branch unlinked: lp:~ps-jenkins/unity-settings-daemon/trusty-proposed

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

Title:
  Touchscreen controls both screens in dual-monitor setup

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-settings-daemon/+bug/1287341/+subscriptions

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


[Bug 1354654] [NEW] Bug #1342377 with dual Radeon HD 6570 + amd-catalyst-14-4-rev2-linux-x86-x86-64-may6

2014-08-09 Thread GJT
Public bug reported:

xserver-xorg-core-lts-trusty conflicts Radeon HD 6570

All in Ubnuntu 12.04LTS  I did the hardware update  'strongly
recomended' and the upgrade deleted my radeon drivers.  I got an
unstable sparkely screen and had to return to a previous ubuntu version
to fix.

I had Bug #1342377, but succeded in loading the radeon module, amd-
catalyst-14-4-rev2-linux-x86-x86-64-may6,  which worked fine till I
updated, then I got no video at all:   That's the new bug

The Update loaded the xserver-xorg-core-lts-trusty, the core server as
well as xserver-comon-lts-trusty, various c library functions and Grub
updates. It had a warning that it was a partial update.

There was no reference to this in ubuntu forums., or

I have an Asus M5A97R2.0 motherboard with 2 Radeon HD 6570 with 2gig of
memory each running a syntax display at 1250x720  via a vga cable.  It
has a dvi port, but I have never bothered to update that hardware.   The
system is about 10 months old except  for the monitor, which is 12, I
think.

I also tried to run the xubuntu-14.04-desktop-amd64.iso, but got no
video from the live cd at all.  That'd likely be the same video conflict
in the next version X windows.

** Affects: xorg-lts-trusty (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Bug #1342377 with dual Radeon HD 6570 + amd-
  catalyst-14-4-rev2-linux-x86-x86-64-may6

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

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


[Bug 1042388] Re: qemu: Unsupported syscall: 257 (timer_create)

2014-08-09 Thread Erik de Castro Lopo
I've been looking at it over the last week or so and I have submitted a
patch toe the qemu-devel mailing list to fix another timer_create()
problem sometime in the last week.

Unfortunately the test case @pittit submitted is far harder to support
than the original test case. In this case the timer_create() syscall
gets passed pointers to functions and data in the target's address space
and I have not figured out how to handle that yet.

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

Title:
  qemu: Unsupported syscall: 257 (timer_create)

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

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


[Bug 1354655] [NEW] Nautilus freeze/hang on displaying folder with PDF

2014-08-09 Thread pramathesh ambasta
Public bug reported:

It has happened twice. Nautilus hangs or freezes the system when a
folder with PDF documents is opened for display. Preferences are set to
display thumbnails. For some reason, nautilus does not seem to able to
generate the thumbnail Or it takes endless time to do so. Deleting the
PDF from the folder restores normal display.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: nautilus 1:3.10.1-0ubuntu9.2
ProcVersionSignature: Ubuntu 3.13.0-32.57-generic 3.13.11.4
Uname: Linux 3.13.0-32-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.3
Architecture: amd64
CurrentDesktop: Unity
Date: Sat Aug  9 11:44:10 2014
GsettingsChanges:
 b'org.gnome.nautilus.list-view' b'use-tree-view' b'true'
 b'org.gnome.nautilus.list-view' b'default-column-order' b['name', 'size', 
'type', 'date_modified', 'date_accessed', 'owner', 'group', 'permissions', 
'mime_type', 'where']
SourcePackage: nautilus
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  Nautilus freeze/hang on displaying folder with PDF

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

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


[Bug 1353944] Re: Typo in package description

2014-08-09 Thread Filip Sohajek
** Changed in: txamqp (Ubuntu)
   Status: New = In Progress

** Changed in: txamqp (Ubuntu)
 Assignee: (unassigned) = Filip Sohajek (filip-sohajek)

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

Title:
  Typo in package description

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

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


[Bug 1315221] Re: 8086:08b1 (rev 6b) [Dell XPS 13 9333] iwlwifi regularly loses connection/becomes unusable on Intel 7260

2014-08-09 Thread eric
Same problem with 12.04 - 14.04 upgrade on 8/7/2014. An earlier
incarnation of Ubuntu (Oneiric?) had similar issue, I seem to remember.

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

Title:
  8086:08b1 (rev 6b) [Dell XPS 13 9333] iwlwifi regularly loses
  connection/becomes unusable on Intel 7260

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

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


[Bug 1220426] Re: [nvidia-prime]Freeze while using touchpad

2014-08-09 Thread Darren Wright
Hello Raja,

needed sleep. Okay I did:

New install of Ubuntu 14.04
package updates + additional software (Nvidia 331.38 fom nvidia(Proprietary, 
tested)
reboot

now whenever I leave the touchpad enabled (FN+F12 on Mx17) and use it, i
get random freezes whenever i actually move using the touchpad. (not
sure if  100%related but seems to be)

disabled touchpad and no locks, reenabled and inside of 2 minutes it
locked.

If you are trying to make this happen and you don't lock inside of 5
minutes with the t-pad, you dont have the issue I have..

I also went into BIOS and enabled the Intel only graphics, problem also
gone. But kinda depressing for Left4Dead ;)

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

Title:
  [nvidia-prime]Freeze while using touchpad

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

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


[Bug 1311396] Re: broken translations results in traceback in new release notification

2014-08-09 Thread Mathew Hodson
** Branch linked: lp:ubuntu/trusty-proposed/language-pack-gnome-id

** Branch unlinked: lp:ubuntu/saucy-proposed/ubuntu-release-upgrader

** Changed in: language-pack-id (Ubuntu Trusty)
   Status: New = Fix Committed

** Changed in: language-pack-eo (Ubuntu Trusty)
   Status: New = Fix Committed

** Changed in: language-pack-ug (Ubuntu Trusty)
   Status: New = Fix Committed

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

Title:
  broken translations results in traceback in new release notification

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/language-pack-eo/+bug/1311396/+subscriptions

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


[Bug 1354350] Re: Xorg memory leak on 14.04

2014-08-09 Thread Yosha872
Hello.   After 8 hours running, Xorg is 1,9 GB.

xrestop - Display: localhost
  Monitoring 41 clients. XErrors: 0
  Pixmaps:   45400K total, Other: 109K total, All:   45510K total

res-base Wins  GCs Fnts Pxms Misc   Pxm mem  Other   Total   PID Identifier
1403731   11 169623906K 41K  23947K  3005 cinnamon
2a048   841  158  45910757K 14K  10772K  3596 Firefox
000 2020   88 4850K  4K   4855K   ?   unknown
20010314  123 1792K  4K   1796K  3355 Terminal
220 00010 1280K  0B   1280K   ?   unknown
560 5207   52  792K  1K793K 24293 Moniteur 
système
1a01831   13  200  593K  6K599K  3027 OOFFF
1c020   931   75   50  515K  4K519K  3058 LibreOffice 
4.2
260 8   6315   29  393K  3K396K  3476 mintUpdate.py
4c011   5712   16  384K  2K386K  5626 opera
600 1   320   179   32K   1008B 32K   ?   unknown
440 3302   11   32K408B 32K  4657 kglobalaccel
420 3302   11   32K408B 32K  5692 kuiserver
3e0 3302   11   32K408B 32K  4653 kded4
28015712   189K  1K 10K  5626 Opera
0e0 4100  3050B  7K  7K  2720 
cinnamon-settings-daemon
4a0 7   5812   12   12B  2K  2K  5692 kuiserver
460 7   5812   12   12B  2K  2K  4657 kglobalaccel
400 7   5812   12   12B  2K  2K  4653 kdeinit4: 
kded4 [kdeinit]
180 3310   308B  1K  1K  3032 
polkit-gnome-authentication-agent-1
040 011000B  1K  1K   ?   unknown
240 4200   224B672B676B  3472 
cinnamon-screensaver
1e0 5100   180B576B576B  3028 Applet 
NetworkManager
5c0 910040B336B336B  9791
080 2100   110B336B336B  2444 
cinnamon-session
300 220084B288B292B 12232 
plugin-container
5a0 180130B288B288B   ?   unknown
2e0 210090B288B288B  4256 Service de 
système de fichiers RECENT
120 210090B288B288B  2979 
cinnamon-launcher
5e0 610000B168B168B  9821


top - 08:48:26 up 22:02,  3 users,  load average: 2,64, 3,30, 3,16
Tasks: 184 total,   3 running, 181 sleeping,   0 stopped,   0 zombie
%Cpu(s): 15,6 us,  2,5 sy,  0,0 ni, 80,8 id,  1,0 wa,  0,2 hi,  0,0 si,  0,0 st
KiB Mem:   7528392 total,  7123136 used,   405256 free,  1425136 buffers
KiB Swap:  3906452 total,17928 used,  3888524 free.  1838676 cached Mem

  PID USER  PR  NIVIRTRESSHR S  %CPU %MEM TIME+ COMMAND 

 3596 icecube   20   0 1702888 641304  48424 R  26,6  8,5  64:18.42 firefox 

 5443 icecube   20   0 2775436 202160  10056 S  18,9  2,7 515:45.86 java

 1530 root  20   0 2453744 1,998g 151120 S  15,3 27,8 135:19.47 Xorg

24293 icecube   20   0  496480  27156  14980 S   7,6  0,4  54:09.25 
gnome-system-mo 
 3005 icecube   20   0 1866180 260416  62308 S   0,7  3,5  40:44.56 cinnamon

 9791 icecube   20   0 2673280  32236  12600 S   0,7  0,4   1:09.77 
notepad++.exe   
12219 icecube   20   0   24980   1720   1184 R   0,7  0,0   0:00.05 top 

   47 root  20   0   0  0  0 S   0,3  0,0   3:16.37 kworker/1:1 

   71 root  20   0   0  0  0 S   0,3  0,0   3:30.18 kworker/2:2 

 1585 root  20   0   75992   7840   1360 S   0,3  0,1   2:10.24 teamviewerd 

 3355 icecube   20   0  616800  21436  12584 S   0,3  0,3   2:11.13 
gnome-terminal  
 3391 icecube   20   0   24968   1700   1188 S   0,3  0,0   6:25.15 top 

 9794 icecube   -4   0   32276   8156   1164 S   0,3  0,1   0:12.84 wineserver  

1 root  20   0   33896   2904   1468 S   0,0  0,0   0:02.50 init

[Bug 390508] Re: notifyOSD ignores the expire timeout parameter

2014-08-09 Thread Duncan Bayne
I was developing a script based on inotify that would use very short-
lived onscreen notifications.  Turns out I can't, at least not with
notify-send; I spent some time trying to debug my script before thinking
it might be a bug elsewhere.

This needs fixing either by:

 - making osd-notify honour the setting, or
 - removing it from notify-send, or 
 - clearly documenting the issue in notify-send --help

grump :(

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

Title:
  notifyOSD ignores the expire timeout parameter

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

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


[Bug 433563]

2014-08-09 Thread julien2412
*** Bug 82038 has been marked as a duplicate of this bug. ***

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

Title:
  [Upstream] Base Report E-Mail as PDF gives error instead of opening
  Evolution

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/433563/+subscriptions

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


[Bug 433563]

2014-08-09 Thread julien2412
4.2.6 is ok but 4.3.0.4 and master sources updated some days ago fail with same 
symptoms
- Regression here

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

Title:
  [Upstream] Base Report E-Mail as PDF gives error instead of opening
  Evolution

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/433563/+subscriptions

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


[Bug 1339932] Re: iptables -j LOG fails on 12.04 kernel 3.4.4-guest

2014-08-09 Thread Jeff Groves
Upgrading to 12.04.5 and installing the Trusty kernel fixed the problem:

aptitude safe-upgrade
apt-get install --install-recommends linux-generic-lts-trusty

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

Title:
  iptables -j LOG fails on 12.04 kernel 3.4.4-guest

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

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


[Bug 433563] Re: [Upstream] Base Report E-Mail as PDF gives error instead of opening Evolution

2014-08-09 Thread Bug Watch Updater
** Changed in: df-libreoffice
   Status: Incomplete = Confirmed

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

Title:
  [Upstream] Base Report E-Mail as PDF gives error instead of opening
  Evolution

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/433563/+subscriptions

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


[Bug 1352567] Re: [Asus AM1M-A] OOPS in cpufreq driver

2014-08-09 Thread post-factum
In fact, I've also posted brief bug description to linux-kernel and
linux-pm ML… Well, will try to contact maintainer directly, thanks.

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

Title:
  [Asus AM1M-A] OOPS in cpufreq driver

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

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

[Bug 1306999] Re: When search results are shown, saving modifications breaks the menu structure

2014-08-09 Thread Mathew Hodson
This bug was fixed in
https://launchpad.net/ubuntu/+source/menulibre/2.0.4-1~ubuntu14.04.1

- Fixed menu corruption when saving after search (LP: 1306999)

** Changed in: menulibre (Ubuntu)
   Status: Confirmed = Fix Released

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

Title:
  When search results are shown, saving modifications breaks the menu
  structure

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

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


[Bug 1350425] Re: Ubuntu 14.04 ACR38 card reader. Says card is not found in java applet

2014-08-09 Thread Alexander
Same here, Ubuntu 14.04 not working. Though on Windows system it does
work as intended.

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

Title:
  Ubuntu 14.04 ACR38 card reader. Says card is not found in java
  applet

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

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


[Bug 1197482] Re: 8086:0a26 [MacBook Air 6, 2] After suspend/resume, screen is dark for brightness levels below 13 with i915 driver

2014-08-09 Thread Andrew Gaul
** Summary changed:

- 8086:0a26 [MacBook Air 6,2] After suspend/resume, screen is dark for 
brighness levels below 13 with i915 driver
+ 8086:0a26 [MacBook Air 6,2] After suspend/resume, screen is dark for 
brightness levels below 13 with i915 driver

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

Title:
  8086:0a26 [MacBook Air 6,2] After suspend/resume, screen is dark for
  brightness levels below 13 with i915 driver

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

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


[Bug 1354658] [NEW] nvidia-331-uvm 331.38-0ubuntu7.1: nvidia-331-uvm kernel module failed to build

2014-08-09 Thread Sebastian Rost
Public bug reported:

depmod failed when installing new kernel

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: nvidia-331-uvm 331.38-0ubuntu7.1
ProcVersionSignature: Ubuntu 3.13.0-32.57-generic 3.13.11.4
Uname: Linux 3.13.0-32-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.3
Architecture: amd64
DKMSKernelVersion: 3.13.0-33-generic
Date: Sat Aug  9 09:15:28 2014
InstallationDate: Installed on 2014-02-08 (181 days ago)
InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 (20131016.1)
PackageVersion: 331.38-0ubuntu7.1
SourcePackage: nvidia-graphics-drivers-331
Title: nvidia-331-uvm 331.38-0ubuntu7.1: nvidia-331-uvm kernel module failed to 
build
UpgradeStatus: Upgraded to trusty on 2014-04-18 (112 days ago)

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


** Tags: amd64 apport-package trusty

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

Title:
  nvidia-331-uvm 331.38-0ubuntu7.1: nvidia-331-uvm kernel module failed
  to build

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

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


RE: [Bug 1220426] Re: [nvidia-prime]Freeze while using touchpad

2014-08-09 Thread Raja
Thanks Deeran,

Could you please help to share the nvidia bug report oncethe issue
reproduce?

Or please share the entire dmesg output, once the issue reproduce

Sent from my Android phone using TouchDown (www.nitrodesk.com)

-Original Message-
From: Darren Wright [prostetnic...@gmail.com]
Received: Saturday, 09 Aug 2014, 12:21PM
To: Rajagopal TS [r...@nvidia.com]
Subject: [Bug 1220426] Re: [nvidia-prime]Freeze while using touchpad

Hello Raja,

needed sleep. Okay I did:

New install of Ubuntu 14.04
package updates + additional software (Nvidia 331.38 fom nvidia(Proprietary, 
tested)
reboot

now whenever I leave the touchpad enabled (FN+F12 on Mx17) and use it, i
get random freezes whenever i actually move using the touchpad. (not
sure if  100%related but seems to be)

disabled touchpad and no locks, reenabled and inside of 2 minutes it
locked.

If you are trying to make this happen and you don't lock inside of 5
minutes with the t-pad, you dont have the issue I have..

I also went into BIOS and enabled the Intel only graphics, problem also
gone. But kinda depressing for Left4Dead ;)

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

Title:
  [nvidia-prime]Freeze while using touchpad

Status in “nvidia-graphics-drivers-319” package in Ubuntu:
  Triaged
Status in “nvidia-graphics-drivers-331” package in Ubuntu:
  Triaged
Status in “nvidia-prime” package in Ubuntu:
  Triaged

Bug description:
  I'm using an Optimus laptop (Asus N43SL)
  nvidia-prime is installed, so my nvidia dedicated graphics card (GT 540m) is 
in use.

  Once in a while, my screen will freeze, only when I use my touchpad.
  This does not happen with my USB mouse.
  This does not happen either when I uninstall nvidia-prime and use my intel 
integrated graphics (HD3000).

  I can temporarily solve the issue by doing a VT switch.


  In the attached Xorg.0.log, you can see synaptics: ETPS/2 Elantech Touchpad: 
touchpad found each time I did a VT switch and regained control.

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

---
This email message is for the sole use of the intended recipient(s) and may 
contain
confidential information.  Any unauthorized review, use, disclosure or 
distribution
is prohibited.  If you are not the intended recipient, please contact the 
sender by
reply email and destroy all copies of the original message.
---

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

Title:
  [nvidia-prime]Freeze while using touchpad

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

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

[Bug 1335446] Re: Installing kubuntu-desktop to normal ubuntu ruins unity

2014-08-09 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: ubuntu-meta (Ubuntu)
   Status: New = Confirmed

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

Title:
  Installing kubuntu-desktop to normal ubuntu ruins unity

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

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


[Bug 1340673] Re: SIM PIN Unlock Required dialog shows up after every resume

2014-08-09 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: network-manager-applet (Ubuntu)
   Status: New = Confirmed

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

Title:
  SIM PIN Unlock Required dialog shows up after every resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager-applet/+bug/1340673/+subscriptions

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


[Bug 1334230] Re: [Asus X550VC] Fn+F2 wifi on/off don't work

2014-08-09 Thread Aleksa
I don't know how to do the Kernel Bisection...

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

Title:
  [Asus X550VC] Fn+F2 wifi on/off don't work

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

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


[Bug 1335446] Re: Installing kubuntu-desktop to normal ubuntu ruins unity

2014-08-09 Thread hakon
I confirm to have the same issues. From Ubuntu 14.04 I ran apt-get
install kubuntu-desktop, after logging out from Unity and in again in
KDE plasma desktop, I think I started to see some symptoms (for example:
fonts on webpages looked ugly), and logging out again and then logging
into Unity again, more symptoms became apparent. The most important
issue for me now is to get the fonts back as they were. Some web pages
is almost unreadable with the current fonts.

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

Title:
  Installing kubuntu-desktop to normal ubuntu ruins unity

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

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


[Bug 1300386] Re: Network manager fails to find bluetooth 'modem' for dun connection in saucy

2014-08-09 Thread Sergio Callegari
Same issue in trusty.

This is in fact a kernel bug: see https://lkml.org/lkml/2014/2/9/316.

Tried mainline (e.g. 3.15.6) and works fine.

There is also another bug in modemmanager/networkmanager. This keeps
rfcomm0 open when the connection is dropped and causes modemmanager to
keep asking the bluetooth phone about the signal quality. When you try
to connect again, the connection fails. However, this is easily worked
around by service modemmanager restart.

So the main issue is with the kernel. The relevant patches should be
backported to the saucy and trusty kernels.

** Summary changed:

- Network manager fails to find bluetooth 'modem' for dun connection in saucy
+ Network manager fails to find bluetooth 'modem' for dun connection in saucy 
and trusty

** Package changed: network-manager (Ubuntu) = linux-meta (Ubuntu)

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

Title:
  Network manager fails to find bluetooth 'modem' for dun connection in
  saucy and trusty

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

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


[Bug 1279987] Re: usb-creator-gtk crashed with TypeError in __call__(): first argument must be the method signature string: GLib.Variant('a{sv}', {})

2014-08-09 Thread Michisteiner
this seems a duplicate of bug #1302295

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

Title:
  usb-creator-gtk crashed with TypeError in __call__(): first argument
  must be the method signature string: GLib.Variant('a{sv}', {})

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

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


[Bug 1335446] Re: Installing kubuntu-desktop to normal ubuntu ruins unity

2014-08-09 Thread hakon
Here is an example of how the fonts now look like in many web pages:
http://askubuntu.com/questions/507966/fonts-messed-up-after-installing-kubuntu-desktop-on-ubuntu-14-04

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

Title:
  Installing kubuntu-desktop to normal ubuntu ruins unity

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

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


[Bug 1302295] Re: usb-creator-gtk errors during app startup

2014-08-09 Thread Michisteiner
The problem seems triggered by the fake cdroms on SanDisk Cruzers

Following the stack trace ...

 /usr/lib/python3.4/bdb.py(431)run()
- exec(cmd, globals, locals)
  string(1)module()
  /usr/bin/usb-creator-gtk(74)module()
- allow_system_internal=options.allow_system_internal)
  
/usr/lib/python3/dist-packages/usbcreator/frontends/gtk/frontend.py(185)__init__()
- self.backend.detect_devices()
  
/usr/lib/python3/dist-packages/usbcreator/backends/udisks/backend.py(73)detect_devices()
- self._udisks_obj_added(obj)
  
/usr/lib/python3/dist-packages/usbcreator/backends/udisks/backend.py(92)_udisks_obj_added()
- self._udisks_cdrom_added(obj, block, drive, path)
  
/usr/lib/python3/dist-packages/usbcreator/backends/udisks/backend.py(111)_udisks_cdrom_added()
- mount = fs.mount_sync(no_options, None)
 /usr/lib/python3/dist-packages/gi/overrides/Gio.py(152)__call__()
- raise TypeError('first argument must be the method signature string: %r' % 
signature)

.. of the exception which is trigered by

  if not isinstance(signature, str):

on line 151 on /usr/lib/python3/dist-packages/gi/overrides/Gio.py

prints in pdb3 give following values for the arguments:

  p signature
  GLib.Variant('a{sv}', {})

  p str
  class 'str'

Unfortunately, my knowledge of glib/dbus is zilch and python minimal
so i gave up and simply commented out lines 91-92 of

   /usr/lib/python3/dist-packages/usbcreator/backends/udisks/backend.py

the lines

   if drive and drive.get_cached_property('Optical').get_boolean():
self._udisks_cdrom_added(obj, block, drive, path)


Obviously that hack wouldn't work if you want to clone an actual cd in
the cdrom drive but works perfectly for .iso images

btw: Bug #1279987 seems a duplicate of this

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

Title:
  usb-creator-gtk errors during app startup

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

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


[Bug 1354263] Re: [virt-install] no way to force disk size overcommit

2014-08-09 Thread Nobuto MURATA
Explicitly setting  sparse=true makes --force takes effect.



$ virt-install --noautoconsole --name test --ram 512 --boot hd --disk 
pool=default,size=2048,format=qcow2,sparse=true
WARNING  The requested volume capacity will exceed the available pool space 
when the volume is fully allocated. (2097152 M requested capacity  41166 M 
available)
ERRORThe requested volume capacity will exceed the available pool space 
when the volume is fully allocated. (2097152 M requested capacity  41166 M 
available) (Use --force to override)

$ virt-install --noautoconsole --name test --ram 512 --boot hd --disk 
pool=default,size=2048,format=qcow2,sparse=true --force
WARNING  The requested volume capacity will exceed the available pool space 
when the volume is fully allocated. (2097152 M requested capacity  41166 M 
available)

Starting install...
Allocating 'test.qcow2' 
| 2.0 TB 00:07 
Creating domain...  
|0 B 00:00 
Domain creation completed. You can restart your domain by running:
  virsh --connect qemu:///system start test

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

Title:
  [virt-install] no way to force disk size overcommit

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

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


[Bug 1300386] Re: Network manager fails to find bluetooth 'modem' for dun connection in saucy and trusty

2014-08-09 Thread Brad Figg
** Package changed: linux-meta (Ubuntu) = linux (Ubuntu)

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

Title:
  Network manager fails to find bluetooth 'modem' for dun connection in
  saucy and trusty

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

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


[Bug 1327563] Re: Long delay when mounting NFS shares

2014-08-09 Thread Marcus Karlsson
Unfortunately no, I can still reproduce it on 3.13.0-32-generic.

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

Title:
  Long delay when mounting NFS shares

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

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


[Bug 933417] Re: Stack smashing while using a lot of connections

2014-08-09 Thread Bug Watch Updater
** Changed in: libfcgi (Debian)
   Status: New = Fix Released

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

Title:
  Stack smashing while using a lot of connections

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

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


[Bug 1300386] Missing required logs.

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

apport-collect 1300386

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

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

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

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

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

Title:
  Network manager fails to find bluetooth 'modem' for dun connection in
  saucy and trusty

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

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


[Bug 1214352]

2014-08-09 Thread Momonasmon
Again: This one doesn't need bibisecting.

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

Title:
  GUINT32/64_SWAP_LE_BE macros do not enclose val argument in
  parentheses

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/1214352/+subscriptions

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


[Bug 1214352]

2014-08-09 Thread Björn Michaelsen
Scoping this bug clearly only on the missing deps for KDE thanks to the
excellent summary in comment 59. Everything else is fdo#49776. Please
dont scope-creep this bug, thanks.

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

Title:
  GUINT32/64_SWAP_LE_BE macros do not enclose val argument in
  parentheses

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/1214352/+subscriptions

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


[Bug 746383]

2014-08-09 Thread Daphnediane
(In reply to comment #3)
 Fontconfig part fixed.  Pango fix needed.
 
 commit ffda7c0e8130eb107ecbb3bdc48043093b12dff9
 Author: Behdad Esfahbod beh...@behdad.org
 Date:   Fri Jul 25 17:59:26 2014 -0400
 
 Linearly interpolate weight values
 
 Rest of Part of https://bugs.freedesktop.org/show_bug.cgi?id=81453
 
 Adds new API:
 
 FcWeightFromOpenType()
 FcWeightToOpenType()

Note that this fix introduced bug 82228 as lerp doesn't handle dy == 0.

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

Title:
  fontconfig confuses bold and medium weights

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

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


[Bug 1220426] Re: [nvidia-prime]Freeze while using touchpad

2014-08-09 Thread Darren Wright
Hi,

as a side note, it is happening much less with the usb mouse plugged in
even when i use the T-Pad. If I remove the external mouse and continue
using T-Pad then it takes around 5 clicks.

I'll add my dmesg log as next post

Sorry I am kinda new to Linux, takes me a while to figure out what you
want..

** Attachment added: nvidia-bug-report.log.gz
   
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-319/+bug/1220426/+attachment/4173251/+files/nvidia-bug-report.log.gz

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

Title:
  [nvidia-prime]Freeze while using touchpad

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

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


[Bug 1220426] Re: [nvidia-prime]Freeze while using touchpad

2014-08-09 Thread Darren Wright
DMESG log

** Attachment added: dmesg
   
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-319/+bug/1220426/+attachment/4173252/+files/dmesg

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

Title:
  [nvidia-prime]Freeze while using touchpad

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

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


[Bug 1354668] [NEW] Fix for suspend/hibernate with DVB-t USB stick

2014-08-09 Thread sander
Public bug reported:

I have a Terratec Cinergy T USB XXS DVB-t USB stick, but when you
suspend the system while a radio or TV channel is actively playing in
some application, the system does not correctly suspend the device. The
system will not wake up again and you have to reset the computer. This
bug exists for at least 3 year and likely people with similar DVB-t USB
sticks will be affected as well.

I have created a failure proof workaround solution for VLC by creating
the script /etc/pm/sleep.d/50_dvb_usb_dib0700_quirk:

#!/bin/sh

PASS=enter password for LUA telnet access to VLC

case $1 in
hibernate|suspend)
 # check whether a stream with telx (Teletext) is active or not
  if [ `{ echo $PASS; echo info; } | netcat localhost 4212 -q 1 | grep -c 
telx` -eq 0 ]
  then
   continue
  else
   { echo $PASS; echo stop; } | netcat localhost 4212 -q 1  /dev/null
  fi
  modprobe -r dvb_usb_dib0700
  sleep 1
  ;;
thaw|resume)
  modprobe dvb_usb_dib0700
  # automatically start playing after wake up
  { echo $PASS; echo play; } | netcat localhost 4212 -q 1  /dev/null
  ;;
*) exit $NA
  ;;
esac

This solution was inspired by:
http://forum.xbmc.org/printthread.php?tid=71490

** Affects: pm-utils (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Fix  for suspend/hibernate with DVB-t USB stick

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

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


[Bug 1220426] Re: [nvidia-prime]Freeze while using touchpad

2014-08-09 Thread Carlos Fontinha
My output log:
-  dmesg -T -l err,crit,alert,emerg
[Sáb Ago  9 10:36:23 2014] vgaarb: this pci device is not a vga device
[Sáb Ago  9 10:36:24 2014] vgaarb: this pci device is not a vga device
[Sáb Ago  9 10:36:28 2014] dpm_run_callback(): pnp_bus_resume+0x0/0xa0 returns 
-19
[Sáb Ago  9 10:36:28 2014] PM: Device 00:07 failed to resume: error -19

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

Title:
  [nvidia-prime]Freeze while using touchpad

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

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

[Bug 1220426] Re: [nvidia-prime]Freeze while using touchpad

2014-08-09 Thread Carlos Fontinha
Hi,

Some issue in clevo W355SSQ
- Ubuntu 14.04.1 (last update)
- nvidia GTX 860M
- nvidia driver version 340.24 (last version)

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

Title:
  [nvidia-prime]Freeze while using touchpad

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

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


[Bug 1334189] Re: syslinux offers no OEM mode on Kubuntu Utopic Alpha 1

2014-08-09 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: gfxboot-theme-ubuntu (Ubuntu)
   Status: New = Confirmed

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

Title:
  syslinux offers no OEM mode on Kubuntu Utopic Alpha 1

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

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


[Bug 1220426] Re: [nvidia-prime]Freeze while using touchpad

2014-08-09 Thread Michael Steenbeek
Here is the output of nvidia-bug-report, as Raja requested.

** Attachment added: nvidia-bug-report.log.gz
   
https://bugs.launchpad.net/ubuntu/+source/nvidia-prime/+bug/1220426/+attachment/4173266/+files/nvidia-bug-report.log.gz

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

Title:
  [nvidia-prime]Freeze while using touchpad

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

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


[Bug 1354671] [NEW] Failed to add storage device on mako #178+

2014-08-09 Thread Alan Pope ㋛
Public bug reported:

For a few system updates recently I have seen a notification appear
immediately after flashing the device.

Failed to add storage device. Make sure the storage device is correctly
formatted.

This is fairly new and I presume is to do with the new SD Card support.
Mako of course has no such slot, so the message shouldn't appear.

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

** Attachment added: device-2014-08-09-110140.png
   
https://bugs.launchpad.net/bugs/1354671/+attachment/4173267/+files/device-2014-08-09-110140.png

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

Title:
  Failed to add storage device on mako #178+

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

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


[Bug 651104] Re: intel graphics turbo disabled

2014-08-09 Thread sashoalm
I'm getting the same error, but it later says reenabling gpu turbo.

This is the output of sudo grep i915 /var/log/dmesg:

[3.769048] intel ips :00:1f.6: failed to get i915 symbols, graphics 
turbo disabled
[4.850037] i915 :00:02.0: setting latency timer to 64
[5.291272] i915 :00:02.0: irq 41 for MSI/MSI-X
[6.160179] [drm] Initialized i915 1.6.0 20080730 for :00:02.0 on minor 0
[9.289702] intel ips :00:1f.6: i915 driver attached, reenabling gpu 
turbo

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

Title:
  intel graphics turbo disabled

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

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


[Bug 577377] Re: DVB-T USB tuner dib0700 wrong initiated (no cold state step)

2014-08-09 Thread sander
I can confirm the reboot issue is still not fixed in Ubuntu 14.04.

When rebooting the computer:

[6.921888] DiB0070: successfully identified
[6.947049] Registered IR keymap rc-dib0700-rc5
[6.947175] input: IR-receiver inside an USB DVB receiver as 
/devices/pci:00/:00:1a.0/usb1/1-1/1-1.5/rc/rc0/input16
[6.947235] rc0: IR-receiver inside an USB DVB receiver as 
/devices/pci:00/:00:1a.0/usb1/1-1/1-1.5/rc/rc0
[6.947392] dvb-usb: schedule remote query interval to 50 msecs.
[6.947393] dvb-usb: Terratec Cinergy T USB XXS (HD)/ T3 successfully 
initialized and connected.
[6.947508] dib0700: rc submit urb failed
[6.947583] usbcore: registered new interface driver dvb_usb_dib0700

Workaround as described in this thread still works: deconnecting the USB
stick and reconnect it again.

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

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

Title:
  DVB-T USB tuner dib0700 wrong initiated (no cold state step)

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

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


[Bug 1311399] Re: Ubuntu 14.04 forgets Display Settings from monitors.xml / xorg.conf (Dual-Screen Setup)

2014-08-09 Thread Timo Stoll
*** This bug is a duplicate of bug 1292398 ***
https://bugs.launchpad.net/bugs/1292398

Another workaround:

Make the necessary changes to the layout with ARandR, save layout as
yadayada.sh (or whatever name you prefer), define yadayada.sh as a
startup application (after making it executable).

You will have messy screen layout until entering the password (with my
layout, I have to do this without seeing anything unless I turn the TV
on), but after that it should look exactly the way you want it to. At
least that's what I got.

I don't have a solution yet how to start the script before the login
screen, but this is probably no rocket science either.

I came across this workaround after I'd been facing that nasty issue
with a GeForce card, and it persisted after I used an ATI instead (at
first I'd thought it might be related to the NVidia driver in some way).

By the way, I don't have xorg.conf and monitors.xml anymore. I didn't
have monitors.xml with GeForce either, but I did have xorg.conf before.
Doesn't matter to me now.

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

Title:
  Ubuntu 14.04 forgets Display Settings from monitors.xml / xorg.conf
  (Dual-Screen Setup)

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

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


[Bug 1320456] Re: Wrong keyboard layout after login

2014-08-09 Thread FM33
Wrote a script to automate the workaround :

#!/bin/sh
sleep 5
if [ -n $(dconf read /desktop/ibus/general/preload-engines | grep eng) ]; then
   dconf write /desktop/ibus/general/preload-engines 
['xkb:fr::fra','xkb:fr:oss:fra'] 
   sleep 0.5
   compiz --replace 
fi

Customise it with your own locale and add it in startup applications.
Run dconf read /desktop/ibus/general/preload-engines in a terminal to see 
what is your actual value.

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

Title:
  Wrong keyboard layout after login

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

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


[Bug 1354124] Re: package libc6 2.19-0ubuntu6 failed to install/upgrade: el subproceso script pre-installation nuevo devolvió el código de salida de error 1

2014-08-09 Thread Andreu Correa Casablanca
I've solved the issue typing

export LD_LIBRARY_PATH=/lib/x86_64-linux-gnu:/lib/i386-linux-gnu

before doing

apt-get -f install

But this fix it's only available to people with expertise on Linux...

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

Title:
  package libc6 2.19-0ubuntu6 failed to install/upgrade: el subproceso
  script pre-installation nuevo devolvió el código de salida de error 1

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

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

[Bug 577377] Status changed to Confirmed

2014-08-09 Thread Brad Figg
This change was made by a bot.

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

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

Title:
  DVB-T USB tuner dib0700 wrong initiated (no cold state step)

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

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


[Bug 1246272] Re: Keyboard layout changing randomly

2014-08-09 Thread Sam M
*** This bug is a duplicate of bug 1240198 ***
https://bugs.launchpad.net/bugs/1240198

I have the same issue (Ubuntu 14.04 with Unity):
Swith between 'fr' and 'en'
After boot my keyboard layout seems ALWAYS ok since I was able to connect with 
my old password (Note: I changed it, but the old one contained char which had a 
different position like 'a-q' depending on the layout): It means that the 
layout is always 'fr' after startup by randomly changes to 'en' after login. 
(So I do: setxkbmap fr when this happens)
Moreover when I put my machine to idle, and then when I want to connect back, 
the layout is random too (so my old password didn't always worked)
I hope the precisions I just gave will help solve the problem ...

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

Title:
  Keyboard layout changing randomly

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

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


[Bug 1327412] Re: Delay during PXE Boot, IP-Config gives up

2014-08-09 Thread Bug Watch Updater
** Changed in: klibc (Debian)
   Status: Unknown = New

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

Title:
  Delay during PXE Boot, IP-Config gives up

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

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


[Bug 1304001] Re: xen:balloon errors in 14.04 beta

2014-08-09 Thread razboinik
also happening to me on a m3.medium
not wanting to compile a custom kernel version the only way of getting rid of 
these annoying messages was adding to /etc/rc.local:

cat /sys/devices/system/xen_memory/xen_memory0/info/current_kb 
/sys/devices/system/xen_memory/xen_memory0/target_kb

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

Title:
   xen:balloon errors in 14.04 beta

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

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


[Bug 1351590] Re: Cannot configure wi-fi in a Xubuntu live-session without logging out and back in again

2014-08-09 Thread Paul White
As of daily build 20140809, I'm seeing this an an intermittent bug.

Booting the same live USB several times will sometimes produce this bug
and sometimes it won't.


** Changed in: network-manager (Ubuntu)
   Status: Incomplete = New

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

Title:
  Cannot configure wi-fi in a Xubuntu live-session without logging out
  and back in again

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

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


[Bug 1354679] [NEW] Intitialisation of encrypted volume failed

2014-08-09 Thread lordievader
Public bug reported:

Using the Kubuntu Utopic daily iso of 2014-08-09 the option 'Guided -
use entire disk and set up encrypted LVM' fails with the following
errors:

An error occured while setting up encrypted volumes.
This probably happended because there are too many (primary) partitions in the 
partition table.
No root file system is defined.

First time the disk contained a previous install of Kubuntu, upon seeing
this error I created a new disk-label with parted and tried again. Gave
the same errors.

OS: Kubuntu 14.10 daily 2014-08-09.
Kernel: 3.16.0-6-generic x86_64
Ubiquity version: 2.19.1

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


** Tags: kubuntu luks lvm

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

Title:
  Intitialisation of encrypted volume failed

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

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


[Bug 1354680] Re: package libcuda1-331 331.38-0ubuntu7 failed to install/upgrade: cannot copy extracted data for './usr/lib/i386-linux-gnu/libcuda.so.331.38' to '/usr/lib/i386-linux-gnu/libcuda.so.331

2014-08-09 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package libcuda1-331 331.38-0ubuntu7 failed to install/upgrade: cannot
  copy extracted data for './usr/lib/i386-linux-gnu/libcuda.so.331.38'
  to '/usr/lib/i386-linux-gnu/libcuda.so.331.38.dpkg-new': unexpected
  end of file or stream

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

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


[Bug 1354680] [NEW] package libcuda1-331 331.38-0ubuntu7 failed to install/upgrade: cannot copy extracted data for './usr/lib/i386-linux-gnu/libcuda.so.331.38' to '/usr/lib/i386-linux-gnu/libcuda.so.3

2014-08-09 Thread zeiseiwogn
Public bug reported:

Install Error by Update.

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: libcuda1-331 331.38-0ubuntu7
ProcVersionSignature: Ubuntu 3.13.0-32.57-generic 3.13.11.4
Uname: Linux 3.13.0-32-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.14.1-0ubuntu3.3
Architecture: amd64
Date: Sat Aug  9 12:52:19 2014
Dependencies:
 gcc-4.9-base 4.9-20140406-0ubuntu1
 libc6 2.19-0ubuntu6.1
 libgcc1 1:4.9-20140406-0ubuntu1
 multiarch-support 2.19-0ubuntu6.1
 zlib1g 1:1.2.8.dfsg-1ubuntu1
DuplicateSignature: package:libcuda1-331:331.38-0ubuntu7:cannot copy extracted 
data for './usr/lib/i386-linux-gnu/libcuda.so.331.38' to 
'/usr/lib/i386-linux-gnu/libcuda.so.331.38.dpkg-new': unexpected end of file or 
stream
ErrorMessage: cannot copy extracted data for 
'./usr/lib/i386-linux-gnu/libcuda.so.331.38' to 
'/usr/lib/i386-linux-gnu/libcuda.so.331.38.dpkg-new': unexpected end of file or 
stream
InstallationDate: Installed on 2014-07-31 (8 days ago)
InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release amd64 (20140722.2)
SourcePackage: nvidia-graphics-drivers-331
Title: package libcuda1-331 331.38-0ubuntu7 failed to install/upgrade: cannot 
copy extracted data for './usr/lib/i386-linux-gnu/libcuda.so.331.38' to 
'/usr/lib/i386-linux-gnu/libcuda.so.331.38.dpkg-new': unexpected end of file or 
stream
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package trusty

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

Title:
  package libcuda1-331 331.38-0ubuntu7 failed to install/upgrade: cannot
  copy extracted data for './usr/lib/i386-linux-gnu/libcuda.so.331.38'
  to '/usr/lib/i386-linux-gnu/libcuda.so.331.38.dpkg-new': unexpected
  end of file or stream

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

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


[Bug 1350435] Re: tcg.c:1693: tcg fatal error

2014-08-09 Thread LocutusOfBorg
I got this morning a new FTBFS in a package that have been always built 
successfully in the past, just FYI
https://launchpadlibrarian.net/181879742/buildlog_ubuntu-trusty-armhf.boinc_7.4.0~nightly1~~git20140809%2Br21874~r184~ubuntu14.04.1_FAILEDTOBUILD.txt.gz

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

Title:
  tcg.c:1693: tcg fatal error

To manage notifications about this bug go to:
https://bugs.launchpad.net/launchpad-buildd/+bug/1350435/+subscriptions

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


[Bug 1350435] Re: tcg.c:1693: tcg fatal error

2014-08-09 Thread LocutusOfBorg
Interesting enough the utopic build was successful!

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

Title:
  tcg.c:1693: tcg fatal error

To manage notifications about this bug go to:
https://bugs.launchpad.net/launchpad-buildd/+bug/1350435/+subscriptions

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


[Bug 1354679] Re: Intitialisation of encrypted volume failed

2014-08-09 Thread Ubuntu QA Website
This bug has been reported on the Ubuntu ISO testing tracker.

A list of all reports related to this bug can be found here:
http://iso.qa.ubuntu.com/qatracker/reports/bugs/1354679

** Tags added: iso-testing

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

Title:
  Intitialisation of encrypted volume failed

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

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


[Bug 1059275] Re: reset now deprecated, man page not updated

2014-08-09 Thread Dmitriy Simplehuman Fedorov
This bug is still actual for Utopic

** Tags added: trusty utopic

** Tags added: manpage

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

Title:
  reset now deprecated, man page not updated

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

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


[Bug 1314367] Re: Flickering with Ubuntu 14.04 and nvidia card reappeared

2014-08-09 Thread Ashley Whetter
This was a bug in the nvidia driver: 
https://devtalk.nvidia.com/default/topic/751552/any-opengl-window-shown-on-all-workspaces-occludes-other-applications/
It should be fixed in 340.24.

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

Title:
  Flickering with Ubuntu 14.04 and nvidia card reappeared

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

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


[Bug 1354684] Re: lxpanel,lubuntu 14.10 64 bit,crashes on loggin

2014-08-09 Thread Apport retracing service
*** This bug is a duplicate of bug 1223184 ***
https://bugs.launchpad.net/bugs/1223184

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

** Attachment removed: CoreDump.gz
   
https://bugs.launchpad.net/bugs/1354684/+attachment/4173278/+files/CoreDump.gz

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/1354684/+attachment/4173281/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/1354684/+attachment/4173282/+files/ProcStatus.txt

** This bug has been marked a duplicate of private bug 1223184

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  lxpanel,lubuntu 14.10 64 bit,crashes on loggin

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

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


[Bug 1248174] Re: The Ubuntu colour palette in Inkscape is different from the one in design.ubuntu.com, making many logos to be in the wrong colour at this time

2014-08-09 Thread jazzynico
** Changed in: inkscape
   Status: Triaged = In Progress

** Changed in: inkscape
Milestone: None = 0.91

** Changed in: inkscape
 Assignee: (unassigned) = jazzynico (jazzynico)

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

Title:
  The Ubuntu colour palette in Inkscape is different from the one in
  design.ubuntu.com, making many logos to be in the wrong colour at this
  time

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

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


[Bug 1304434] Re: indicator-printers not working on Ubuntu 14.04

2014-08-09 Thread Peter Sewell
This has stopped working again!

Anyone else found that the fix has stopped working?

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

Title:
  indicator-printers not working on Ubuntu 14.04

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

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


[Bug 1325086] Re: Not able Print a test page after adding a HP OfficeJet 5610 All-in-one printer not being seen

2014-08-09 Thread Pascal De Vuyst
You seem to be using the wrong printer driver HP OfficeJet 5110xi -
CUPS+Gutenprint v5.2.10-pre2 for your HP OfficeJet 5610 printer, change
it to: HP Officejet 5600 Series, hpcups 3.14.3 [en]. Does that solve
your problem?

** Changed in: system-config-printer (Ubuntu)
   Status: New = Incomplete

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

Title:
  Not able Print a test page after adding a HP OfficeJet 5610 All-in-one
  printer not being seen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/system-config-printer/+bug/1325086/+subscriptions

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


[Bug 1354270] Re: [ASRock G31M-S] hibernate/resume failure [non-free: fglrx]

2014-08-09 Thread Christopher M. Penalver
Rodney Navaratil, the default linux kernel driver for your card would be radeon 
as verified by:
lspci -vvnn

Despite this, sending to fglrx-installer for review.

** Description changed:

  Ubuntu 14.10 resume and hibernation seems to be crashing daily.
  Disabling screen lock does not seem to help.
+ 
+ WORKAROUND: Use default radeon driver.
  
  ProblemType: KernelOops
  DistroRelease: Ubuntu 14.10
  Package: linux-image-3.16.0-6-generic 3.16.0-6.11
  ProcVersionSignature: Ubuntu 3.16.0-6.11-generic 3.16.0-rc7
  Uname: Linux 3.16.0-6-generic x86_64
  NonfreeKernelModules: fglrx
  Annotation: This occured during a previous hibernate and prevented it from 
resuming properly.
  ApportVersion: 2.14.5-0ubuntu3
  Architecture: amd64
  AudioDevicesInUse:
-  USERPID ACCESS COMMAND
-  /dev/snd/controlC0:  rodney22706 F pulseaudio
-  /dev/snd/controlC1:  rodney22706 F pulseaudio
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  rodney22706 F pulseaudio
+  /dev/snd/controlC1:  rodney22706 F pulseaudio
  Date: Wed Aug  6 14:38:09 2014
  DuplicateSignature: hibernate/resume:To Be Filled By O.E.M. To Be Filled By 
O.E.M.:P2.10
  ExecutablePath: /usr/share/apport/apportcheckresume
  Failure: hibernate/resume
  HibernationDevice: RESUME=UUID=c066234c-fbcc-40b7-adca-61f3b01014ac
  InstallationDate: Installed on 2012-07-19 (750 days ago)
  InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Alpha amd64 (20120718.1)
  InterpreterPath: /usr/bin/python3.4
  IwConfig:
-  eth0  no wireless extensions.
-  
-  lono wireless extensions.
+  eth0  no wireless extensions.
+ 
+  lono wireless extensions.
  MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
  ProcCmdline: /usr/bin/python3 /usr/share/apport/apportcheckresume
  ProcEnviron:
-  TERM=linux
-  PATH=(custom, no user)
+  TERM=linux
+  PATH=(custom, no user)
  ProcFB:
-  
+ 
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-6-generic 
root=UUID=d8803188-1883-4df6-b5d8-53fde0e34bfa ro quiet splash
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
-  linux-restricted-modules-3.16.0-6-generic N/A
-  linux-backports-modules-3.16.0-6-generic  N/A
-  linux-firmware1.132
+  linux-restricted-modules-3.16.0-6-generic N/A
+  linux-backports-modules-3.16.0-6-generic  N/A
+  linux-firmware1.132
  RfKill:
-  
+ 
  SourcePackage: linux
  SystemImageInfo: Error: [Errno 2] No such file or directory: 
'system-image-cli'
  Title: [To Be Filled By O.E.M. To Be Filled By O.E.M.] hibernate/resume 
failure [non-free: fglrx]
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:
-  
+ 
  dmi.bios.date: 05/16/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: P2.10
  dmi.board.name: G31M-S.
  dmi.board.vendor: ASRock
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP2.10:bd05/16/2012:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnG31M-S.:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.name: To Be Filled By O.E.M.
  dmi.product.version: To Be Filled By O.E.M.
  dmi.sys.vendor: To Be Filled By O.E.M.

** Package changed: linux (Ubuntu) = fglrx-installer (Ubuntu)

** Changed in: fglrx-installer (Ubuntu)
   Importance: Medium = Low

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

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

Title:
  [ASRock G31M-S] hibernate/resume failure [non-free: fglrx]

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

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

[Bug 1297849] Re: VPN Connection fails after last upgrade on 14.04

2014-08-09 Thread adasiko
#34

The minimal workaround I used was this:
1. Delete ~/.gconf/apps/nm-applet/%gconf.xml (file attached).
2. Log out then log back in.
So far the file has not reappeared.

Yes, it's working. But it breaks by itself :(

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

Title:
  VPN Connection fails after last upgrade on 14.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager-openconnect/+bug/1297849/+subscriptions

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


[Bug 1325086] Re: Not able Print a test page after adding a HP OfficeJet 5610 All-in-one printer not being seen

2014-08-09 Thread Pascal De Vuyst
If your printer was automatically and incorrectly set up with the 5110xi
driver please include the following information:
https://wiki.ubuntu.com/DebuggingPrintingProblems#USB_printer, starting
from point 8.

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

Title:
  Not able Print a test page after adding a HP OfficeJet 5610 All-in-one
  printer not being seen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/system-config-printer/+bug/1325086/+subscriptions

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


[Bug 1248174] Re: The Ubuntu colour palette in Inkscape is different from the one in design.ubuntu.com, making many logos to be in the wrong colour at this time

2014-08-09 Thread jazzynico
Attached is a new version of the palette based on the file posted comment #17 
and updated with Alberto's tint calculator (thanks a lot, Alberto!).
Alberto, would you be willing to confirm that the new file is correct and can 
be committed in Inkscape please?

** Attachment added: UbuntuBranding-screen+tints-v2.gpl
   
https://bugs.launchpad.net/inkscape/+bug/1248174/+attachment/4173283/+files/UbuntuBranding-screen%2Btints-v2.gpl

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

Title:
  The Ubuntu colour palette in Inkscape is different from the one in
  design.ubuntu.com, making many logos to be in the wrong colour at this
  time

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

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


[Bug 1315221] Re: 8086:08b1 (rev 6b) [Dell XPS 13 9333] iwlwifi regularly loses connection/becomes unusable on Intel 7260

2014-08-09 Thread Christopher M. Penalver
eric, thank you for your comment. Unfortunately, this bug report is not scoped 
to you, or your problem. So your hardware and problem may be tracked, could you 
please file a new report with Ubuntu by executing the following in a terminal 
while booted into the default Ubuntu kernel (not a mainline one) via:
ubuntu-bug linux

For more on this, please read the official Ubuntu documentation:
Ubuntu Bug Control and Ubuntu Bug Squad: 
https://wiki.ubuntu.com/Bugs/BestPractices#X.2BAC8-Reporting.Focus_on_One_Issue
Ubuntu Kernel Team: 
https://wiki.ubuntu.com/KernelTeam/KernelTeamBugPolicies#Filing_Kernel_Bug_reports
Ubuntu Community: 
https://help.ubuntu.com/community/ReportingBugs#Bug_reporting_etiquette

When opening up the new report, please feel free to subscribe me to it.

Thank you for your understanding.

Helpful bug reporting tips:
https://wiki.ubuntu.com/ReportingBugs

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

Title:
  8086:08b1 (rev 6b) [Dell XPS 13 9333] iwlwifi regularly loses
  connection/becomes unusable on Intel 7260

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

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


[Bug 651104] Re: intel graphics turbo disabled

2014-08-09 Thread Christopher M. Penalver
sashoalm, thank you for your comment. Unfortunately, this bug report is not 
scoped to you, or your problem. So your hardware and problem may be tracked, 
could you please file a new report with Ubuntu by executing the following in a 
terminal while booted into the default Ubuntu kernel (not a mainline one) via:
ubuntu-bug linux

For more on this, please read the official Ubuntu documentation:
Ubuntu Bug Control and Ubuntu Bug Squad: 
https://wiki.ubuntu.com/Bugs/BestPractices#X.2BAC8-Reporting.Focus_on_One_Issue
Ubuntu Kernel Team: 
https://wiki.ubuntu.com/KernelTeam/KernelTeamBugPolicies#Filing_Kernel_Bug_reports
Ubuntu Community: 
https://help.ubuntu.com/community/ReportingBugs#Bug_reporting_etiquette

When opening up the new report, please feel free to subscribe me to it.

Thank you for your understanding.

Helpful bug reporting tips:
https://wiki.ubuntu.com/ReportingBugs

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

Title:
  intel graphics turbo disabled

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

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


[Bug 1311975] Re: ocl-icd-libopencl1 should conflicts, replaces nvidia-opencl-dev not nvidia-libopencl1-dev

2014-08-09 Thread Graham Inggs
** Patch added: ocl-icd-utopic.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/nvidia-cuda-toolkit/+bug/1311975/+attachment/4173284/+files/ocl-icd-utopic.debdiff

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

Title:
  ocl-icd-libopencl1 should conflicts,replaces nvidia-opencl-dev not
  nvidia-libopencl1-dev

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-cuda-toolkit/+bug/1311975/+subscriptions

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


[Bug 1354234] Re: 14.04: PANIC with dcache shrink list corruption? problem

2014-08-09 Thread Christopher M. Penalver
** Tags added: cherry-pick

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

Title:
  14.04: PANIC with dcache shrink list corruption? problem

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

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


[Bug 467654] Re: Wrong yellowish colors printing with Epson Stylus Photo R220

2014-08-09 Thread Pascal De Vuyst
Sorry for the late reply.

Ubuntu 9.10 is no longer supported, can you try a supported release:
preferably 14.04LTS with newer gutenprint.

Thanks in advance,
Pascal

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

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

Title:
  Wrong yellowish colors printing with Epson Stylus Photo R220

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

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


[Bug 1354688] [NEW] nvidia-331-updates-uvm 331.38-0ubuntu7.1: nvidia-331-updates-uvm kernel module failed to build, I fresh the new linux image and source

2014-08-09 Thread Emery
Public bug reported:

I fresh the new linux image and source

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: nvidia-331-updates-uvm 331.38-0ubuntu7.1
ProcVersionSignature: Ubuntu 3.13.0-32.57-lowlatency 3.13.11.4
Uname: Linux 3.13.0-32-lowlatency x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.14.1-0ubuntu3.3
Architecture: amd64
DKMSKernelVersion: 3.13.0-33-lowlatency
Date: Sat Aug  9 14:15:43 2014
InstallationDate: Installed on 2014-08-06 (2 days ago)
InstallationMedia: Ubuntu-Studio 14.04 LTS Trusty Tahr - Release amd64 
(20140416.3)
PackageVersion: 331.38-0ubuntu7.1
SourcePackage: nvidia-graphics-drivers-331-updates
Title: nvidia-331-updates-uvm 331.38-0ubuntu7.1: nvidia-331-updates-uvm kernel 
module failed to build
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package trusty

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

Title:
  nvidia-331-updates-uvm 331.38-0ubuntu7.1: nvidia-331-updates-uvm
  kernel module failed to build, I fresh the new linux image and source

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

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


  1   2   3   4   >