[Bug 1887826] Re: CURLFile POST missing Content-Length header

2020-09-30 Thread Stephen Rees
Verified as fixed.

The instructions on the listed wikipage
(https://wiki.ubuntu.com/Testing/EnableProposed) for testing a package
from proposed were complete rubbish. Couldn't get those to work any way
I could imagine. I finally got it installed using the SRU Verification
wiki page for instructions -- just adding the one line to sources.list.

Steps to verify:
- removed PHP 7.4.9 and external PPA it was sourced from
- reinstalled PHP 7.4.3 from normal ubuntu packages
- reproduced problem
- removed PHP 7.4.3
- enabled proposed repo
- reinstalled PHP 7.4.3 from -proposed
- verified the issue is corrected!

Thanks!

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

Title:
  CURLFile POST missing Content-Length header

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

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

[Bug 1887826] Re: CURLFile POST missing Content-Length header

2020-09-30 Thread Stephen Rees
Greater specificity:
Also included php7.4-curl with the above testing, and the specific version of 
packages tested were
(7.4.3-4ubuntu2.3)

** Tags removed: verification-needed-focal
** Tags added: verification-done-focal

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

Title:
  CURLFile POST missing Content-Length header

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

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

[Bug 1887826] Re: CURLFile POST missing Content-Length header

2020-07-20 Thread Stephen Rees
I'm not quite sure what to say about how to reproduce.
POST a file using PHP-cURL to a server that doesn't support chunked mode.

I'm using https://sandbox.zenodo.com, but this requires a free account and 
utilizing their API, which seems beyond the scope of what I should put in a 
comment. Here is a sample similar to what I'm doing, with url/token/file 
removed:
-
 'POST,
   CURLOPT_RETURNTRANSFER => true,
   CURLOPT_HTTPHEADER => [
  'Authorization: Bearer ' . $access_token,
  'Content-Type: multipart/form-data',
   ],
   CURLOPT_SSL_VERIFYHOST => 2,
   CURLOPT_FOLLOWLOCATION => true,
   CURLOPT_POSTREDIR  => 3,
   CURLINFO_HEADER_OUT=> true,
   CURLOPT_HTTP_VERSION   => CURL_HTTP_VERSION_1_1,//this has no effect
];
$file  = curl_file_create(realpath($file), null, basename($file));
$data = ['file' => $file, 'name' => basename($file)];
$options[CURLOPT_POSTFIELDS] = $data;
curl_setopt_array($ch, $options);
$response   = curl_exec($ch);
$curl_info  = curl_getinfo($ch);
$curl_error = curl_error($ch);
curl_close($ch);

This works in Ubuntu 18, but not Ubuntu 20. To make it work in 20 I have to 
additionally empty the Transfer-Enconding header and determine and set the 
Content-Length header. This should not be necessary:
$options[CURLOPT_HTTPHEADER][] = "Transfer-Encoding: ";
//not sure how to determine $size
$options[CURLOPT_HTTPHEADER][] = "Content-Length: $size"

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

Title:
  CURLFile POST missing Content-Length header

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php7.4/+bug/1887826/+subscriptions

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

[Bug 1887826] [NEW] CURLFile POST missing Content-Length header

2020-07-16 Thread Stephen Rees
Public bug reported:

See https://bugs.php.net/bug.php?id=79013 for this exact issue.

Upgrading Ubuntu's supported PHP version to 7.4.4 *should* fix the
issue, or backporting the patch in the link I included.

PHP7.4.3 has an issue with cURL where it is defaulting to chunked mode
when transferring a file via POST. Setting the HTTP version does not
impact it. For third-party servers that don't support chunked but expect
a content-length, there is no way to make it work.

package: php7.4 (7.4.3-4ubuntu2.2)(possibly related, libapache2-mod-php7.4d, 
php7.4-curl)
release: Ubuntu 20.04 LTS

Expect: PHP-cURL to POST HTTP1.1 multipart/form-data with automatically 
generated Content-Length and empty Transfer-Encoding headers.
Actual: PHP-cURL POSTS HTTP1.1 multipart/form-data with Transfer-Encoding: 
chunked and empty Content-Length headers.

** Affects: php7.4 (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/1887826

Title:
  CURLFile POST missing Content-Length header

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php7.4/+bug/1887826/+subscriptions

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

[Bug 701544] Re: phpunit requires PHP_CodeCoverage

2014-12-29 Thread Stephen Rees-Carter
I'd suggest you give up on using the Ubuntu package and simply install
it manually. The instructions are very easy to follow:
https://phpunit.de/manual/current/en/installation.html

Or switch to using Composer which is basically a Package Manager for
PHP:
https://phpunit.de/manual/current/en/installation.html#installation.composer

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

Title:
  phpunit requires PHP_CodeCoverage

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pear-phpunit-channel/+bug/701544/+subscriptions

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


[Bug 1347329] Re: testdrive does not allocate enough hdd space for ubuntu-studio

2014-08-17 Thread Stephen Rees-Carter
I can confirm this for Ubuntu Desktop on 14.04 too. The default comes
with 6G, but the Ubuntu Desktop installer requires 7.1G of space.  You
need to edit /etc/testdriverc to say 8G+ before it will allow you to
install it.

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

Title:
  testdrive does not allocate enough hdd space for ubuntu-studio

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

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


[Bug 1327531] [NEW] run-one-constantly waiting for previous instances to end

2014-06-07 Thread Stephen Rees-Carter
Public bug reported:

I'm trying to use run-one-constantly within a crontab to ensure a
daemon script is always running. However, it seems that run-one-
constantly doesn't stop quietly like run-one when it's already running,
it just keeps runing without doing anything until the previous command
finishes. If this is triggered by a frequent cron, you'd end up with a
lot of processes doing nothing.

See the attached screenshot, all of the commands at the bottom are
'running' - but only one is being processed. You can see all of them in
the ps aux at the top.

Let me know if you need any debug information.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: run-one 1.17-0ubuntu1
ProcVersionSignature: Ubuntu 3.13.0-29.53-generic 3.13.11.2
Uname: Linux 3.13.0-29-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.2
Architecture: amd64
CurrentDesktop: Unity
Date: Sat Jun  7 21:48:33 2014
InstallationDate: Installed on 2014-04-04 (64 days ago)
InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Beta amd64 (20140326)
PackageArchitecture: all
SourcePackage: run-one
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: run-one (Ubuntu)
 Importance: Undecided
 Status: New


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

** Attachment added: run-one-constantly.png
   
https://bugs.launchpad.net/bugs/1327531/+attachment/4126990/+files/run-one-constantly.png

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

Title:
  run-one-constantly waiting for previous instances to end

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/run-one/+bug/1327531/+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 1327531] [NEW] run-one-constantly waiting for previous instances to end

2014-06-07 Thread Stephen Rees-Carter
Public bug reported:

I'm trying to use run-one-constantly within a crontab to ensure a
daemon script is always running. However, it seems that run-one-
constantly doesn't stop quietly like run-one when it's already running,
it just keeps runing without doing anything until the previous command
finishes. If this is triggered by a frequent cron, you'd end up with a
lot of processes doing nothing.

See the attached screenshot, all of the commands at the bottom are
'running' - but only one is being processed. You can see all of them in
the ps aux at the top.

Let me know if you need any debug information.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: run-one 1.17-0ubuntu1
ProcVersionSignature: Ubuntu 3.13.0-29.53-generic 3.13.11.2
Uname: Linux 3.13.0-29-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.2
Architecture: amd64
CurrentDesktop: Unity
Date: Sat Jun  7 21:48:33 2014
InstallationDate: Installed on 2014-04-04 (64 days ago)
InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Beta amd64 (20140326)
PackageArchitecture: all
SourcePackage: run-one
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: run-one (Ubuntu)
 Importance: Undecided
 Status: New


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

** Attachment added: run-one-constantly.png
   
https://bugs.launchpad.net/bugs/1327531/+attachment/4126990/+files/run-one-constantly.png

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

Title:
  run-one-constantly waiting for previous instances to end

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

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


[Bug 1248100] Re: 046d:c52b [ThinkPad L520] Logitech Unified Receiver very laggy

2013-12-01 Thread Stephen Rees-Carter
I actually recently updated my BIOS for another bug, but it makes no
difference, unfortunately...

8GET46WW (1.23 )
09/16/2013

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

Title:
  046d:c52b [ThinkPad L520] Logitech Unified Receiver very laggy

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

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


[Bug 903558] Re: [Lenovo ThinkPad L520] Unable to boot 12.04 without 'noapic' flag enabled in GRUB

2013-11-18 Thread Stephen Rees-Carter
Wow, Lenovo finally decided to put out a BIOS update!

Just installed it, and the flag is no longer needed to boot. Time to
close this issue :-)

Thanks for all the help to everyone involved.

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

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

Title:
  [Lenovo ThinkPad L520] Unable to boot 12.04 without 'noapic' flag
  enabled in GRUB

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

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


[Bug 1050900] Re: Unable to boot without 'noapic' boot flag

2013-11-18 Thread Stephen Rees-Carter
*** This bug is a duplicate of bug 903558 ***
https://bugs.launchpad.net/bugs/903558

** This bug has been marked a duplicate of bug 903558
   [Lenovo ThinkPad L520] Unable to boot 12.04 without 'noapic' flag enabled in 
GRUB

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

Title:
  Unable to boot without 'noapic' boot flag

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

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


[Bug 1248100] Re: Logitech Unified Receiver very laggy

2013-11-07 Thread Stephen Rees-Carter
Scratch that - it's now started to lag again, even on
3.12.0-031200-generic...

** Tags removed: kernel-fixed-upstream
** Tags added: kernel-bug-exists-upstream

** Changed in: linux (Ubuntu)
   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/1248100

Title:
  Logitech Unified Receiver very laggy

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

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


[Bug 1247709] Re: I lose keyboard an mouse responsiveness

2013-11-05 Thread Stephen Rees-Carter
Is this causing your mouse pointer to not move much at all despite
moving the actual mouse heaps, and your keyboard to ignore key presses
and then repeat heaps?

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

Title:
  I lose keyboard an mouse responsiveness

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

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


[Bug 1248100] [NEW] Logitech Unified Receiver very laggy

2013-11-05 Thread Stephen Rees-Carter
Public bug reported:

Since upgrading to 13.10, my wireless Logitech keyboard and mouse have
been very laggy and quite unusable. The mouse barely moves or responds
most of the time, and the keyboard either ignores input or gets stuck on
a character, or sequence of characters, and repeats them constantly.

They were both working in 13.04, but since upgrading via a fresh
install, to 13.10, they won't work.

I found a similar sounding bug
(https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1194649) which
sounded promising, but everyone has reported that their issue was fixed,
so I decided it might be better to report a new one since my issue isn't
fixed. I'm fully updated via apt-get with no fixes.

Let me know what I can do to help debug the issue.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: linux-image-3.11.0-12-generic 3.11.0-12.19 [modified: 
boot/vmlinuz-3.11.0-12-generic]
ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
Uname: Linux 3.11.0-12-generic x86_64
ApportVersion: 2.12.5-0ubuntu2.1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  valorin2420 F pulseaudio
Date: Tue Nov  5 21:05:09 2013
HibernationDevice: RESUME=UUID=20653816-c79a-43a2-bd96-aab0af013acf
InstallationDate: Installed on 2013-10-29 (7 days ago)
InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 (20131016.1)
MachineType: LENOVO 7859CTO
MarkForUpload: True
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-12-generic 
root=UUID=416f70c3-ac4e-4e00-a8aa-56a37d187587 ro quiet splash noapic 
vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-3.11.0-12-generic N/A
 linux-backports-modules-3.11.0-12-generic  N/A
 linux-firmware 1.116
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 11/04/2011
dmi.bios.vendor: LENOVO
dmi.bios.version: 8GET38WW (1.15 )
dmi.board.name: 7859CTO
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvr8GET38WW(1.15):bd11/04/2011:svnLENOVO:pn7859CTO:pvrThinkPadL520:rvnLENOVO:rn7859CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 7859CTO
dmi.product.version: ThinkPad L520
dmi.sys.vendor: LENOVO

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


** Tags: amd64 apport-bug saucy

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

Title:
  Logitech Unified Receiver very laggy

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

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


[Bug 1248100] Re: Logitech Unified Receiver very laggy

2013-11-05 Thread Stephen Rees-Carter
Seems to be all fixed in kernel v3.12. :-)

** Tags added: kernel-fixed-upstream

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

Title:
  Logitech Unified Receiver very laggy

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

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


[Bug 1247709] Re: I lose keyboard an mouse responsiveness

2013-11-05 Thread Stephen Rees-Carter
Take a look at this bug, since I think it's the same issue:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1248100

As suggested in that one, try upgrading to the latest mainline kernel
(v3.12), like I did, and see if it fixes it. If so, then mark this bug
as a duplicate of that one, so they can be tracked together and fixed in
the main distro kernel version.

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

Title:
  I lose keyboard an mouse responsiveness

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

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


[Bug 1248100] Re: Logitech Unified Receiver very laggy

2013-11-05 Thread Stephen Rees-Carter
Odd... I just rebooted back into 3.11.0-12-generic for another bug, and the 
keyboard and mouse are working fine.
No clue why, since this was the kernel I was running before when it wasn't 
working.

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

Title:
  Logitech Unified Receiver very laggy

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

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


[Bug 903558] IwConfig.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: IwConfig.txt
   
https://bugs.launchpad.net/bugs/903558/+attachment/3900987/+files/IwConfig.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] CurrentDmesg.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: CurrentDmesg.txt
   
https://bugs.launchpad.net/bugs/903558/+attachment/3900986/+files/CurrentDmesg.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] BootDmesg.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: BootDmesg.txt
   
https://bugs.launchpad.net/bugs/903558/+attachment/3900984/+files/BootDmesg.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] Lsusb.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: Lsusb.txt
   https://bugs.launchpad.net/bugs/903558/+attachment/3900989/+files/Lsusb.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] ProcInterrupts.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: ProcInterrupts.txt
   
https://bugs.launchpad.net/bugs/903558/+attachment/3900991/+files/ProcInterrupts.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] Lspci.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: Lspci.txt
   https://bugs.launchpad.net/bugs/903558/+attachment/3900988/+files/Lspci.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] AlsaInfo.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: AlsaInfo.txt
   
https://bugs.launchpad.net/bugs/903558/+attachment/3900980/+files/AlsaInfo.txt

** Description changed:

  Since Ubuntu 11.04 my Thinkpad L520 i7 has required the 'noapic' boot
  flag to be set in order to boot successfully. When I first upgraded to
  12.04 on 2011-12-13 this flag was not required to boot into 12.04. But
  an update sometime in January 2012 has caused a regression somewhere and
  now the 'noapic' flag is again required.
  
  This is quite frustraiting and will mean any new users who don't know
  anything about boot flags will be unable to install Ubuntu on their
  laptops.
  
  Also note, I also suffered from another bug which broke my primary laptop 
display on boot. But that has now been fixed in an upstream kernel:
  https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/912992
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: linux-image-3.2.0-4-generic 3.2.0-4.10
  ProcVersionSignature: Ubuntu 3.2.0-4.10-generic 3.2.0-rc5
  Uname: Linux 3.2.0-4-generic x86_64
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
  ApportVersion: 1.90-0ubuntu1
  Architecture: amd64
  ArecordDevices:
    List of CAPTURE Hardware Devices 
   card 0: PCH [HDA Intel PCH], device 0: ALC269VB Analog [ALC269VB Analog]
     Subdevices: 1/1
     Subdevice #0: subdevice #0
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  valorin2353 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'PCH'/'HDA Intel PCH at 0xf090 irq 47'
     Mixer name : 'Intel CougarPoint HDMI'
     Components : 'HDA:10ec0269,17aa21de,00100100 
HDA:80862805,80860101,0010'
     Controls  : 29
     Simple ctrls  : 12
  Card29.Amixer.info:
   Card hw:29 'ThinkPadEC'/'ThinkPad Console Audio Control at EC reg 0x30, fw 
8GHT22WW-1.04'
     Mixer name : 'ThinkPad EC 8GHT22WW-1.04'
     Components : ''
     Controls  : 1
     Simple ctrls  : 1
  Card29.Amixer.values:
   Simple mixer control 'Console',0
     Capabilities: pswitch pswitch-joined penum
     Playback channels: Mono
     Mono: Playback [on]
  CheckboxSubmission: d98e517e10fca0c16089cb8e9d3fc2f7
  CheckboxSystem: bb422ca46d02494cdbc459927a98bc2f
  Date: Tue Dec 13 16:42:16 2011
  EcryptfsInUse: Yes
  HibernationDevice: RESUME=UUID=2853d6a5-ed73-4e23-ba37-9f1aa39c3b15
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
  MachineType: LENOVO 7859CTO
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-generic 
root=UUID=55f5d1a1-8ada-4f3e-8284-93be58c6d27d ro quiet splash noapic nomodeset 
vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.2.0-4-generic N/A
   linux-backports-modules-3.2.0-4-generic  N/A
   linux-firmware   1.62
  SourcePackage: linux
  StagingDrivers: rts_pstor mei
  UpgradeStatus: Upgraded to precise on 2011-12-13 (0 days ago)
  dmi.bios.date: 06/07/2011
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8GET33WW (1.10 )
  dmi.board.name: 7859CTO
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr8GET33WW(1.10):bd06/07/2011:svnLENOVO:pn7859CTO:pvrThinkPadL520:rvnLENOVO:rn7859CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 7859CTO
  dmi.product.version: ThinkPad L520
  dmi.sys.vendor: LENOVO
  --- 
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2013-10-29 (7 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  MarkForUpload: True
  Package: linux (not installed)
  ProcEnviron:
   LANGUAGE=en_AU:en
   TERM=screen
   PATH=(custom, no user)
   LANG=en_AU.UTF-8
   SHELL=/bin/bash
  Tags:  saucy
  Uname: Linux 3.12.0-031200-generic x86_64
  UnreportableReason: The running kernel is not an Ubuntu kernel
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:
  --- 
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  valorin2586 F pulseaudio
  DistroRelease: Ubuntu 13.10
  HibernationDevice: RESUME=UUID=20653816-c79a-43a2-bd96-aab0af013acf
  InstallationDate: Installed on 2013-10-29 (7 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  MachineType: LENOVO 7859CTO
  MarkForUpload: True
  Package: linux (not installed)
  ProcEnviron:
   LANGUAGE=en_AU:en
   TERM=screen
   PATH=(custom, no user)
   LANG=en_AU.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-12-generic 
root=UUID=416f70c3-ac4e-4e00-a8aa-56a37d187587 ro quiet splash noapic 
vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
  PulseList:
   Error: 

[Bug 903558] CRDA.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: CRDA.txt
   https://bugs.launchpad.net/bugs/903558/+attachment/3900985/+files/CRDA.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] CRDA.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: CRDA.txt
   https://bugs.launchpad.net/bugs/903558/+attachment/3900997/+files/CRDA.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] ProcModules.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: ProcModules.txt
   
https://bugs.launchpad.net/bugs/903558/+attachment/3900992/+files/ProcModules.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] ProcCpuinfo.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: ProcCpuinfo.txt
   
https://bugs.launchpad.net/bugs/903558/+attachment/3900990/+files/ProcCpuinfo.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] Re: Unable to boot 12.04 without 'noapic' flag enabled in GRUB

2013-11-05 Thread Stephen Rees-Carter
The bug still exists in saucy, and I've tried it with the mainline
kernel v3.12, and it still exists.

** Tags added: apport-collected saucy

** Description changed:

  Since Ubuntu 11.04 my Thinkpad L520 i7 has required the 'noapic' boot
  flag to be set in order to boot successfully. When I first upgraded to
  12.04 on 2011-12-13 this flag was not required to boot into 12.04. But
  an update sometime in January 2012 has caused a regression somewhere and
  now the 'noapic' flag is again required.
  
  This is quite frustraiting and will mean any new users who don't know
  anything about boot flags will be unable to install Ubuntu on their
  laptops.
  
  Also note, I also suffered from another bug which broke my primary laptop 
display on boot. But that has now been fixed in an upstream kernel:
  https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/912992
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: linux-image-3.2.0-4-generic 3.2.0-4.10
  ProcVersionSignature: Ubuntu 3.2.0-4.10-generic 3.2.0-rc5
  Uname: Linux 3.2.0-4-generic x86_64
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
  ApportVersion: 1.90-0ubuntu1
  Architecture: amd64
  ArecordDevices:
    List of CAPTURE Hardware Devices 
   card 0: PCH [HDA Intel PCH], device 0: ALC269VB Analog [ALC269VB Analog]
     Subdevices: 1/1
     Subdevice #0: subdevice #0
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  valorin2353 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'PCH'/'HDA Intel PCH at 0xf090 irq 47'
     Mixer name : 'Intel CougarPoint HDMI'
     Components : 'HDA:10ec0269,17aa21de,00100100 
HDA:80862805,80860101,0010'
     Controls  : 29
     Simple ctrls  : 12
  Card29.Amixer.info:
   Card hw:29 'ThinkPadEC'/'ThinkPad Console Audio Control at EC reg 0x30, fw 
8GHT22WW-1.04'
     Mixer name : 'ThinkPad EC 8GHT22WW-1.04'
     Components : ''
     Controls  : 1
     Simple ctrls  : 1
  Card29.Amixer.values:
   Simple mixer control 'Console',0
     Capabilities: pswitch pswitch-joined penum
     Playback channels: Mono
     Mono: Playback [on]
  CheckboxSubmission: d98e517e10fca0c16089cb8e9d3fc2f7
  CheckboxSystem: bb422ca46d02494cdbc459927a98bc2f
  Date: Tue Dec 13 16:42:16 2011
  EcryptfsInUse: Yes
  HibernationDevice: RESUME=UUID=2853d6a5-ed73-4e23-ba37-9f1aa39c3b15
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
  MachineType: LENOVO 7859CTO
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-generic 
root=UUID=55f5d1a1-8ada-4f3e-8284-93be58c6d27d ro quiet splash noapic nomodeset 
vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.2.0-4-generic N/A
   linux-backports-modules-3.2.0-4-generic  N/A
   linux-firmware   1.62
  SourcePackage: linux
  StagingDrivers: rts_pstor mei
  UpgradeStatus: Upgraded to precise on 2011-12-13 (0 days ago)
  dmi.bios.date: 06/07/2011
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8GET33WW (1.10 )
  dmi.board.name: 7859CTO
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr8GET33WW(1.10):bd06/07/2011:svnLENOVO:pn7859CTO:pvrThinkPadL520:rvnLENOVO:rn7859CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 7859CTO
  dmi.product.version: ThinkPad L520
  dmi.sys.vendor: LENOVO
+ --- 
+ ApportVersion: 2.12.5-0ubuntu2.1
+ Architecture: amd64
+ DistroRelease: Ubuntu 13.10
+ InstallationDate: Installed on 2013-10-29 (7 days ago)
+ InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
+ MarkForUpload: True
+ Package: linux (not installed)
+ ProcEnviron:
+  LANGUAGE=en_AU:en
+  TERM=screen
+  PATH=(custom, no user)
+  LANG=en_AU.UTF-8
+  SHELL=/bin/bash
+ Tags:  saucy
+ Uname: Linux 3.12.0-031200-generic x86_64
+ UnreportableReason: The running kernel is not an Ubuntu kernel
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups:

** Tags removed: apport-collected precise
** Tags added: kernel-bug-exists-upstream-v3.12

** Tags added: apport-collected

** Description changed:

  Since Ubuntu 11.04 my Thinkpad L520 i7 has required the 'noapic' boot
  flag to be set in order to boot successfully. When I first upgraded to
  12.04 on 2011-12-13 this flag was not required to boot into 12.04. But
  an update sometime in January 2012 has caused a regression somewhere and
  now the 'noapic' flag is again required.
  
  This is quite frustraiting and will mean any new users who don't know
  anything about boot flags will be unable to install Ubuntu on their
  laptops.
  
  Also note, I also suffered from another bug which broke my primary laptop 
display on boot. But that has now been fixed in an upstream kernel:
  https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/912992
 

[Bug 903558] Lspci.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: Lspci.txt
   https://bugs.launchpad.net/bugs/903558/+attachment/3901000/+files/Lspci.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] AlsaInfo.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: AlsaInfo.txt
   
https://bugs.launchpad.net/bugs/903558/+attachment/3900995/+files/AlsaInfo.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] RfKill.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: RfKill.txt
   https://bugs.launchpad.net/bugs/903558/+attachment/3900993/+files/RfKill.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] CurrentDmesg.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: CurrentDmesg.txt
   
https://bugs.launchpad.net/bugs/903558/+attachment/3900998/+files/CurrentDmesg.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] AlsaInfo.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: AlsaInfo.txt
   
https://bugs.launchpad.net/bugs/903558/+attachment/3900983/+files/AlsaInfo.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] IwConfig.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: IwConfig.txt
   
https://bugs.launchpad.net/bugs/903558/+attachment/3900999/+files/IwConfig.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] Lsusb.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: Lsusb.txt
   https://bugs.launchpad.net/bugs/903558/+attachment/3901001/+files/Lsusb.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] BootDmesg.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: BootDmesg.txt
   
https://bugs.launchpad.net/bugs/903558/+attachment/3900996/+files/BootDmesg.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] ProcInterrupts.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: ProcInterrupts.txt
   
https://bugs.launchpad.net/bugs/903558/+attachment/3901003/+files/ProcInterrupts.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] UdevDb.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: UdevDb.txt
   https://bugs.launchpad.net/bugs/903558/+attachment/3900994/+files/UdevDb.txt

** Description changed:

  Since Ubuntu 11.04 my Thinkpad L520 i7 has required the 'noapic' boot
  flag to be set in order to boot successfully. When I first upgraded to
  12.04 on 2011-12-13 this flag was not required to boot into 12.04. But
  an update sometime in January 2012 has caused a regression somewhere and
  now the 'noapic' flag is again required.
  
  This is quite frustraiting and will mean any new users who don't know
  anything about boot flags will be unable to install Ubuntu on their
  laptops.
  
  Also note, I also suffered from another bug which broke my primary laptop 
display on boot. But that has now been fixed in an upstream kernel:
  https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/912992
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: linux-image-3.2.0-4-generic 3.2.0-4.10
  ProcVersionSignature: Ubuntu 3.2.0-4.10-generic 3.2.0-rc5
  Uname: Linux 3.2.0-4-generic x86_64
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
  ApportVersion: 1.90-0ubuntu1
  Architecture: amd64
  ArecordDevices:
    List of CAPTURE Hardware Devices 
   card 0: PCH [HDA Intel PCH], device 0: ALC269VB Analog [ALC269VB Analog]
     Subdevices: 1/1
     Subdevice #0: subdevice #0
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  valorin2353 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'PCH'/'HDA Intel PCH at 0xf090 irq 47'
     Mixer name : 'Intel CougarPoint HDMI'
     Components : 'HDA:10ec0269,17aa21de,00100100 
HDA:80862805,80860101,0010'
     Controls  : 29
     Simple ctrls  : 12
  Card29.Amixer.info:
   Card hw:29 'ThinkPadEC'/'ThinkPad Console Audio Control at EC reg 0x30, fw 
8GHT22WW-1.04'
     Mixer name : 'ThinkPad EC 8GHT22WW-1.04'
     Components : ''
     Controls  : 1
     Simple ctrls  : 1
  Card29.Amixer.values:
   Simple mixer control 'Console',0
     Capabilities: pswitch pswitch-joined penum
     Playback channels: Mono
     Mono: Playback [on]
  CheckboxSubmission: d98e517e10fca0c16089cb8e9d3fc2f7
  CheckboxSystem: bb422ca46d02494cdbc459927a98bc2f
  Date: Tue Dec 13 16:42:16 2011
  EcryptfsInUse: Yes
  HibernationDevice: RESUME=UUID=2853d6a5-ed73-4e23-ba37-9f1aa39c3b15
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
  MachineType: LENOVO 7859CTO
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-generic 
root=UUID=55f5d1a1-8ada-4f3e-8284-93be58c6d27d ro quiet splash noapic nomodeset 
vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.2.0-4-generic N/A
   linux-backports-modules-3.2.0-4-generic  N/A
   linux-firmware   1.62
  SourcePackage: linux
  StagingDrivers: rts_pstor mei
  UpgradeStatus: Upgraded to precise on 2011-12-13 (0 days ago)
  dmi.bios.date: 06/07/2011
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8GET33WW (1.10 )
  dmi.board.name: 7859CTO
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr8GET33WW(1.10):bd06/07/2011:svnLENOVO:pn7859CTO:pvrThinkPadL520:rvnLENOVO:rn7859CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 7859CTO
  dmi.product.version: ThinkPad L520
  dmi.sys.vendor: LENOVO
  --- 
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2013-10-29 (7 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  MarkForUpload: True
  Package: linux (not installed)
  ProcEnviron:
   LANGUAGE=en_AU:en
   TERM=screen
   PATH=(custom, no user)
   LANG=en_AU.UTF-8
   SHELL=/bin/bash
  Tags:  saucy
  Uname: Linux 3.12.0-031200-generic x86_64
  UnreportableReason: The running kernel is not an Ubuntu kernel
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:
  --- 
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  valorin2586 F pulseaudio
  DistroRelease: Ubuntu 13.10
  HibernationDevice: RESUME=UUID=20653816-c79a-43a2-bd96-aab0af013acf
  InstallationDate: Installed on 2013-10-29 (7 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  MachineType: LENOVO 7859CTO
  MarkForUpload: True
  Package: linux (not installed)
  ProcEnviron:
   LANGUAGE=en_AU:en
   TERM=screen
   PATH=(custom, no user)
   LANG=en_AU.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-12-generic 
root=UUID=416f70c3-ac4e-4e00-a8aa-56a37d187587 ro quiet splash noapic 
vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
  PulseList:
   Error: command 

[Bug 903558] UdevDb.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: UdevDb.txt
   https://bugs.launchpad.net/bugs/903558/+attachment/3901006/+files/UdevDb.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] ProcModules.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: ProcModules.txt
   
https://bugs.launchpad.net/bugs/903558/+attachment/3901004/+files/ProcModules.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] RfKill.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: RfKill.txt
   https://bugs.launchpad.net/bugs/903558/+attachment/3901005/+files/RfKill.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] WifiSyslog.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: WifiSyslog.txt
   
https://bugs.launchpad.net/bugs/903558/+attachment/3901008/+files/WifiSyslog.txt

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

** Changed in: linux (Ubuntu)
   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/903558

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] UdevLog.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: UdevLog.txt
   https://bugs.launchpad.net/bugs/903558/+attachment/3901007/+files/UdevLog.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] ProcCpuinfo.txt

2013-11-05 Thread Stephen Rees-Carter
apport information

** Attachment added: ProcCpuinfo.txt
   
https://bugs.launchpad.net/bugs/903558/+attachment/3901002/+files/ProcCpuinfo.txt

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 1248100] Re: Logitech Unified Receiver very laggy

2013-11-05 Thread Stephen Rees-Carter
Ok, after running all day on 3.11.0-12-generic, the lag is coming back. 
I'll switch to the new kernel and see if it happens on that too after a day.

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

Title:
  Logitech Unified Receiver very laggy

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

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


[Bug 1130873] [NEW] [LENOVO 7859CTO] suspend/resume failure

2013-02-20 Thread Stephen Rees-Carter
Public bug reported:

The error appeared after a successful boot. Not sure what caused it.

ProblemType: KernelOops
DistroRelease: Ubuntu 13.04
Package: linux-image-3.8.0-6-generic 3.8.0-6.13
ProcVersionSignature: Ubuntu 3.8.0-6.13-generic 3.8.0-rc7
Uname: Linux 3.8.0-6-generic x86_64
Annotation: This occured during a previous suspend and prevented it from 
resuming properly.
ApportVersion: 2.8-0ubuntu4
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  valorin2527 F pulseaudio
CRDA:
 country DE:
(2400 - 2483 @ 40), (N/A, 20)
(5150 - 5250 @ 40), (N/A, 20), NO-OUTDOOR
(5250 - 5350 @ 40), (N/A, 20), NO-OUTDOOR, DFS
(5470 - 5725 @ 40), (N/A, 26), DFS
Date: Wed Feb 20 14:39:00 2013
ExecutablePath: /usr/share/apport/apportcheckresume
Failure: suspend/resume
HibernationDevice: RESUME=UUID=ed8c2e7f-013b-4d06-a587-1d8009f6faf6
InstallationDate: Installed on 2013-01-25 (26 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Alpha amd64 (20130124)
InterpreterPath: /usr/bin/python3.3
MachineType: LENOVO 7859CTO
MarkForUpload: True
ProcCmdline: /usr/bin/python3 /usr/share/apport/apportcheckresume
ProcEnviron:
 TERM=linux
 PATH=(custom, no user)
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.8.0-6-generic 
root=UUID=59ddec27-c1aa-46f1-bb24-f08f2c369011 ro quiet splash noapic 
vt.handoff=7
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.8.0-6-generic N/A
 linux-backports-modules-3.8.0-6-generic  N/A
 linux-firmware   1.103
SourcePackage: linux
Title: [LENOVO 7859CTO] suspend/resume failure
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups:
 
dmi.bios.date: 11/04/2011
dmi.bios.vendor: LENOVO
dmi.bios.version: 8GET38WW (1.15 )
dmi.board.name: 7859CTO
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvr8GET38WW(1.15):bd11/04/2011:svnLENOVO:pn7859CTO:pvrThinkPadL520:rvnLENOVO:rn7859CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 7859CTO
dmi.product.version: ThinkPad L520
dmi.sys.vendor: LENOVO

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


** Tags: amd64 apport-kerneloops raring resume suspend

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

Title:
  [LENOVO 7859CTO] suspend/resume failure

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

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


[Bug 1099218] Re: Banshee does not start, only shows greyed out window

2013-01-22 Thread Stephen Rees-Carter
I've uninstalled it, it doesn't seem to have made a difference. Banshee is 
still crashing frequently.
I've also tried on a fresh config, but it still crashed.

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

Title:
  Banshee does not start, only shows greyed out window

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

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


[Bug 1099218] Re: Banshee does not start, only shows greyed out window

2013-01-21 Thread Stephen Rees-Carter
Sorry about the delay with replying, been busy with a 10-month old baby
at home...

It's started playing sometimes, but stopping after each track. If I use it 
enough it gets to the point where it crashes on start.
The log is attached.

I ran 'killall -SIGQUIT banshee' a couple of times before realising it
wouldn't actually kill Banshee, so I used Ctrl+C instead.

** Attachment added: banshee.log
   
https://bugs.launchpad.net/ubuntu/+source/banshee/+bug/1099218/+attachment/3493539/+files/banshee.log

** Changed in: banshee (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/1099218

Title:
  Banshee does not start, only shows greyed out window

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

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


[Bug 1100546] [NEW] Power indicator favours 'not present' mouse over laptop battery level

2013-01-16 Thread Stephen Rees-Carter
Public bug reported:

The power indicator shows the battery level for cordless mice and
keyboards, even when it cannot identify the battery level. This is a
problem as it seems to favour showing a not present mouse status over
the laptop battery level in the top bar.

I haven't done a good job of explaining it, so check out the screenshot
- it will explain all :)

Basically, the laptop battery should be shown in the top bar if the 
mouse/keyboard is not present.
Also hiding the mouse and keyboard when the battery level is unknown would also 
be useful too :)

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: indicator-power 12.10.6daily12.11.21.1-0ubuntu1
ProcVersionSignature: Ubuntu 3.8.0-0.3-generic 3.8.0-rc3
Uname: Linux 3.8.0-0-generic x86_64
ApportVersion: 2.8-0ubuntu1
Architecture: amd64
Date: Thu Jan 17 10:11:16 2013
InstallationDate: Installed on 2012-12-14 (33 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Alpha amd64 (20121214)
MarkForUpload: True
SourcePackage: indicator-power
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: indicator-power (Ubuntu)
 Importance: Undecided
 Status: New


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

** Attachment added: indicator-power-showing-useless-status.png
   
https://bugs.launchpad.net/bugs/1100546/+attachment/3485430/+files/indicator-power-showing-useless-status.png

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

Title:
  Power indicator favours 'not present' mouse over laptop battery level

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

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


[Bug 1099218] [NEW] Banshee does not start, only shows greyed out window

2013-01-13 Thread Stephen Rees-Carter
Public bug reported:

When I try to start Banshee, it just loads up a greyed out window.
The only way to get rid of it is to Force Quit. I haven't found a workaround.

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: banshee 2.6.0-3ubuntu1
ProcVersionSignature: Ubuntu 3.8.0-0.2-generic 3.8.0-rc3
Uname: Linux 3.8.0-0-generic x86_64
ApportVersion: 2.8-0ubuntu1
Architecture: amd64
Date: Mon Jan 14 08:44:54 2013
InstallationDate: Installed on 2012-12-14 (30 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Alpha amd64 (20121214)
MarkForUpload: True
SourcePackage: banshee
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  Banshee does not start, only shows greyed out window

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

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


[Bug 1099218] Re: Banshee does not start, only shows greyed out window

2013-01-13 Thread Stephen Rees-Carter
Done. I used Ctrl+C to kill banshee after it'd been frozen for a while.

valorin@gandalf:~$ banshee
[Info  09:56:47.362] Running Banshee 2.6.0: [Ubuntu Raring Ringtail 
(development branch) (linux-gnu, x86_64) @ 2012-11-30 12:57:47 UTC]


** Changed in: banshee (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/1099218

Title:
  Banshee does not start, only shows greyed out window

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

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


[Bug 1091514] [NEW] Unable to play any media files

2012-12-17 Thread Stephen Rees-Carter
Public bug reported:

I am unable to play any media files or even any online media. I've tried
mp3 and ogg files through Banshee and Totem, and even YouTube in Chrome
doesn't work.

Sometimes it's a crackling skipping sound, while others it just crashes
the player at the start of the file.

I'm happy to debug, but I don't know where to start with audio/media
issues.

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: libgstreamer0.10-0 0.10.36-1ubuntu2
ProcVersionSignature: Ubuntu 3.7.0-7.15-generic 3.7.0
Uname: Linux 3.7.0-7-generic x86_64
ApportVersion: 2.7-0ubuntu2
Architecture: amd64
Date: Tue Dec 18 13:59:25 2012
InstallationDate: Installed on 2012-12-14 (3 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Alpha amd64 (20121214)
MarkForUpload: True
SourcePackage: gstreamer0.10
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gstreamer0.10 (Ubuntu)
 Importance: Undecided
 Status: New


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

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

Title:
  Unable to play any media files

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gstreamer0.10/+bug/1091514/+subscriptions

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


[Bug 1091018] [NEW] banshee freezes when playing songs

2012-12-16 Thread Stephen Rees-Carter
Public bug reported:

On a fresh install on Raring, Banshee is having trouble playing more
than one mp3 file.

Starting Banshee fresh allows it to play a single mp3, but then it gets
to the next one and freezes, requiring a force quit.

The log message comes up with something like this:

[1 Warn  08:55:53.253] Seem to be stuck loading
file:///home/valorin/Music/TobyMac/Christmas%20in%20Diverse%20City/TobyMac%20-%2004%20-%20O%20Come,%20All%20Ye%20Faithful.mp3,
so re-trying

I can open that file workout any issues Banshee if it's the first file
to attempt to listen to.

Steps to reproduce:
1. Open Banshee
2. Listen to an mp3 (which works)
3. Wait for the song to finish and banshee will crash.

Let me know if there is any other information that would help debug.

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: banshee 2.6.0-3ubuntu1
ProcVersionSignature: Ubuntu 3.7.0-6.14-generic 3.7.0
Uname: Linux 3.7.0-6-generic x86_64
ApportVersion: 2.7-0ubuntu2
Architecture: amd64
Date: Mon Dec 17 08:59:21 2012
InstallationDate: Installed on 2012-12-14 (2 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Alpha amd64 (20121214)
MarkForUpload: True
SourcePackage: banshee
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  banshee freezes when playing songs

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

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


[Bug 1091018] Re: banshee freezes when playing songs

2012-12-16 Thread Stephen Rees-Carter
I caused the freeze in Banshee and then ran: kill -s QUIT $(pidof
banshee); cp ~/.config/banshee-1/log ~/Desktop/banshee.log

** Attachment added: banshee.log
   
https://bugs.launchpad.net/ubuntu/+source/banshee/+bug/1091018/+attachment/3461724/+files/banshee.log

** Changed in: banshee (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/1091018

Title:
  banshee freezes when playing songs

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

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


[Bug 701544] Re: phpunit requires PHP_CodeCoverage

2012-11-08 Thread Stephen Rees-Carter
Is there any point to having phpunit in the Ubuntu repos?

It's a piece of cake to install via Composer or PEAR. Both those two
methods will get you the latest version too rather than an out-dated
version.

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

Title:
  phpunit requires PHP_CodeCoverage

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

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


[Bug 1072493] [NEW] Terminal keeps reverting to default size during use

2012-10-28 Thread Stephen Rees-Carter
Public bug reported:

When using the terminal, if you resize it to something other than the
default size (but don't maximize it), then it will randomly revert back
to the default size.

It seems to happen randomly without any specific cause.

The only work around is to maximize the terminal, but that isn't often a
good solution.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: gnome-terminal 3.6.0-0ubuntu1
ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
Uname: Linux 3.5.0-18-generic x86_64
ApportVersion: 2.6.1-0ubuntu6
Architecture: amd64
Date: Mon Oct 29 09:32:30 2012
InstallationDate: Installed on 2012-10-28 (0 days ago)
InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
MarkForUpload: True
SourcePackage: gnome-terminal
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  Terminal keeps reverting to default size during use

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

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


[Bug 1061824] Re: Empathy doesn't connect to accounts: Status is set to offline when it's not

2012-10-08 Thread Stephen Rees-Carter
This is still occurring for me on quantal, so it's not fixed...

valorin@gandalf:~$ empathy --version
Empathy 3.6.0

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

Title:
  Empathy doesn't connect to accounts: Status is set to offline when
  it's not

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

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


[Bug 1061892] [NEW] Internal Error when trying to connect

2012-10-04 Thread Stephen Rees-Carter
Public bug reported:

Every time I boot up Empathy refuses to connect to my two gTalk accounts for a 
while. Sometimes it resolves itself within 5 minutes, while other times it 
takes a lot longer.
It doesn't matter if I change my online status to Offline and back to Online, 
or click the little blue reload button, nothing seems to work.

This has been happening since I upgraded to 12.10 and Empathy was tied
into the Online Accounts system.

What can I do to debug this so it can be fixed?

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: empathy 3.6.0-0ubuntu1
ProcVersionSignature: Ubuntu 3.5.0-16.25-generic 3.5.4
Uname: Linux 3.5.0-16-generic x86_64
ApportVersion: 2.6.1-0ubuntu1
Architecture: amd64
Date: Fri Oct  5 07:01:11 2012
EcryptfsInUse: Yes
InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Alpha amd64 (20120914)
SourcePackage: empathy
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  Internal Error when trying to connect

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

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


[Bug 1061892] Re: Internal Error when trying to connect

2012-10-04 Thread Stephen Rees-Carter
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1061892

Title:
  Internal Error when trying to connect

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

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


[Bug 1057246] [NEW] ~/.gvfs directory keeps breaking

2012-09-26 Thread Stephen Rees-Carter
Public bug reported:

I use the ~/.gvfs directory as a way to access mounted systems for
access in editors, etc (i.e. Geany). It allows me to point the editor at
the host subdir within ~/.gvfs and easily browse/edit the files.

Since upgrading to 12.10 it keeps breaking.

valorin@gandalf:~$ cd ~/.gvfs
bash: cd: /home/valorin/.gvfs: Transport endpoint is not connected

It sometimes is broken from login, and I need to restart to fix it up,
and other times I can use it happily for hours before it will suddenly
decide to stop working.

It's very frustrating since I need to close down everything (and
potentially lose work since I can't save it on my remote host) and
restart each time it happens.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: gvfs 1.13.9-0ubuntu1
ProcVersionSignature: Ubuntu 3.5.0-15.23-generic 3.5.4
Uname: Linux 3.5.0-15-generic x86_64
ApportVersion: 2.5.2-0ubuntu4
Architecture: amd64
Date: Thu Sep 27 12:02:47 2012
EcryptfsInUse: Yes
InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Alpha amd64 (20120914)
SourcePackage: gvfs
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  ~/.gvfs directory keeps breaking

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

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


[Bug 1057246] Re: ~/.gvfs directory keeps breaking

2012-09-26 Thread Stephen Rees-Carter
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1057246

Title:
  ~/.gvfs directory keeps breaking

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

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


[Bug 1050900] [NEW] Unable to boot without 'noapic' boot flag

2012-09-14 Thread Stephen Rees-Carter
Public bug reported:

When I try and boot 12.10 from a live CD without any tweaks, it crashes
on a black screen and requires a hard-reset. The only way to get around
it is to enable the 'noapic' boot flag.

This problem has been present for the past couple of releases, and it'd be 
great if it actually got fixed. I've reported it before, but I've made a new 
bug report now to provide updated dumps etc.
It's worth noting that at one point it was actually fixed in the mainline 
kernels, see comment #7 on Bug #903558.
I also had some success with a custom kernel config file someone provided me, 
but I lack the skills to identify the solution from that.

I'd love to get some help with this bug. Please.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: linux-image-3.5.0-14-generic 3.5.0-14.17
ProcVersionSignature: Ubuntu 3.5.0-14.17-generic 3.5.3
Uname: Linux 3.5.0-14-generic x86_64
AcpiTables: Error: command ['pkexec', '/usr/share/apport/dump_acpi_tables.py'] 
failed with exit code 127: Error executing 
/usr/share/apport/dump_acpi_tables.py: Permission denied
ApportVersion: 2.5.1-0ubuntu7
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  ubuntu 3456 F pulseaudio
CasperVersion: 1.323
Date: Fri Sep 14 12:14:50 2012
LiveMediaBuild: Ubuntu 12.10 Quantal Quetzal - Alpha amd64 (20120914)
MachineType: LENOVO 7859CTO
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: noprompt cdrom-detect/try-usb=true 
file=/cdrom/preseed/username.seed boot=casper initrd=/casper/initrd.lz quiet 
splash --  noapic
RelatedPackageVersions:
 linux-restricted-modules-3.5.0-14-generic N/A
 linux-backports-modules-3.5.0-14-generic  N/A
 linux-firmware1.91
SourcePackage: linux
StagingDrivers: rts_pstor
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 11/04/2011
dmi.bios.vendor: LENOVO
dmi.bios.version: 8GET38WW (1.15 )
dmi.board.name: 7859CTO
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvr8GET38WW(1.15):bd11/04/2011:svnLENOVO:pn7859CTO:pvrThinkPadL520:rvnLENOVO:rn7859CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 7859CTO
dmi.product.version: ThinkPad L520
dmi.sys.vendor: LENOVO

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


** Tags: amd64 apport-bug quantal running-unity staging

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

Title:
  Unable to boot without 'noapic' boot flag

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

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


[Bug 1050900] Re: Unable to boot without 'noapic' boot flag

2012-09-14 Thread Stephen Rees-Carter
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1050900

Title:
  Unable to boot without 'noapic' boot flag

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

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


[Bug 1050900] Re: Unable to boot without 'noapic' boot flag

2012-09-14 Thread Stephen Rees-Carter
 Does this only happen when you try to boot from the Live CD, or all
the time?

Both from a Live CD and when Ubuntu 12.10 is installed. (i.e. all the
time)

 Please test the latest v3.6 kernel[0]

I've installed v3.6-rc5-quantal with no success. It still requires the
'noapic' boot flag.

** Tags removed: needs-upstream-testing
** Tags added: kernel-bug-exists-upstream

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

Title:
  Unable to boot without 'noapic' boot flag

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

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


[Bug 978464] Re: Upgrade 10.04 to 12.04 Beta 2 failed, grub issue

2012-05-10 Thread Stephen Rees-Carter
I just did an upgrade on a VMware machine from 10.04 to 12.04 today. 
Same issue here...
 
Can someone talk me through the process of fixing it? 
I've never fixed an GRUB issue before, so I don't know what to do...

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

Title:
  Upgrade 10.04 to 12.04 Beta 2 failed, grub issue

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

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


[Bug 977597] [NEW] Doesn't handle images with non-English characters

2012-04-09 Thread Stephen Rees-Carter
Public bug reported:

Wallch doesn't handle images with non-english characters in file names.

Normally this wouldn't be a problem for most people, but given that the
default community wallpapers have included images with non-english
characters in their file names for the past couple of releases, this
will be an issue for anyone wanting to use them.

Steps to reproduce:
1) Add Folder '/usr/share/background/' into Wallch.
2) Browse the list and you'll find images with dodgy names that won't load.

See the attached screenshot for an example.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: wallch 3.01-0ubuntu1
ProcVersionSignature: Ubuntu 3.2.0-22.35-generic 3.2.14
Uname: Linux 3.2.0-22-generic x86_64
ApportVersion: 2.0-0ubuntu4
Architecture: amd64
Date: Tue Apr 10 08:44:43 2012
EcryptfsInUse: Yes
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Beta amd64 (20120407)
SourcePackage: wallch
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug precise

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

Title:
  Doesn't handle images with non-English characters

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

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


[Bug 977597] Re: Doesn't handle images with non-English characters

2012-04-09 Thread Stephen Rees-Carter
** Attachment added: wallch-extra-chars.png
   
https://bugs.launchpad.net/bugs/977597/+attachment/3036891/+files/wallch-extra-chars.png

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

Title:
  Doesn't handle images with non-English characters

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

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


[Bug 924660] Re: 12.04 Installer stuck on 'Removing conflicting operating system files'

2012-03-21 Thread Stephen Rees-Carter
*** This bug is a duplicate of bug 946663 ***
https://bugs.launchpad.net/bugs/946663

** This bug has been marked a duplicate of bug 946663
   Installer stuck at Removing conflicting operating system files...

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

Title:
  12.04 Installer stuck on 'Removing conflicting operating system files'

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

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


[Bug 639633] Re: Design and implement workspace creation and removal

2012-03-15 Thread Stephen Rees-Carter
I disagree, the ability to easily and dynamically change the number of
workspaces is a killer feature for those of us who use them a lot. It's
the one huge advantage Gnome Shell has over Unity.

Instead of further crippling workspaces in Unity, can we head down the
Gnome Shell path and make it a simple but powerful feature? If done
right, basic users will not be confused, and power users will be very
happy...

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

Title:
  Design and implement workspace creation and removal

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

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


[Bug 903558] Re: Unable to boot 12.04 without 'noapic' flag enabled in GRUB

2012-03-12 Thread Stephen Rees-Carter
@Joseph

Comment #14 refers to v3.2-rc7 not v3.3-rc7. See comment #7 for more details on 
the tested versions.
I just checked v3.3-rc7 and it is still broken, so it's not fixed.

It appears to be related to the config file, as opposed to the actual kernel 
code... see comments #10  #17.
The result changed depending on which config file I used to compile the kernel. 
I was given a custom one for my L520 which works fine with the kernel git, 
while the Ubuntu default kernel config was causing the issue to happen.

My assumption is that there was a change of config defaults when v3.2-rc7, etc, 
were compiled, compared with the newer kernel builds (i.e. v3.3-rc7). It would 
be great to find out what this was, and have it reversed if possible?
It's also worth nothing that older kernel builds, such as the ones with 11.04  
11.10 also had this issue. So it was resolved for a couple of kernel  builds 
and then broken again.

Does that give you more to work with?

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 933791] Re: Stops responding to mouse clicks and won't open the VPN menu

2012-03-12 Thread Stephen Rees-Carter
apport information

** Tags added: apport-collected

** Description changed:

  I'm running 12.04 x64.
  
  When I first  boot up indicator-network works fine, but after a while of
  use (and possibly a suspend or two) it stops responding to mouse clicks.
  It will open when selected, but none of the menu items work. Also the
  VPN submenu opens as a tiny sliver and is also completely unusable.
  
  The only way around it is to restart the computer.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: indicator-network (not installed)
  ProcVersionSignature: Ubuntu 3.2.0-16.25-generic 3.2.6
  Uname: Linux 3.2.0-16-generic x86_64
  ApportVersion: 1.91-0ubuntu1
  Architecture: amd64
  Date: Fri Feb 17 08:42:00 2012
  EcryptfsInUse: Yes
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Alpha amd64 
(20120209)
  SourcePackage: indicator-network
  UpgradeStatus: Upgraded to precise on 2012-02-13 (2 days ago)
+ --- 
+ ApportVersion: 1.94.1-0ubuntu2
+ Architecture: amd64
+ CRDA:
+  country AU:
+   (2402 - 2482 @ 40), (N/A, 20)
+   (5170 - 5250 @ 40), (3, 23)
+   (5250 - 5330 @ 40), (3, 23), DFS
+   (5735 - 5835 @ 40), (3, 30)
+ DistroRelease: Ubuntu 12.04
+ EcryptfsInUse: Yes
+ IfupdownConfig:
+  auto lo
+  iface lo inet loopback
+ InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Alpha amd64 
(20120209)
+ IpRoute:
+  default via 10.1.1.1 dev wlan0  proto static 
+  10.1.1.0/24 dev wlan0  proto kernel  scope link  src 10.1.1.4  metric 2 
+  169.254.0.0/16 dev wlan0  scope link  metric 1000
+ NetworkManager.state:
+  [main]
+  NetworkingEnabled=true
+  WirelessEnabled=true
+  WWANEnabled=true
+  WimaxEnabled=true
+ Package: network-manager-applet (not installed)
+ Tags:  precise
+ Uname: Linux 3.3.0-030300rc7-generic x86_64
+ UpgradeStatus: Upgraded to precise on 2012-02-13 (28 days ago)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo vboxusers www-data
+ nmcli-dev:
+  DEVICE TYPE  STATE DBUS-PATH 
 
+  eth0   802-3-ethernetunavailable   
/org/freedesktop/NetworkManager/Devices/1  
+  wlan0  802-11-wireless   connected 
/org/freedesktop/NetworkManager/Devices/0
+ nmcli-nm:
+  RUNNING VERSIONSTATE   NET-ENABLED   WIFI-HARDWARE   
WIFI   WWAN-HARDWARE   WWAN  
+  running 0.9.3.0connected   enabled   enabled 
enabledenabled enabled

** Attachment added: IpAddr.txt
   https://bugs.launchpad.net/bugs/933791/+attachment/2859942/+files/IpAddr.txt

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

Title:
  Stops responding to mouse clicks and won't open the VPN menu

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

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


[Bug 933791] IwConfig.txt

2012-03-12 Thread Stephen Rees-Carter
apport information

** Attachment added: IwConfig.txt
   
https://bugs.launchpad.net/bugs/933791/+attachment/2859943/+files/IwConfig.txt

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

Title:
  Stops responding to mouse clicks and won't open the VPN menu

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

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


[Bug 933791] NetDevice.eth0.txt

2012-03-12 Thread Stephen Rees-Carter
apport information

** Attachment added: NetDevice.eth0.txt
   
https://bugs.launchpad.net/bugs/933791/+attachment/2859944/+files/NetDevice.eth0.txt

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

Title:
  Stops responding to mouse clicks and won't open the VPN menu

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

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


[Bug 933791] NetDevice.lo.txt

2012-03-12 Thread Stephen Rees-Carter
apport information

** Attachment added: NetDevice.lo.txt
   
https://bugs.launchpad.net/bugs/933791/+attachment/2859945/+files/NetDevice.lo.txt

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

Title:
  Stops responding to mouse clicks and won't open the VPN menu

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

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


[Bug 933791] NetDevice.wlan0.txt

2012-03-12 Thread Stephen Rees-Carter
apport information

** Attachment added: NetDevice.wlan0.txt
   
https://bugs.launchpad.net/bugs/933791/+attachment/2859946/+files/NetDevice.wlan0.txt

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

Title:
  Stops responding to mouse clicks and won't open the VPN menu

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

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


[Bug 933791] PciNetwork.txt

2012-03-12 Thread Stephen Rees-Carter
apport information

** Attachment added: PciNetwork.txt
   
https://bugs.launchpad.net/bugs/933791/+attachment/2859948/+files/PciNetwork.txt

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

Title:
  Stops responding to mouse clicks and won't open the VPN menu

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

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


[Bug 933791] ProcEnviron.txt

2012-03-12 Thread Stephen Rees-Carter
apport information

** Attachment added: ProcEnviron.txt
   
https://bugs.launchpad.net/bugs/933791/+attachment/2859949/+files/ProcEnviron.txt

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

Title:
  Stops responding to mouse clicks and won't open the VPN menu

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

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


[Bug 933791] NetworkManager.conf.txt

2012-03-12 Thread Stephen Rees-Carter
apport information

** Attachment added: NetworkManager.conf.txt
   
https://bugs.launchpad.net/bugs/933791/+attachment/2859947/+files/NetworkManager.conf.txt

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

Title:
  Stops responding to mouse clicks and won't open the VPN menu

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

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


[Bug 933791] RfKill.txt

2012-03-12 Thread Stephen Rees-Carter
apport information

** Attachment added: RfKill.txt
   https://bugs.launchpad.net/bugs/933791/+attachment/2859950/+files/RfKill.txt

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

Title:
  Stops responding to mouse clicks and won't open the VPN menu

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

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


[Bug 933791] WifiSyslog.txt

2012-03-12 Thread Stephen Rees-Carter
apport information

** Attachment added: WifiSyslog.txt
   
https://bugs.launchpad.net/bugs/933791/+attachment/2859951/+files/WifiSyslog.txt

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

Title:
  Stops responding to mouse clicks and won't open the VPN menu

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

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


[Bug 933791] Re: Stops responding to mouse clicks and won't open the VPN menu

2012-03-12 Thread Stephen Rees-Carter
I haven't encountered this bug in a while, so it is likely that it has
been fixed. I will update this bug if it occurs again, but for now,
assume it's all good.

Sorry about specifying the wrong package - I thought since the other
items up there were all indications, that this one would be one too :)

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

Title:
  Stops responding to mouse clicks and won't open the VPN menu

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

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


[Bug 933791] nmcli-con.txt

2012-03-12 Thread Stephen Rees-Carter
apport information

** Attachment added: nmcli-con.txt
   
https://bugs.launchpad.net/bugs/933791/+attachment/2859952/+files/nmcli-con.txt

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

Title:
  Stops responding to mouse clicks and won't open the VPN menu

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

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


[Bug 903558] Re: Unable to boot 12.04 without 'noapic' flag enabled in GRUB

2012-03-09 Thread Stephen Rees-Carter
Doesn't this bug need to be reported upstream?

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] Re: Unable to boot 12.04 without 'noapic' flag enabled in GRUB

2012-03-09 Thread Stephen Rees-Carter
ARGH!! Can you please stop it with the automated notices... Can someone
with some Kernel debugging skills help me with this one please?

** Tags added: bot-stop-nagging

** Changed in: linux (Ubuntu)
   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/903558

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] Re: Unable to boot 12.04 without 'noapic' flag enabled in GRUB

2012-03-08 Thread Stephen Rees-Carter
** Changed in: linux (Ubuntu)
   Status: Triaged = Confirmed

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

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 903558] Re: Unable to boot 12.04 without 'noapic' flag enabled in GRUB

2012-03-08 Thread Stephen Rees-Carter
Done this already...

** Changed in: linux (Ubuntu)
   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/903558

Title:
  Unable to boot 12.04 without 'noapic' flag enabled in GRUB

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

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


[Bug 912992] Re: [snb-m-gt2+] Primary laptop display not working, external monitor works fine. [Fixed as of linux-image-3.3.0-994-generic_3.3.0-994.201201290428 from drm-intel-fixes branch]

2012-02-28 Thread Stephen Rees-Carter
No, the patch has fixed it :)

Sorry, I should've updated this bug to report that.

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

Title:
  [snb-m-gt2+] Primary laptop display not working, external monitor
  works fine.  [Fixed as of linux-
  image-3.3.0-994-generic_3.3.0-994.201201290428 from drm-intel-fixes
  branch]

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

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


[Bug 940803] Re: Super+Shift+Left/Right don't work

2012-02-26 Thread Stephen Rees-Carter
Now that you mention it, left works but right doesn't for me too.
I'll update the bug description.

Yeah, the short cut overlay thing is another bug that affects most of
the commands with Super.

** Description changed:

  With the recent change of the workspace switching shortcuts from
- Alt+Ctrl+Arrow to Super+Shift+Arrow, only the Up/Down combination works.
- Using the Left/Right keys does nothing.
+ Alt+Ctrl+Arrow to Super+Shift+Arrow, only the Up/Down/Left combination
+ works. Using the Right key does nothing.
  
  Coupling this with the ridiculous removal of Alt+Ctrl+Arrow shortcut
  (WHY WHY WHY???!!!), I can only use 2 out of the four workspaces without
  resorting to the mouse or calling applications directly via the Dash.
  
  This is not good enough, especially not for an LTS.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: unity 5.4.0-0ubuntu2
  ProcVersionSignature: Ubuntu 3.2.0-17.27-generic 3.2.6
  Uname: Linux 3.2.0-17-generic x86_64
  .tmp.unity.support.test.0:
-  
+ 
  ApportVersion: 1.93-0ubuntu2
  Architecture: amd64
  CompizPlugins: 
[core,bailer,detection,composite,opengl,decor,mousepoll,vpswitch,regex,animation,snap,expo,move,compiztoolbox,place,grid,imgpng,gnomecompat,wall,ezoom,workarounds,resize,fade,unitymtgrabhandles,scale,session,unityshell]
  CompositorRunning: compiz
  Date: Sat Feb 25 17:36:08 2012
  DistUpgraded: Log time: 2012-02-11 12:41:05.499786
  DistroCodename: precise
  DistroVariant: ubuntu
  DkmsStatus: vboxhost, 4.1.8, 3.2.0-17-generic, x86_64: installed
  EcryptfsInUse: Yes
  GraphicsCard:
-  Intel Corporation 2nd Generation Core Processor Family Integrated Graphics 
Controller [8086:0126] (rev 09) (prog-if 00 [VGA controller])
-Subsystem: Lenovo Device [17aa:21dd]
+  Intel Corporation 2nd Generation Core Processor Family Integrated Graphics 
Controller [8086:0126] (rev 09) (prog-if 00 [VGA controller])
+    Subsystem: Lenovo Device [17aa:21dd]
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Alpha amd64 
(20120209)
  MachineType: LENOVO 7859CTO
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-17-generic 
root=UUID=a762bab0-73ee-4c4f-a5ec-ee313f15eb00 ro quiet splash noapic 
vt.handoff=7
  SourcePackage: unity
  UpgradeStatus: Upgraded to precise on 2012-02-13 (11 days ago)
  dmi.bios.date: 11/04/2011
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8GET38WW (1.15 )
  dmi.board.name: 7859CTO
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr8GET38WW(1.15):bd11/04/2011:svnLENOVO:pn7859CTO:pvrThinkPadL520:rvnLENOVO:rn7859CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 7859CTO
  dmi.product.version: ThinkPad L520
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.7.0~bzr2995-0ubuntu5
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.30-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 8.0.1-0ubuntu2
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 8.0.1-0ubuntu2
  version.xserver-xorg-core: xserver-xorg-core 2:1.11.4-0ubuntu4
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 
1:2.6.99.901+git20120126-0ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.14.99~git20111219.aacbd629-0ubuntu2
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.17.0-1ubuntu4
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20111201+b5534a1-1build2

** Summary changed:

- Super+Shift+Left/Right don't work
+ Super+Shift+Right doesn't work

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

Title:
  Super+Shift+Right doesn't work

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

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

[Bug 940699] [NEW] Workspace switching Ctrl+Alt+Left/Right/Up/Down not working

2012-02-24 Thread Stephen Rees-Carter
Public bug reported:

After an update a few minutes ago, and a reboot, I am now no longer able to use 
the Ctrl+Alt+Left/Right/Up/Down keyboard shortcut to switch between workspaces.
I can use Shift+Ctrl+Alt+Left/Right/Up/Down to move windows, but to switch 
between them no longer works.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: unity 5.4.0-0ubuntu2
ProcVersionSignature: Ubuntu 3.2.0-17.27-generic 3.2.6
Uname: Linux 3.2.0-17-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 1.93-0ubuntu2
Architecture: amd64
CompizPlugins: 
[core,bailer,detection,composite,opengl,decor,mousepoll,vpswitch,regex,animation,snap,expo,move,compiztoolbox,place,grid,imgpng,gnomecompat,wall,ezoom,workarounds,resize,fade,unitymtgrabhandles,scale,session,unityshell]
CompositorRunning: compiz
Date: Sat Feb 25 10:43:48 2012
DistUpgraded: Log time: 2012-02-11 12:41:05.499786
DistroCodename: precise
DistroVariant: ubuntu
DkmsStatus: vboxhost, 4.1.8, 3.2.0-17-generic, x86_64: installed
EcryptfsInUse: Yes
GraphicsCard:
 Intel Corporation 2nd Generation Core Processor Family Integrated Graphics 
Controller [8086:0126] (rev 09) (prog-if 00 [VGA controller])
   Subsystem: Lenovo Device [17aa:21dd]
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Alpha amd64 (20120209)
MachineType: LENOVO 7859CTO
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-17-generic 
root=UUID=a762bab0-73ee-4c4f-a5ec-ee313f15eb00 ro quiet splash noapic 
vt.handoff=7
SourcePackage: unity
UpgradeStatus: Upgraded to precise on 2012-02-13 (11 days ago)
dmi.bios.date: 11/04/2011
dmi.bios.vendor: LENOVO
dmi.bios.version: 8GET38WW (1.15 )
dmi.board.name: 7859CTO
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvr8GET38WW(1.15):bd11/04/2011:svnLENOVO:pn7859CTO:pvrThinkPadL520:rvnLENOVO:rn7859CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 7859CTO
dmi.product.version: ThinkPad L520
dmi.sys.vendor: LENOVO
version.compiz: compiz 1:0.9.7.0~bzr2995-0ubuntu5
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.30-1ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 8.0.1-0ubuntu2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 8.0.1-0ubuntu2
version.xserver-xorg-core: xserver-xorg-core 2:1.11.4-0ubuntu4
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 
1:2.6.99.901+git20120126-0ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.14.99~git20111219.aacbd629-0ubuntu2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.17.0-1ubuntu4
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20111201+b5534a1-1build2

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


** Tags: amd64 apport-bug compiz-0.9 precise ubuntu

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

Title:
  Workspace switching Ctrl+Alt+Left/Right/Up/Down not working

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

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


[Bug 940699] Re: Workspace switching Ctrl+Alt+Left/Right/Up/Down not working

2012-02-24 Thread Stephen Rees-Carter
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940699

Title:
  Workspace switching Ctrl+Alt+Left/Right/Up/Down not working

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

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


[Bug 940699] Re: Workspace switching Ctrl+Alt+Left/Right/Up/Down not working

2012-02-24 Thread Stephen Rees-Carter
I'm sorry, but this must be a joke...

Why has a key combination that has been around forever, that every other distro 
uses, been replaced with something new?
At the very least, why can't backwards compatibility be maintained and both 
sets of shortcuts work?

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

Title:
  Workspace switching Ctrl+Alt+Left/Right/Up/Down not working

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

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


[Bug 940803] Re: Super+Shift+Left/Right don't work

2012-02-24 Thread Stephen Rees-Carter
** Package changed: unity (Ubuntu) = compiz (Ubuntu)

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

Title:
  Super+Shift+Left/Right don't work

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

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


[Bug 940699] Re: Workspace switching Ctrl+Alt+Left/Right/Up/Down not working

2012-02-24 Thread Stephen Rees-Carter
*** This bug is a duplicate of bug 940085 ***
https://bugs.launchpad.net/bugs/940085

** This bug has been marked a duplicate of bug 940085
   12.04, Compiz Wall plugin default shortcut keys are incorrect

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

Title:
  Workspace switching Ctrl+Alt+Left/Right/Up/Down not working

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

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


[Bug 940803] [NEW] Super+Shift+Left/Right don't work

2012-02-24 Thread Stephen Rees-Carter
Public bug reported:

With the recent change of the workspace switching shortcuts from
Alt+Ctrl+Arrow to Super+Shift+Arrow, only the Up/Down combination works.
Using the Left/Right keys does nothing.

Coupling this with the ridiculous removal of Alt+Ctrl+Arrow shortcut
(WHY WHY WHY???!!!), I can only use 2 out of the four workspaces without
resorting to the mouse or calling applications directly via the Dash.

This is not good enough, especially not for an LTS.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: unity 5.4.0-0ubuntu2
ProcVersionSignature: Ubuntu 3.2.0-17.27-generic 3.2.6
Uname: Linux 3.2.0-17-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 1.93-0ubuntu2
Architecture: amd64
CompizPlugins: 
[core,bailer,detection,composite,opengl,decor,mousepoll,vpswitch,regex,animation,snap,expo,move,compiztoolbox,place,grid,imgpng,gnomecompat,wall,ezoom,workarounds,resize,fade,unitymtgrabhandles,scale,session,unityshell]
CompositorRunning: compiz
Date: Sat Feb 25 17:36:08 2012
DistUpgraded: Log time: 2012-02-11 12:41:05.499786
DistroCodename: precise
DistroVariant: ubuntu
DkmsStatus: vboxhost, 4.1.8, 3.2.0-17-generic, x86_64: installed
EcryptfsInUse: Yes
GraphicsCard:
 Intel Corporation 2nd Generation Core Processor Family Integrated Graphics 
Controller [8086:0126] (rev 09) (prog-if 00 [VGA controller])
   Subsystem: Lenovo Device [17aa:21dd]
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Alpha amd64 (20120209)
MachineType: LENOVO 7859CTO
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-17-generic 
root=UUID=a762bab0-73ee-4c4f-a5ec-ee313f15eb00 ro quiet splash noapic 
vt.handoff=7
SourcePackage: unity
UpgradeStatus: Upgraded to precise on 2012-02-13 (11 days ago)
dmi.bios.date: 11/04/2011
dmi.bios.vendor: LENOVO
dmi.bios.version: 8GET38WW (1.15 )
dmi.board.name: 7859CTO
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvr8GET38WW(1.15):bd11/04/2011:svnLENOVO:pn7859CTO:pvrThinkPadL520:rvnLENOVO:rn7859CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 7859CTO
dmi.product.version: ThinkPad L520
dmi.sys.vendor: LENOVO
version.compiz: compiz 1:0.9.7.0~bzr2995-0ubuntu5
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.30-1ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 8.0.1-0ubuntu2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 8.0.1-0ubuntu2
version.xserver-xorg-core: xserver-xorg-core 2:1.11.4-0ubuntu4
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 
1:2.6.99.901+git20120126-0ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.14.99~git20111219.aacbd629-0ubuntu2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.17.0-1ubuntu4
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20111201+b5534a1-1build2

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


** Tags: amd64 apport-bug compiz-0.9 precise ubuntu

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

Title:
  Super+Shift+Left/Right don't work

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

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


[Bug 795792] Re: Switching to window at bottom of workspace below makes window jump to top of current workspace

2012-02-22 Thread Stephen Rees-Carter
*** This bug is a duplicate of bug 834248 ***
https://bugs.launchpad.net/bugs/834248

** This bug is no longer a duplicate of bug 755842
   Non-maximized windows which sit on the border of a workspace move when called
** This bug has been marked a duplicate of bug 834248
   [With Patch]: Non-maximized windows which sit on the bottom edge of the 
lower workspaces shift downwards when called from an upper workspace.

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

Title:
  Switching to window at bottom of workspace below makes window jump to
  top of current workspace

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

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


[Bug 781266] Re: Clicking app icon in Launcher for app on another workspace is inconsistent

2012-02-22 Thread Stephen Rees-Carter
*** This bug is a duplicate of bug 834248 ***
https://bugs.launchpad.net/bugs/834248

** This bug is no longer a duplicate of bug 755842
   Non-maximized windows which sit on the border of a workspace move when called
** This bug has been marked a duplicate of bug 834248
   [With Patch]: Non-maximized windows which sit on the bottom edge of the 
lower workspaces shift downwards when called from an upper workspace.

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

Title:
  Clicking app icon in Launcher for app on another workspace is
  inconsistent

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

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


[Bug 776982] Re: Unity launcher confused by workspace wrap around?

2012-02-22 Thread Stephen Rees-Carter
*** This bug is a duplicate of bug 834248 ***
https://bugs.launchpad.net/bugs/834248

** This bug is no longer a duplicate of bug 755842
   Non-maximized windows which sit on the border of a workspace move when called
** This bug has been marked a duplicate of bug 834248
   [With Patch]: Non-maximized windows which sit on the bottom edge of the 
lower workspaces shift downwards when called from an upper workspace.

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

Title:
  Unity launcher confused by workspace wrap around?

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

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


[Bug 766339] Re: switching to windows aligned to the side of a different workspace doesn't work

2012-02-22 Thread Stephen Rees-Carter
*** This bug is a duplicate of bug 834248 ***
https://bugs.launchpad.net/bugs/834248

** This bug is no longer a duplicate of bug 755842
   Non-maximized windows which sit on the border of a workspace move when called
** This bug has been marked a duplicate of bug 834248
   [With Patch]: Non-maximized windows which sit on the bottom edge of the 
lower workspaces shift downwards when called from an upper workspace.

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

Title:
  switching to windows aligned to the side of a different workspace
  doesn't work

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

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


[Bug 755842] Re: Non-maximized windows which sit on the border of a workspace move when called

2012-02-22 Thread Stephen Rees-Carter
*** This bug is a duplicate of bug 834248 ***
https://bugs.launchpad.net/bugs/834248

** This bug has been marked a duplicate of bug 834248
   [With Patch]: Non-maximized windows which sit on the bottom edge of the 
lower workspaces shift downwards when called from an upper workspace.

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

Title:
  Non-maximized windows which sit on the border of a workspace move when
  called

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

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


  1   2   3   4   >