[Bug 1734084] Re: Kernel Update Causes HDMI Port to Stop Working

2017-11-28 Thread Niall Newman
I tested with the latest upstream v4.14 kernels and the issue appears to
be fixed.

Kind regards,
Niall

** Tags added: kernel-fixed-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/1734084

Title:
  Kernel Update Causes HDMI Port to Stop Working

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

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

[Bug 1734084] [NEW] Kernel Update Causes HDMI Port to Stop Working

2017-11-23 Thread Niall Newman
Public bug reported:

After upgrading the kernel on my Ubuntu 17.04 laptop from 
linux-image-4.13.0-16-generic to linux-image-4.13.0-17-generic the HDMI port 
was no longer recognised by the system causing the external display to stop 
working.
Reverting the kernel to linux-image-4.13.0-16-generic fixes the issue.

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: linux-image-4.13.0-17-generic (not installed)
ProcVersionSignature: Ubuntu 4.13.0-16.19-generic 4.13.4
Uname: Linux 4.13.0-16-generic x86_64
ApportVersion: 2.20.7-0ubuntu3.5
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  linus  2762 F pulseaudio
CurrentDesktop: ubuntu:GNOME
Date: Thu Nov 23 09:17:32 2017
HibernationDevice: RESUME=UUID=864b1d5d-3e65-4d95-b439-941a5825c74f
InstallationDate: Installed on 2017-10-18 (35 days ago)
InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Alpha amd64 (20170926)
MachineType: Dell Inc. Latitude E7470
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.13.0-16-generic.efi.signed 
root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-4.13.0-16-generic N/A
 linux-backports-modules-4.13.0-16-generic  N/A
 linux-firmware 1.169
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 06/02/2017
dmi.bios.vendor: Dell Inc.
dmi.bios.version: 1.16.4
dmi.board.name: 0T6HHJ
dmi.board.vendor: Dell Inc.
dmi.board.version: A00
dmi.chassis.type: 9
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvr1.16.4:bd06/02/2017:svnDellInc.:pnLatitudeE7470:pvr:rvnDellInc.:rn0T6HHJ:rvrA00:cvnDellInc.:ct9:cvr:
dmi.product.family: Latitude
dmi.product.name: Latitude E7470
dmi.sys.vendor: Dell Inc.

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


** Tags: amd64 apport-bug artful wayland-session

** Attachment added: "lspci-vnvn.log"
   
https://bugs.launchpad.net/bugs/1734084/+attachment/5013468/+files/lspci-vnvn.log

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

Title:
  Kernel Update Causes HDMI Port to Stop Working

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

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

[Bug 1664277] Re: zonesigner (dnssec-tools) is broken

2017-02-15 Thread Niall O'Reilly
Suggested fix (expand wildcard using glob() and splice into place: 5
instances):

--- /usr/sbin/zonesigner2016-01-22 23:10:55.0 +
+++ ./bin/zonesigner2017-02-14 12:12:06.604434508 +
@@ -2208,2 +2208,3 @@
@args = ($MV, "$ksk.*", $kskdir);
+   splice(@args,1,1,glob($args[1]));
System(@args);
@@ -2219,2 +2220,3 @@
@args = ($MV, "$ksk.*", $kskdir);
+   splice(@args,1,1,glob($args[1]));
System(@args);
@@ -2249,2 +2251,3 @@
@args = ($MV, "$zsk.*", $zskdir);
+   splice(@args,1,1,glob($args[1]));
System(@args);
@@ -2260,2 +2263,3 @@
@args = ($MV, "$zsk.*", $zskdir);
+   splice(@args,1,1,glob($args[1]));
System(@args);
@@ -2271,2 +2275,3 @@
@args = ($MV, "$zsk.*", $zskdir);
+   splice(@args,1,1,glob($args[1]));
System(@args);

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

Title:
  zonesigner (dnssec-tools) is broken

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

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


[Bug 1664277] [NEW] zonesigner (dnssec-tools) is broken

2017-02-13 Thread Niall O'Reilly
Public bug reported:

Ubuntu package dnssec-tools provides a broken zonesigner script, which
fails when any the -kskdirectory, -zskdirectory, or -keydirectory
options is used. The script (/usr/sbin/zonesigner) fails to dereference
file globs when invoking external 'mv' or 'cp' commands.  The upstream
version (from http://www.dnssec-tools.org/download/ , installed in
/usr/local/bin) avoids this problem.  The Ubuntu script claims the same
version number as the upstream one, but differs.

The difference between the original and Ubuntu versions of the script
appears to be due to an incompletely considered attempt to protect
against shell command injection.

The Ubuntu script needs to be changed either to use the original code or
to dereference file globs explicitly before invoking the relevant
external command.

Details follow below.

joe(user)2097: /usr/sbin/zonesigner -Version
zonesigner version: 2.1.0
DNSSEC-Tools Version: 2.1
joe(user)2098: /usr/local/bin/zonesigner -Version
zonesigner version: 2.1.0
DNSSEC-Tools Version: 2.1
joe(user)2099: cat /etc/os-release 
NAME="Ubuntu"
VERSION="16.04.2 LTS (Xenial Xerus)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 16.04.2 LTS"
VERSION_ID="16.04"
HOME_URL="http://www.ubuntu.com/;
SUPPORT_URL="http://help.ubuntu.com/;
BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/;
VERSION_CODENAME=xenial
UBUNTU_CODENAME=xenial
joe(user)2100: diff -b -u /usr/sbin/zonesigner /usr/local/bin/zonesigner 
--- /usr/sbin/zonesigner2016-01-22 23:10:55.0 +
+++ /usr/local/bin/zonesigner   2017-02-13 13:56:56.0 +
@@ -1087,11 +1087,11 @@
#
# Ensure that the zone file has not been signed yet.
#
-   #if(presigned())
-   #{
-   #   print STDERR "zone file $zonefile already signed\n";
-   #   exit(17);
-   #}
+   if(presigned())
+   {
+   print STDERR "zone file $zonefile already signed\n";
+   exit(17);
+   }
 }
 
 #--
@@ -1985,7 +1985,6 @@
 
my $keys;   # Keys we're modifying.
my @keylist;# Keys inna list.
-   my @args;
 
#
# Change the type of the given signing set to the specified type.
@@ -2021,11 +2020,6 @@
vmed_print("setting revoke bit($cwd): $cmd\n");
 
System($cmd);
-   if ($? != 0)
-   {
-   print STDERR "'$cmd' returned $?\n" 
if($verbose);
-   exit($?);
-   }
 
#
# Record the time when key is revoked.
@@ -2057,13 +2051,7 @@
if(! -e $archdir)
{
vmed_print("creating key archive directory $archdir\n\n");
-   @args = ($MKDIR, "-p", "-m 0700", $archdir);
-   System(@args);
-   if ($? != 0)
-   {
-   print STDERR "'@args' returned $?\n" if($verbose);
-   exit($?);
-   }
+   System("$MKDIR -p -m 0700 $archdir");
}
else
{
@@ -2091,13 +2079,7 @@
$newname = "$archdir/$kronos.$archfn";
vhigh_print("moving $key to $newname\n\n");
 
-   @args = ($MV, $archfn, $newname);
-   System(@args);
-   if ($? != 0)
-   {
-   print STDERR "'@args' returned $?\n" if($verbose);
-   exit($?);
-   }
+   System("$MV $archfn $newname");
 
if($archfn =~ /\.key$/)
{
@@ -2182,7 +2164,6 @@
 sub keydirs
 {
my $cwd = getcwd(); # Current directory.
-   my @args;
 
vmed_print("checking key directories\n");
 
@@ -2205,24 +2186,12 @@
 
foreach my $ksk (@kskcurlist)
{
-   @args = ($MV, "$ksk.*", $kskdir);
-   System(@args);
-   if ($? != 0)
-   {
-   print STDERR "'@args' returned $?\n" if($verbose);
-   exit($?)
-   }
+   System("$MV $ksk.* $kskdir");
}
 
foreach my $ksk (@kskpublist)
{
-   @args = ($MV, "$ksk.*", $kskdir);
-   System(@args);
-   if ($? != 0)
-   {
-   print STDERR "'@args' returned $?\n" if($verbose);
-   exit($?)
-   }
+   System("$MV $ksk.* $kskdir");
}
 
}
@@ 

[Bug 1583760] Re: --debug CLI option does nothing

2016-06-13 Thread Niall Bunting
It seems that this has been fixed on master. Possibly with this patch:
https://review.openstack.org/#/c/299346/

** Changed in: python-glanceclient
   Status: New => Fix Committed

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

Title:
  --debug CLI option does nothing

To manage notifications about this bug go to:
https://bugs.launchpad.net/python-glanceclient/+bug/1583760/+subscriptions

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


[Bug 1558196] Re: ypbind not able to socket activate rpcbind under systemd, fails at boot unless something else starts rpcbind

2016-03-23 Thread Niall Brosnan
This has solved the issue for me also. 
Ubuntu 16.04 with rpcbind  0.2.3-0.2-  apt updated on March 21st 15:15 GMT.

/bin/systemctl add-wants multi-user.target rpcbind.service

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

Title:
  ypbind not able to socket activate rpcbind under systemd, fails at
  boot unless something else starts rpcbind

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

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


[Bug 1558196] Re: ypbind not able to socket activate rpcbind under systemd, fails at boot unless something else starts rpcbind

2016-03-23 Thread Niall Brosnan
This has solved the issue for me also. 
Ubuntu 16.04 with rpcbind  0.2.3-0.2-  apt updated on March 21st 15:15 GMT.

/bin/systemctl add-wants multi-user.target rpcbind.service

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

Title:
  ypbind not able to socket activate rpcbind under systemd, fails at
  boot unless something else starts rpcbind

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nis/+bug/1558196/+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 1349789] Re: clang armhf in trusty simply doesn't work

2014-08-02 Thread Niall Douglas
Good news on this, though it took a day of head scratching to figure it
out.

It turns out that ARM clang 3.3 and earlier implements C++ exceptions
using the inefficient SJLJ exception ABI - you know, the one that calls
setjmp all the time for every place an unwind might happen. Anyway, they
finally got round to implementing the ARM EHABI exception ABI which is
zero runtime cost and they went ahead and turned it on by default in
3.4, or at least it is being turned on by default in the Debian/Ubuntu
binaries as well as the LLVM binaries.

Unfortunately, it was very broken indeed. It produces ARM binaries which
simply cannot catch non-trivial C++ exceptions, though otherwise work
fine. This caused Boost.Thread when interrupting a thread wait to enter
an infinite loop at described above, indeed if you EVER catch a type
with RTTI it infinite loops.

Fortunately, Chromium realised this shortly after the 3.4 release, and
they've been hard at work making a EHABI implementation which actually
works for 3.5. I just finished compiling 3.5 from trunk and I can
confirm that all Boost.AFIO unit test pass swimmingly with it for armhf.

You can read more about the 3.5 ARM exception handling improvements at
http://llvm.org/docs/ReleaseNotes.html#changes-to-the-arm-backend.

Can I recommend you upcall this to Debian as well and recommend that
they mark clang 3.4 as broken on ARM? Either that or have them patched
to disable EHABI exception handling?

Niall

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

Title:
  clang armhf in trusty simply doesn't work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/llvm-toolchain-3.4/+bug/1349789/+subscriptions

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


[Bug 1349789] Re: clang armhf in trusty simply doesn't work

2014-07-30 Thread Niall Douglas
FYI I am one of the Boost core dev team, and this problem emerged during
our prerelease testing of Boost 1.56.

I thought a reasonable test of who is at fault would be if I purged all
trace of clang and llvm from the system, and then download these
prebuilt binaries from llvm:

http://llvm.org/releases/3.4.2/clang+llvm-3.4.2-armv7a-linux-
gnueabihf.tar.xz

I unpack these into /usr/local and ensure perms and ownership are reset
to correct values.

If I now repeat the earlier test I see:

1. I no longer need to manually override -mcpu, because the correct
local CPU is now chosen and the atomics compile instead of the assembler
not recognising instructions. I would assume the default triple of
armv7a-linux-gnueabihf helps a lot here.

2. All the unit tests still hang in the same place as with your clang.

This suggests to me that something is very wrong with Boost on clang on
armhf.

I'll investigate more this end, but fixing the default cpu such that it
supports atomics would be a great help, so I'll leave this issue open
for now. I'll come back if I figure out the cause of the hangs and it's
related to packaging.

Niall

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

Title:
  clang armhf in trusty simply doesn't work

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

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


[Bug 1349789] Re: clang armhf in trusty simply doesn't work

2014-07-30 Thread Niall Douglas
BTW I think some history may be at work here. clang didn't support
native cpu detection back when I was the chief clang person at
BlackBerry, it may well still not. I would assume the default choice of
arm-linux-gnueabihf, judging from google searching, was mainly driven by
RaspPI enthusiasts who obviously wanted an ARMv6 clang. Now, a Cortex-A8
supports atomics just fine, but it could be that arm-linux-gnueabihf
means one thing to GCC (an ARMv6) and something rather less (an ARM7tdmi
for example, the lowest supported ARM CPU) to clang which is ARMv4 or
something.

It might be worth experimenting with a default triple for clang of armv6
-linux-gnueabihf instead. After all, Ubuntu surely does not work on
systems without atomics. I'll give this a try on Saturday and see what
happens.

BTW there is something real weird in Boost on clang armhf, exception
throw catches aren't reliable, this was causing an infinite loop of
terminate(). I'd say 1.56 is going to ship anyway, I'll see if I can
figure out the problem for 1.57, again this will be Saturday.

Niall

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

Title:
  clang armhf in trusty simply doesn't work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/llvm-toolchain-3.4/+bug/1349789/+subscriptions

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


[Bug 1349789] [NEW] clang armhf in trusty simply doesn't work

2014-07-29 Thread Niall Douglas
Public bug reported:

I'm running Ubuntu 14.04 on armhf. clang is from the standard repo:

root@tegra-ubuntu:~# apt-cache show clang
Package: clang
Priority: optional
Section: universe/devel
Installed-Size: 27
Maintainer: Ubuntu Developers ubuntu-devel-disc...@lists.ubuntu.com
Original-Maintainer: LLVM Packaging Team pkg-llvm-t...@lists.alioth.debian.org
Architecture: armhf
Source: llvm-defaults (0.21ubuntu1)
Version: 1:3.4-0ubuntu1
Replaces: clang ( 3.2-1~exp2)
Depends: clang-3.4 (= 3.4~rc3-1~)
Filename: pool/universe/l/llvm-defaults/clang_3.4-0ubuntu1_armhf.deb
Size: 2478
MD5sum: eadb3f7c344e364480bdf7fdd0f698ab
SHA1: ec4d0bfcad42bf536ee8d9257f8930dd32e1a261
SHA256: f6d9a8fbfc06d93cd4c1a2437114454cc1eec805a635efc490a7e1e6eec2b3de
Description-en: C, C++ and Objective-C compiler (LLVM based)
 Clang project is a C, C++, Objective C and Objective C++ front-end
 for the LLVM compiler. Its goal is to offer a replacement to the GNU Compiler
 Collection (GCC).
 .
 Clang implements all of the ISO C++ 1998 and 2001 standards and also provides
 a partial support of C++1y.
 .
 This is a dependency package providing the default clang compiler.
Description-md5: ea1f164ac255f39c6ec78685f71ef19b
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Origin: Ubuntu


Anyway, it does not produce working output. Here are some examples:

https://ci.nedprod.com/view/Boost.AFIO/job/Boost.AFIO%20Build%20POSIX_ARM_clang%203.4/9/consoleFull

This log shows how clang has the wrong default target CPU, so it outputs
unsupported ARM instructions (see the end after the warnings spew).

If I force the target cpu to a cortex-a15 it now at least compiles and
links and starts to run unit tests:

https://ci.nedprod.com/view/Boost.AFIO/job/Boost.AFIO%20Test%20POSIX_ARM_clang%203.4/7/consoleFull

... but hangs in the first unit test, and is timed out. Before you think
it the unit tests, here is the exact same thing for GCC 4.8:

https://ci.nedprod.com/view/Boost.AFIO/job/Boost.AFIO%20Test%20POSIX_ARM_GCC%204.8/7/console

The unit tests all run and pass as expected. Everything also works fine
on x86 and x64 with clang 3.4 on Ubuntu 14.04, this appears to be an
armhf misconfiguration.

Niall

** Affects: llvm-defaults (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/1349789

Title:
  clang armhf in trusty simply doesn't work

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

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


[Bug 1292830] Re: Huge black borders around windows after resuming

2014-05-24 Thread Niall Litchfield
hopefully some more useful info below.

This also occurs for me. Machine is  an x64 (quad core) laptop with
Nvida 560M gpu. The issue occurs, as with dustin and others after
upgrade. nvidia-prime is installed so the hybrid setup is I guess at
default config.

$ uname -r 
3.13.0-24-generic

$ apt list compiz nvidia-prime nvidia-331 
Listing... Done
compiz/trusty-updates 1:0.9.11+14.04.20140423-0ubuntu1 all [upgradable from: 
1:0.9.11+14.04.20140409-0ubuntu1]
nvidia-331/trusty,now 331.38-0ubuntu7 amd64 [installed]
nvidia-prime/trusty,now 0.6.2 amd64 [installed,automatic]

$ apt-cache policy nvidia-331 nvidia-331-updates
nvidia-331:
  Installed: 331.38-0ubuntu7
  Candidate: 331.38-0ubuntu7
  Version table:
 *** 331.38-0ubuntu7 0
500 http://gb.archive.ubuntu.com/ubuntu/ trusty/restricted amd64 
Packages
100 /var/lib/dpkg/status
nvidia-331-updates:
  Installed: (none)
  Candidate: 331.38-0ubuntu7
  Version table:
 331.38-0ubuntu7 0
500 http://gb.archive.ubuntu.com/ubuntu/ trusty/restricted amd64 
Packages

$ apt-cache policy nvidia-331-updates
nvidia-331-updates:
  Installed: (none)
  Candidate: 331.38-0ubuntu7
  Version table:
 331.38-0ubuntu7 0
500 http://gb.archive.ubuntu.com/ubuntu/ trusty/restricted amd64 
Packages

$ apt-cache policy compiz
compiz:
  Installed: 1:0.9.11+14.04.20140409-0ubuntu1
  Candidate: 1:0.9.11+14.04.20140423-0ubuntu1
  Version table:
 1:0.9.11+14.04.20140423-0ubuntu1 0
500 http://gb.archive.ubuntu.com/ubuntu/ trusty-updates/main amd64 
Packages
 *** 1:0.9.11+14.04.20140409-0ubuntu1 0
500 http://gb.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages
100 /var/lib/dpkg/status

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

Title:
  Huge black borders around windows after resuming

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

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


[Bug 1264844] [NEW] Pyopencl dependence on opencl-icd (and the lack of providing packages) makes it tricky to install

2013-12-29 Thread Niall Murphy
Public bug reported:

Goal: install python-pyopencl  on Ubuntu 13.10 using the AMD APP SDK 2.9 drivers
http://developer.amd.com/tools-and-sdks/heterogeneous-computing/amd-accelerated-parallel-processing-app-sdk/
 for CPU emulation on a system with an Intel integrated  video card not 
supported by Intel's drivers. 

Steps:
Download and install AMD APP SDK 2.9 
Install the  ocl-icd-opencl-dev. 
Reboot the machine then install python-pyopencl. 

Result:
py-opencl works, but on on reboot I cannot log into Unity due to openGL issues 
with compiz. 

Cause:
python-pyopencl depends on opencl-icd. 
In my repositories this is only provided by various nvidia-319-updates packages 
and beignet. 
The nvidia packages are selected by apt and install but conflict with, and 
remove ocl-icd-opencl-dev. 
I do not have nvidia hardware. 

Fix: 
I can install beignet which provides opencl-icd and then install 
python-pyopencl and use it with ocl-icd-opencl-dev (ignoring beignet as a 
platform).

Suggestion:
I am unfamiliar with the technical details of icds but:
Should/could  ocl-icd-opencl-dev also provide  opencl-icd? 
Should/could python-pyopencl depend on either ocl-icd-opencl-dev or opencl-icd? 
Should apt detect that I dont have Nvidia hardware and install an AMD or Intel 
driver (beignet) instead?

** Affects: pyopencl (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/1264844

Title:
  Pyopencl dependence on opencl-icd (and the lack of providing packages)
  makes it tricky to install

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

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


[Bug 824255] Re: network-manager-openconnect can’t prompt for passwords

2013-09-17 Thread Niall Durham
Confirming Shabang's workaround fixes my issue (as well as comment #22
and #23).  I'm running 12.04.3 LTS w/ the latest updates.  IIRC my
original install was 11.04 and I used the update-manager to upgrade my
release.

Linux calculon 3.2.0-53-generic #81-Ubuntu SMP Thu Aug 22 21:01:03 UTC
2013 x86_64 x86_64 x86_64 GNU/Linux

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

Title:
  network-manager-openconnect can’t prompt for passwords

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

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

[Bug 1190389] Re: package cpufreqd 2.4.2-2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 134

2013-07-29 Thread Niall Brosnan
I have the same error with cpufreqd.
My CPU is an  AMD Turion(tm) 64 X2 Mobile Technology TL-56
Kernel module is powernow-k8, and cpufreq-set can successfully  be used 
manually.
Bug report tool sent me here to add any comment, as this report is identical to 
my own.

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

Title:
  package cpufreqd 2.4.2-2 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 134

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

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


[Bug 871430] Re: update-manager crashed with python in _run_in_dialog(): Depends: python-minimal (= 2.7.2-7ubuntu1) \u043d\u043e 2.7.2-7ubuntu2 \u0443\u0436\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\

2013-07-14 Thread Niall Donaghy
/var/log/dpkg.log

** Attachment added: /var/log/dpkg.log
   
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/871430/+attachment/3736848/+files/dpkg

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

Title:
  update-manager crashed with python in _run_in_dialog(): Depends:
  python-minimal (= 2.7.2-7ubuntu1) \u043d\u043e 2.7.2-7ubuntu2
  \u0443\u0436\u0435
  \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d

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

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


[Bug 871430] Re: update-manager crashed with python in _run_in_dialog(): Depends: python-minimal (= 2.7.2-7ubuntu1) \u043d\u043e 2.7.2-7ubuntu2 \u0443\u0436\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\

2013-07-14 Thread Niall Donaghy
I managed to trigger this bug in Ubuntu 12.04.2 LTS 64-bit, clean
install (VM).

First round of updates completed, machine restarted, second round of
updates began and /usr/bin/update-manager crashed (see attached).

Workaround was sudo apt-get update; sudo apt-get install python and I
was then able to continue using the Update Manager GUI.

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

Title:
  update-manager crashed with python in _run_in_dialog(): Depends:
  python-minimal (= 2.7.2-7ubuntu1) \u043d\u043e 2.7.2-7ubuntu2
  \u0443\u0436\u0435
  \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d

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

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


[Bug 871430] Re: update-manager crashed with python in _run_in_dialog(): Depends: python-minimal (= 2.7.2-7ubuntu1) \u043d\u043e 2.7.2-7ubuntu2 \u0443\u0436\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\

2013-07-14 Thread Niall Donaghy
/var/crash/_usr_bin_update-manager.1000.crash

** Attachment added: /var/crash/_usr_bin_update-manager.1000.crash
   
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/871430/+attachment/3736849/+files/_usr_bin_update-manager.1000.crash

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

Title:
  update-manager crashed with python in _run_in_dialog(): Depends:
  python-minimal (= 2.7.2-7ubuntu1) \u043d\u043e 2.7.2-7ubuntu2
  \u0443\u0436\u0435
  \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d

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

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


[Bug 891970] Re: msp430-gdb segmentation fault with target remote

2013-04-04 Thread Niall Parker
As this hasn't made it into the repos I tried applying the patch and
rebuilding, however it runs into a failed hunk when patching
sim/configure and I can't see what is wrong with it. Trying a simple
rebuild of the source for gdb-msp430 also fails though without any
patching so I suspect I am missing something ... is there a building
dependency with gcc-msp430 and/or binutils ???

Any pointers to a less terse description of fixing this bug ? ...
thanks.

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

Title:
  msp430-gdb segmentation fault with target remote

To manage notifications about this bug go to:
https://bugs.launchpad.net/gdb-linaro/+bug/891970/+subscriptions

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


Re: [Bug 1162313] Re: Touch pad Doesn't recognise buttons as separate from touch surface

2013-04-02 Thread Niall Brown
Hello Joseph,

I am not very advanced but I will try to learn to install the kernel. Can I
try to install the latest upstream kernel on an Ubuntu USB stick that has
persistence enabled?  I am worried about breaking my main work install but
am not sure if that will work.

Thanks,

Niall


On Mon, Apr 1, 2013 at 2:47 PM, Joseph Salisbury 
joseph.salisb...@canonical.com wrote:

 Would it be possible for you to test the latest upstream kernel?  Refer
 to https://wiki.ubuntu.com/KernelMainlineBuilds . Please test the latest
 v3.9 kernel[0] (Not a kernel in the daily directory) and install both
 the linux-image and linux-image-extra .deb packages.

 If this bug is fixed in the mainline kernel, please add the following
 tag 'kernel-fixed-upstream'.

 If the mainline kernel does not fix this bug, please add the tag:
 'kernel-bug-exists-upstream'.

 If you are unable to test the mainline kernel, for example it will not
 boot, please add the tag: 'kernel-unable-to-test-upstream'.
 Once testing of the upstream kernel is complete, please mark this bug as
 Confirmed.


 Thanks in advance.

 [0] http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.9-rc5-raring/


 ** Changed in: linux (Ubuntu)
Importance: Undecided = Medium

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

 Title:
   Touch pad Doesn't recognise buttons as separate from touch surface

 Status in “linux” package in Ubuntu:
   Confirmed

 Bug description:
   Note that this  is advertised as a multi-touch pad.  However, using
   two fingers stops the mouse movement.  This report is not referring
   the absence of muli-touch.  It is referring to a problem with regular
   touchpad usage caused by this problem.

   Problem:
   The touch pad includes a touch surface and buttons (beneath) all on one
 touch surface.  The entire touch surface can be depressed to click the
 mouse.  The buttons are an extension of the surface and can also be
 depressed to click the mouse.  They are separated into right and left
 areas.  The buttons are functioning for left and right clicks, however, the
 software is not differentiating between the buttons and the touch surface
 for pointer movement.  Sliding your finger on the buttons results in the
 pointer moving on screen.  Therefore, when resting your finger on the left
 or right mouse button (as when preparing to highlight text) you cannot use
 your other finger to move the pointer because the dual input causes the
 pointer to stop.

   What I expected to happen:
   The Touch pad should allow you to rest your finger (without depressing)
 on the right mouse button while still being able to move the mouse pointer.

   Laptop Specs:
   Device Acer Aspire-V5 571-6467
   Mem: 8Gig
   Processor: Intel® Core™ i3-2367M CPU @ 1.40GHz × 4
   Graphics: Intel
   OS: Ubunt 12.12 64-Bit (Dual Boot with windows 7)

   I have never reported a bug.   Suggestions welcome.

   ProblemType: Bug
   DistroRelease: Ubuntu 12.10
   Package: linux-image-3.5.0-26-generic 3.5.0-26.42
   ProcVersionSignature: Ubuntu 3.5.0-26.42-generic 3.5.7.6
   Uname: Linux 3.5.0-26-generic x86_64
   ApportVersion: 2.6.1-0ubuntu10
   Architecture: amd64
   AudioDevicesInUse:
USERPID ACCESS COMMAND
/dev/snd/controlC0:  niallabrown   1593 F pulseaudio
   Date: Sat Mar 30 14:29:20 2013
   HibernationDevice: RESUME=UUID=869bd9ee-7a38-4318-b10e-0323c499a0e0
   InstallationDate: Installed on 2013-03-29 (0 days ago)
   InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64
 (20121017.5)
   MachineType: Acer Aspire V5-571
   MarkForUpload: True
   ProcFB: 0 inteldrmfb
   ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.5.0-26-generic
 root=UUID=e35b2d29-b531-419a-9a84-0a6c44ba9830 ro quiet splash vt.handoff=7
   RelatedPackageVersions:
linux-restricted-modules-3.5.0-26-generic N/A
linux-backports-modules-3.5.0-26-generic  N/A
linux-firmware1.95
   SourcePackage: linux
   UpgradeStatus: No upgrade log present (probably fresh install)
   dmi.bios.date: 04/18/2012
   dmi.bios.vendor: Phoenix Technologies Ltd.
   dmi.bios.version: V1.05.
   dmi.board.asset.tag: Base Board Asset Tag
   dmi.board.name: Aspire V5-571
   dmi.board.vendor: Acer
   dmi.board.version: V1.05.
   dmi.chassis.asset.tag: Asset Tag
   dmi.chassis.type: 9
   dmi.chassis.vendor: Acer
   dmi.chassis.version: V1.05.
   dmi.modalias:
 dmi:bvnPhoenixTechnologiesLtd.:bvrV1.05.:bd04/18/2012:svnAcer:pnAspireV5-571:pvrV1.05.:rvnAcer:rnAspireV5-571:rvrV1.05.:cvnAcer:ct9:cvrV1.05.:
   dmi.product.name: Aspire V5-571
   dmi.product.version: V1.05.
   dmi.sys.vendor: Acer

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



-- 
*Deafblind Intervenor
Consultant for Emergent Communication
613-290-4271

Web Projects
Creativeexpressionsweb.ca : Resources for mobility related communication
issues

[Bug 1162313] [NEW] Touch pad Doesn't recognise buttons as separate from touch surface

2013-03-30 Thread Niall Brown
Public bug reported:

Note that this  is advertised as a multi-touch pad.  However, using two
fingers stops the mouse movement.  This report is not referring the
absence of muli-touch.  It is referring to a problem with regular
touchpad usage caused by this problem.

Problem:
The touch pad includes a touch surface and buttons (beneath) all on one touch 
surface.  The entire touch surface can be depressed to click the mouse.  The 
buttons are an extension of the surface and can also be depressed to click the 
mouse.  They are separated into right and left areas.  The buttons are 
functioning for left and right clicks, however, the software is not 
differentiating between the buttons and the touch surface for pointer movement. 
 Sliding your finger on the buttons results in the pointer moving on screen.  
Therefore, when resting your finger on the left or right mouse button (as when 
preparing to highlight text) you cannot use your other finger to move the 
pointer because the dual input causes the pointer to stop.

What I expected to happen:
The Touch pad should allow you to rest your finger (without depressing) on the 
right mouse button while still being able to move the mouse pointer.

Laptop Specs:
Device Acer Aspire-V5 571-6467
Mem: 8Gig
Processor: Intel® Core™ i3-2367M CPU @ 1.40GHz × 4
Graphics: Intel
OS: Ubunt 12.12 64-Bit (Dual Boot with windows 7)

I have never reported a bug.   Suggestions welcome.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: linux-image-3.5.0-26-generic 3.5.0-26.42
ProcVersionSignature: Ubuntu 3.5.0-26.42-generic 3.5.7.6
Uname: Linux 3.5.0-26-generic x86_64
ApportVersion: 2.6.1-0ubuntu10
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  niallabrown   1593 F pulseaudio
Date: Sat Mar 30 14:29:20 2013
HibernationDevice: RESUME=UUID=869bd9ee-7a38-4318-b10e-0323c499a0e0
InstallationDate: Installed on 2013-03-29 (0 days ago)
InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
MachineType: Acer Aspire V5-571
MarkForUpload: True
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.5.0-26-generic 
root=UUID=e35b2d29-b531-419a-9a84-0a6c44ba9830 ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-3.5.0-26-generic N/A
 linux-backports-modules-3.5.0-26-generic  N/A
 linux-firmware1.95
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 04/18/2012
dmi.bios.vendor: Phoenix Technologies Ltd.
dmi.bios.version: V1.05.
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: Aspire V5-571
dmi.board.vendor: Acer
dmi.board.version: V1.05.
dmi.chassis.asset.tag: Asset Tag
dmi.chassis.type: 9
dmi.chassis.vendor: Acer
dmi.chassis.version: V1.05.
dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrV1.05.:bd04/18/2012:svnAcer:pnAspireV5-571:pvrV1.05.:rvnAcer:rnAspireV5-571:rvrV1.05.:cvnAcer:ct9:cvrV1.05.:
dmi.product.name: Aspire V5-571
dmi.product.version: V1.05.
dmi.sys.vendor: Acer

** Affects: linux (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/1162313

Title:
  Touch pad Doesn't recognise buttons as separate from touch surface

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

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

[Bug 1119868] [NEW] [7466FVG, Conexant CX20561 (Hermosa), Speaker, Internal] Underruns, dropouts or crackling sound

2013-02-08 Thread Niall Murphy
Public bug reported:

Sound on built in speakers on Thinkpad X200i crackles, goes silent, returns to 
normal. 
Restarting pluseaudio helps for a few seconds and sometimes the test sound 
button on the sound settings dialogue also helps.

This problem re-appeared after upgrade to 12.04.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: alsa-base 1.0.25+dfsg-0ubuntu3
ProcVersionSignature: Ubuntu 3.5.0-23.35-generic 3.5.7.2
Uname: Linux 3.5.0-23-generic x86_64
ApportVersion: 2.6.1-0ubuntu10
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  nmurphy   16063 F pulseaudio
 /dev/snd/pcmC0D0c:   nmurphy   16063 F...m pulseaudio
 /dev/snd/pcmC0D0p:   nmurphy   16063 F...m pulseaudio
Date: Sat Feb  9 00:13:11 2013
InstallationDate: Installed on 2012-05-19 (265 days ago)
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
MarkForUpload: True
PackageArchitecture: all
SourcePackage: alsa-driver
Symptom: audio
Symptom_AlsaPlaybackTest: ALSA playback test through plughw:Intel successful
Symptom_Card: Built-in Audio - HDA Intel
Symptom_Jack: Speaker, Internal
Symptom_PulsePlaybackTest: PulseAudio playback test successful
Symptom_Type: Underruns, dropouts, or crackling sound
Title: [7466FVG, Conexant CX20561 (Hermosa), Speaker, Internal] Underruns, 
dropouts or crackling sound
UpgradeStatus: Upgraded to quantal on 2012-10-31 (100 days ago)
dmi.bios.date: 09/17/2009
dmi.bios.vendor: LENOVO
dmi.bios.version: 7XET60WW (3.10 )
dmi.board.name: 7466FVG
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:bvr7XET60WW(3.10):bd09/17/2009:svnLENOVO:pn7466FVG:pvrThinkPadX200s:rvnLENOVO:rn7466FVG:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 7466FVG
dmi.product.version: ThinkPad X200s
dmi.sys.vendor: LENOVO

** Affects: alsa-driver (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/1119868

Title:
  [7466FVG, Conexant CX20561 (Hermosa), Speaker, Internal] Underruns,
  dropouts or crackling sound

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

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


[Bug 1108245] [NEW] opendkim can't be installed if opendkim-tools package already is

2013-01-28 Thread Niall O Broin
Public bug reported:

Ubuntu 12.04

Up to date

opendkim can't be installed together with opendkim-tools because of
version conflict:

 opendkim-tools : Breaks: opendkim ( 2.5.2+dfsg-2~) but 2.5.2+dfsg-
1ubuntu3 is to be installed.

I don't know if this problem is really an opendkim or opendkim-tools
issue - quite likely it's simply a packaging metadata issue.

** Affects: opendkim (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/1108245

Title:
  opendkim can't be installed if opendkim-tools package already is

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

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


[Bug 1090401] [NEW] loading vhci_hcd module hangs ubuntu 12.10 x86_64

2012-12-14 Thread Niall Riddell
Public bug reported:

type sudo modprobe vhci_hcd into a terminal and Ubuntu 12.10 x86_64
hangs.  Requires reboot.

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


** Tags: usbip

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

Title:
  loading vhci_hcd module hangs ubuntu 12.10 x86_64

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

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


[Bug 1090401] Re: loading vhci_hcd module hangs ubuntu 12.10 x86_64

2012-12-14 Thread Niall Riddell
uname -rvp

3.5.0-17-generic #28-Ubuntu SMP Tue Oct 9 19:31:23 UTC 2012 x86_64

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

Title:
  loading vhci_hcd module hangs ubuntu 12.10 x86_64

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

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


[Bug 1026608] [NEW] Package doesn't install correctly. See upstream debian install bug for details.

2012-07-19 Thread Niall Haslam
Public bug reported:

See here:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=636634

Distributor ID: Ubuntu
Description:Ubuntu 12.04 LTS
Release:12.04
Codename:   precise

mafft:
  Installed: (none)
  Candidate: 6.850-1
  Version table:
 6.850-1 0
500 http://ie.archive.ubuntu.com/ubuntu/ precise/universe amd64 Packages

** Affects: mafft (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/1026608

Title:
  Package doesn't install correctly. See upstream debian install bug for
  details.

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

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


[Bug 997799] Re: remmina fails to login to ssh using identity file

2012-06-30 Thread Niall Parker
I've noticed I can get it to work if each time I set the identity file
for the connection. The id file selected isn't sticking though and
reverts to id_rsa.

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

Title:
  remmina fails to login to ssh using identity file

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

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


[Bug 232264] Re: vim (and gvim) crash frequently

2012-03-01 Thread Niall Murphy
** Changed in: vim (Ubuntu)
   Status: New = Fix Released

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

Title:
  vim (and gvim) crash frequently

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

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


[Bug 856779] Re: gvim slow to respond

2012-01-15 Thread Niall Murphy
Hi Rex,

This patch is working perfectly! 
Good work! 
Thank you.

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

Title:
  gvim slow to respond

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

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


[Bug 856779] Re: gvim slow to respond

2011-12-06 Thread Niall Murphy
Hi Rex, 
Sorry, let me explain again. 

With the patch gvim is fully responsive. 
It is also fully responsive with gvim --nofork.

There is a new issue raised by the patch:
Running gvim from a terminal now acts identically to gvim --nofork in the 
sense that 
 it does not fork from the bash process. 
To have the terminal free I must run gvim .

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

Title:
  gvim slow to respond

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

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


[Bug 856779] Re: gvim slow to respond

2011-12-05 Thread Niall Murphy
Thanks for this Rex.
I have installed the packages from the PPA. 

I can now start gvim from a terminal and gvim is immediately responsive. 
gVim seems to be back to its former speed, I can edit large files with folds 
again! 

However, when gvim is run from a terminal it does not fork by default. 
Running  gvim --nofork and gvim gives the same effect. 
(I am almost certain I have removed all aliases/scripts that inserted --nofork)

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

Title:
  gvim slow to respond

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

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


[Bug 893779] [NEW] chm2pdf: exits with htmldoc segfault, no pdf generated

2011-11-22 Thread Niall Murphy
Public bug reported:

Version 0.9.1-1.1ubuntu5 in ubuntu 11.10

$ chm2pdf --book --verbose  plasmid.chm plasmid.pdf
CHM2PDF_WORK_DIR = /tmp/tmplXmOpr/plasmid
CHM2PDF_ORIG_DIR = /tmp/tmpwpTZY2/plasmid
Correcting links in the HTML files...
Producing the PDF from the 446 individual HTML files...
Segmentation fault
Something wrong happened when launching htmldoc.
exit value:  35584
Check if output exists or if it is good.
Done.

strace ends with 
unlink(/tmp/tmpNE5ISe/plasmid/files/page_416.html) = 0
rmdir(/tmp/tmpNE5ISe/plasmid/files)   = 0
lstat(/tmp/tmpNE5ISe/plasmid/TOC.hhc, {st_mode=S_IFREG|0664, st_size=62139, 
...}) = 0
unlink(/tmp/tmpNE5ISe/plasmid/TOC.hhc) = 0
lstat(/tmp/tmpNE5ISe/plasmid/#STRINGS, {st_mode=S_IFREG|0664, st_size=70, 
...}) = 0
unlink(/tmp/tmpNE5ISe/plasmid/#STRINGS) = 0
lstat(/tmp/tmpNE5ISe/plasmid/#SYSTEM, {st_mode=S_IFREG|0664, st_size=111, 
...}) = 0
unlink(/tmp/tmpNE5ISe/plasmid/#SYSTEM) = 0
rmdir(/tmp/tmpNE5ISe/plasmid) = 0
rmdir(/tmp/tmpNE5ISe) = 0
rt_sigaction(SIGINT, {SIG_DFL, [], SA_RESTORER, 0x7f01d7d7a060}, {0x4f13d0, [], 
SA_RESTORER, 0x7f01d6b5e420}, 8) = 0
brk(0x287d000)  = 0x287d000
exit_group(0)   = ?


Some similar looking bugs 
https://bugzilla.redhat.com/show_bug.cgi?id=581726
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477390

** Affects: chm2pdf (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/893779

Title:
  chm2pdf: exits with htmldoc segfault, no pdf generated

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

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


[Bug 872095] Re: gvim from vim-gnome hang up on start

2011-10-26 Thread Niall Murphy
*** This bug is a duplicate of bug 856779 ***
https://bugs.launchpad.net/bugs/856779

** This bug has been marked a duplicate of bug 856779
   gvim slow to respond

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

Title:
  gvim from vim-gnome hang up on start

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

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


[Bug 877193] Re: gvim freezes when started from a terminal

2011-10-26 Thread Niall Murphy
*** This bug is a duplicate of bug 856779 ***
https://bugs.launchpad.net/bugs/856779

** This bug has been marked a duplicate of bug 856779
   gvim slow to respond

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

Title:
  gvim freezes when started from a terminal

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

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


[Bug 771810] Re: gvim occasionally shows error Unable to register window with path... Timeout was reached

2011-05-16 Thread Niall Murphy
*** This bug is a duplicate of bug 781180 ***
https://bugs.launchpad.net/bugs/781180

** This bug has been marked a duplicate of bug 781180
   gvim loses menu with Unity interface
 * You can subscribe to bug 781180 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/vim/+bug/781180/+subscribe

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

Title:
  gvim occasionally shows error Unable to register window with path...
  Timeout was reached

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


[Bug 632412] Re: Windows 2 rows shorter than it should be

2011-05-02 Thread Niall Durham
I first encountered this problem after upgrading from 10.10 (an upgrade
from 10.04) to 11.04.  I did not see it in 10.10.  I am using the system
fixed width font.

To reproduce:

/usr/bin/gnome-terminal --geometry=80x24 --show-menubar

My terminal dimension is actually 80x22.  When I hide the menubar, the
terminal dimensions match the requested geometry:

/usr/bin/gnome-terminal --geometry=80x24 --hide-menubar

I tested the above commands under my desktop (10.10) and they both yield
an 80x24 dimension terminal.

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

Title:
  Windows 2 rows shorter than it should be

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


[Bug 716149] Re: MSN/Hotmail conflict on Empathy

2011-02-14 Thread Niall Deacon
9.10 Haven't upgraded since I installed it.

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

Title:
  MSN/Hotmail conflict on Empathy

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


[Bug 716438] Re: add-apt-repository should have option to use port 80

2011-02-12 Thread Niall Gallagher
@Kurt the comment #9 is the same workaround that I linked to above
actually i.e. how to modify the command to use port 80. It does work
thanks, i'm using that in the meantime.

@Brian that's good news, if so then this issue will be solved in Natty.
Sounds like the problem has already been addressed! Changing to Fix
Released.


** Changed in: software-properties (Ubuntu)
   Status: New = Fix Released

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

Title:
  add-apt-repository should have option to use port 80

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


[Bug 435193] Re: keyserver.ubuntu.com down all time - (110) Connection timed out

2011-02-10 Thread Niall Gallagher
*** This bug is a duplicate of bug 524416 ***
https://bugs.launchpad.net/bugs/524416

** This bug has been marked a duplicate of bug 524416
   keyserver.ubuntu.com port 80 vs 11371 and firewalls
 * You can subscribe to bug 524416 by following this link: 
https://bugs.launchpad.net/launchpad/+bug/524416/+subscribe

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

Title:
  keyserver.ubuntu.com down all time - (110) Connection timed out

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


[Bug 376871] Re: repositary indexes undownloadable--jaunty

2011-02-10 Thread Niall Gallagher
*** This bug is a duplicate of bug 524416 ***
https://bugs.launchpad.net/bugs/524416

** This bug is no longer a duplicate of bug 435193
   keyserver.ubuntu.com down all time - (110) Connection timed out
** This bug has been marked a duplicate of bug 524416
   keyserver.ubuntu.com port 80 vs 11371 and firewalls
 * You can subscribe to bug 524416 by following this link: 
https://bugs.launchpad.net/launchpad/+bug/524416/+subscribe

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

Title:
  repositary indexes undownloadable--jaunty

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


[Bug 716438] [NEW] add-apt-repository should have option to use port 80

2011-02-10 Thread Niall Gallagher
Public bug reported:

keyserver.ubuntu.com now listens on port 80 as well as port 11371 - see
https://bugs.launchpad.net/launchpad/+bug/524416

However by default, the add-apt-repository command still uses port
11371, which does not work behind a firewall, and it does not provide an
option to use port 80 instead.

This bug is to request that add-apt-repository get an option to use port
80 (e.g. command line switch), or to use port 80 by default.

There is a similar suggestion mentioned here, but it has not actually
been filed as a bug: https://answers.launchpad.net/ubuntu-
website/+question/79193

FYI for the meantime I found instructions for modifying add-apt-
repository to use port 80 here: http://www.omgubuntu.co.uk/2011/01/how-
to-add-repositories-to-ubuntu-from-behind-a-firewall/

** Affects: ubuntu
 Importance: Undecided
 Status: New

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

Title:
  add-apt-repository should have option to use port 80

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


[Bug 716149] [NEW] MSN/Hotmail conflict on Empathy

2011-02-09 Thread Niall Deacon
Public bug reported:

Hi folks, I've been using Empathy for 18 months now and until the last
week or two everything has gone fine. I normally leave a Firefox tab at
work logged in to Hotmail and run Empathy on my laptop at home
connecting to multiple accounts including an MSN one. In the last few
weeks when I've logged on to Empathy it as failed to connect to MSN and
returns Name in Use. The solution I found was to navigate away from
Hotmail on my machine at work, after that MSN worked fine. I have
checked and even though there is an option to login to MSN from a
Hotmail window I have never selected it and logging in and out of MSN on
the Hotmail window does nothing.

Is there any way to fix this without a workaround? The problem only
began in the last week or two.

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

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

Title:
  MSN/Hotmail conflict on Empathy

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


[Bug 711500] Re: Update(s) causes GRUB's default entry in /etc/default/grub to change from string value to integer value, booting the wrong option

2011-02-02 Thread Niall
Thank you both Colin and Jordan. You are both very much on the ball.
Glad to see that this bug is less serious than I thought, at least in
terms of the number of affected users. Duly noted that this is an issue
with StartUp-Manager and that it is an optional package. Used the
workaround suggested and I have been working with grub directly. I have
removed the StartUp-Manager package for the time-being.

Requested files in attached .tar.gz (I can only add one file it seems)

Regards,

Niall.

** Attachment added: grub.tar.gz
   
https://bugs.launchpad.net/ubuntu/+source/startupmanager/+bug/711500/+attachment/1824328/+files/grub.tar.gz

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

Title:
  Update(s) causes GRUB's default entry in /etc/default/grub to change
  from string value to integer value, booting the wrong option

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


[Bug 711500] [NEW] Update(s) causes GRUB's default entry in /etc/default/grub to change from string value to integer value, booting the wrong option

2011-02-01 Thread Niall
Public bug reported:

Binary package hint: grub2

Description:Ubuntu 10.10
Release:10.10

niall@niall-workstation:~$ apt-cache policy grub2
grub2:
  Installed: (none)
  Candidate: 1.98+20100804-5ubuntu3
  Version table:
 1.98+20100804-5ubuntu3 0
500 http://gb.archive.ubuntu.com/ubuntu/ maverick/universe i386 Packages

===
What should happen: My custom menu entry in GRUB should boot by default

What happens instead: Recent updates at 0830GMT on 1st Feb 2011 change
the default entry in /etc/default/grub to an integer (literal: 8)
instead of a string value, ie: menu entry title. Caused my machine to
boot into memtest86+ every time.

Workaround: Edit the file in question and run update-grub2 or else use
the System  Administration  StartUp-Manager tool.

This bug could leave thousands of machines inoperable and do untold
damage to the reputation of linux, Ubuntu and Canonical. Please address
this as a matter of urgency. Thank you.

Niall Donaghy

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: grub-common 1.98+20100804-5ubuntu3
ProcVersionSignature: Ubuntu 2.6.35-24.42-generic-pae 2.6.35.8
Uname: Linux 2.6.35-24-generic-pae i686
NonfreeKernelModules: nvidia
Architecture: i386
Date: Tue Feb  1 20:49:12 2011
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
ProcEnviron:
 LANG=en_GB.utf8
 SHELL=/bin/bash
SourcePackage: grub2

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


** Tags: apport-bug boot cycle grub grub2 i386 maverick memtest86+

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

Title:
  Update(s) causes GRUB's default entry in /etc/default/grub to change
  from string value to integer value, booting the wrong option

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


[Bug 711500] Re: Update(s) causes GRUB's default entry in /etc/default/grub to change from string value to integer value, booting the wrong option

2011-02-01 Thread Niall


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

Title:
  Update(s) causes GRUB's default entry in /etc/default/grub to change
  from string value to integer value, booting the wrong option

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


[Bug 434351] Re: gnome-language selector is labyrinthine

2010-12-10 Thread Niall Murphy
To change the system language I had to rely on a how to: 
 
http://www.howtogeek.com/howto/17528/change-the-user-interface-language-in-ubuntu/

The bits I was confused with were:
1. Once I had installed the desired language I expected its color to change 
from grey to black. 
I also semi expected it to jump up to the top of the list for use as a 
system language. 
2. It was not obvious to me that I had to click on the greyed-out language and 
drag it up the list. 
Because it was grey I thought it was not available.
However it was obvious to me that I could rearrange the black colored 
languages.

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

Title:
  gnome-language selector is labyrinthine

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


[Bug 642091] Re: No resume after suspend - [ACPI: _PSW execution failed] dell 1012 - aspireone 721

2010-12-06 Thread Niall Parker
WORKAROUND: see https://secure.theplatform.info/user/mateibota/view
/linux-suspend-hibernate-fix

This replaces ACPI with APM and may have some other side effects but
does allow one to suspend and resume without a 5 minute delay (thankyou
Matei !)

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

Title:
  No resume after suspend - [ACPI: _PSW execution failed] dell 1012 - aspireone 
721

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


[Bug 644644] Re: Frequent PA crashes during playback - pa_stream_cork() failed: Connection terminated and pa_stream_writable_size(): Connection failed

2010-11-29 Thread Niall
Can confirm this bug on two machines with fresh installs of Ubuntu
10.10, one with Desktop Edition, one with Netbook Edition.

Asus 1005HA, Intel HDA audio: 
   00:1b.0 Audio Device: Intel Corporation N10/ICH 7 Family High Definition 
Audio Controller (rev 02)

Asus P5Q Pro system, Envy24 / VIA ICE:
   07:01.0 Multimedia audio controller: VIA Technologies Inc. ICE1712 [Envy24] 
PCI Multi-Channel I/O Controller (rev 02)

As a few of the later comments are suggesting that it is audio driver
related, I hope this helps. The drivers I am using are simply whatever
Ubuntu defaults to using for these devices. On the ICE1712 chip there's
a completely unrelated bug which means one cannot access the analogue
outputs which required me to reconfigure Pulseaudio a little, THIS bug
(644644) was present before the modification.

I'm happy to supply more information if requested as I have two fairly
fresh systems here on which to test.

Regards,
Niall.

-- 
Frequent PA crashes during playback - pa_stream_cork() failed: Connection 
terminated and pa_stream_writable_size(): Connection failed
https://bugs.launchpad.net/bugs/644644
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 642091] Re: No resume after suspend - dell 1012 - aspireone 721

2010-11-26 Thread Niall Parker
It affects my system as well (aspire one 721-3922 with maverick), it
appeared locked up on resume from suspend but did finally wake up after
5 minutes as predicted. Wireless was off and needed to be switched on
again via fn-F3, network manager didn't need a restart, just a minute or
two to recognize it.

Unlike Norbert above, suspend works just fine in Win 7 so may not be
bios ?

I also tried hibernate but it doesn't seem to finish (leaves backlight
on and blinks power lights orange) ... needs further investigation.

-- 
No resume after suspend - dell 1012 - aspireone 721
https://bugs.launchpad.net/bugs/642091
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 144406] Re: some windows do not appear in the window list

2010-11-22 Thread Niall Gallagher
Finally this issue is fixed :)

I combined Paul and Miklos's findings into a script (attached), which
should (YMMV) install the fix automatically on ubuntu 10.10.

Usage:

sudo sh fix_java_compiz.sh


** Attachment added: fix_java_compiz.sh
   
https://bugs.launchpad.net/ubuntu/+source/libwnck/+bug/144406/+attachment/1741633/+files/fix_java_compiz.sh

-- 
some windows do not appear in the window list
https://bugs.launchpad.net/bugs/144406
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 630773] Re: Huawei 3G Vodafone dongle doesn't work without installing 'usb-modeswitch'

2010-09-13 Thread Niall
Apologies friends,

My Huawei Vodafone Dongle does work, thanks to the install of usb-
modeswitch.

Sorry for the confusion, I thought Harcesz had made it clear that the
problem was solved by that simple installation, more here:
http://leo.gaggl.com/2010/05/huawei-k3765-on-ubuntu-10-04-lucid/

Thanks a mill, Niall


 Niall: Can you please confirm that your Huawei 3G Vodafone dongle fails
 to work, even with usb-modeswitch and usb-modeswitch-data packages
 installed?

 ** Changed in: usb-modeswitch (Ubuntu)
  Assignee: (unassigned) = Didier Raboud (odyx)

 --
 Huawei 3G Vodafone dongle doesn't work without installing 'usb-modeswitch'
 https://bugs.launchpad.net/bugs/630773
 You received this bug notification because you are a direct subscriber
 of the bug.

 Status in “usb-modeswitch” package in Ubuntu: Triaged

 Bug description:
 Binary package hint: udev

 Ubuntu only operating system on my laptop.

 I use a Vodafone mobile broadband stick to connect to the internet. It's
 designed to work on Windows. I'm getting errors when I try to run it, or
 auto run it now in Ubuntu. Help and Troubleshooting advice hasn't worked
 and I'm here because I've been prompted by Troubleshhoting to file a bug
 against the udev package using the following command in terminal:
 ubuntu-bug udev

 ProblemType: Bug
 DistroRelease: Ubuntu 10.04
 Package: udev 151-12.1
 ProcVersionSignature: Ubuntu 2.6.32-24.42-generic 2.6.32.15+drm33.5
 Uname: Linux 2.6.32-24-generic i686
 Architecture: i386
 Date: Sun Sep  5 12:03:59 2010
 InstallationMedia: Ubuntu 10.04.1 LTS Lucid Lynx - Release i386
 (20100816.1)
 MachineType: Dell Inc. Latitude D620
 PccardctlIdent:
  Socket 0:
no product info available
 PccardctlStatus:
  Socket 0:
no card
 ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-24-generic
 root=UUID=3be323d0-2b17-4f29-9859-cfbbd97ce63d ro quiet splash
 ProcEnviron:
  LANG=en_IE.utf8
  SHELL=/bin/bash
 SourcePackage: udev
 dmi.bios.date: 05/16/2008
 dmi.bios.vendor: Dell Inc.
 dmi.bios.version: A10
 dmi.board.name: 0FT292
 dmi.board.vendor: Dell Inc.
 dmi.chassis.type: 8
 dmi.chassis.vendor: Dell Inc.
 dmi.modalias:
 dmi:bvnDellInc.:bvrA10:bd05/16/2008:svnDellInc.:pnLatitudeD620:pvr:rvnDellInc.:rn0FT292:rvr:cvnDellInc.:ct8:cvr:
 dmi.product.name: Latitude D620
 dmi.sys.vendor: Dell Inc.

 To unsubscribe from this bug, go to:
 https://bugs.launchpad.net/ubuntu/+source/usb-modeswitch/+bug/630773/+subscribe


-- 
Huawei 3G Vodafone dongle doesn't work without installing 'usb-modeswitch'
https://bugs.launchpad.net/bugs/630773
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 630773] [NEW] vodafone mobile broadband stick won't connect

2010-09-05 Thread Niall
Public bug reported:

Binary package hint: udev

Ubuntu only operating system on my laptop.

I use a Vodafone mobile broadband stick to connect to the internet. It's
designed to work on Windows. I'm getting errors when I try to run it, or
auto run it now in Ubuntu. Help and Troubleshooting advice hasn't worked
and I'm here because I've been prompted by Troubleshhoting to file a bug
against the udev package using the following command in terminal:
ubuntu-bug udev

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: udev 151-12.1
ProcVersionSignature: Ubuntu 2.6.32-24.42-generic 2.6.32.15+drm33.5
Uname: Linux 2.6.32-24-generic i686
Architecture: i386
Date: Sun Sep  5 12:03:59 2010
InstallationMedia: Ubuntu 10.04.1 LTS Lucid Lynx - Release i386 (20100816.1)
MachineType: Dell Inc. Latitude D620
PccardctlIdent:
 Socket 0:
   no product info available
PccardctlStatus:
 Socket 0:
   no card
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-24-generic 
root=UUID=3be323d0-2b17-4f29-9859-cfbbd97ce63d ro quiet splash
ProcEnviron:
 LANG=en_IE.utf8
 SHELL=/bin/bash
SourcePackage: udev
dmi.bios.date: 05/16/2008
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A10
dmi.board.name: 0FT292
dmi.board.vendor: Dell Inc.
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvrA10:bd05/16/2008:svnDellInc.:pnLatitudeD620:pvr:rvnDellInc.:rn0FT292:rvr:cvnDellInc.:ct8:cvr:
dmi.product.name: Latitude D620
dmi.sys.vendor: Dell Inc.

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


** Tags: apport-bug i386 lucid

-- 
vodafone mobile broadband stick won't connect
https://bugs.launchpad.net/bugs/630773
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 630773] Re: vodafone mobile broadband stick won't connect

2010-09-05 Thread Niall

** Attachment added: BootDmesg.txt
   
https://bugs.launchpad.net/bugs/630773/+attachment/1545683/+files/BootDmesg.txt

** Attachment added: CurrentDmesg.txt
   
https://bugs.launchpad.net/bugs/630773/+attachment/1545684/+files/CurrentDmesg.txt

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/630773/+attachment/1545685/+files/Dependencies.txt

** Attachment added: Lspci.txt
   https://bugs.launchpad.net/bugs/630773/+attachment/1545686/+files/Lspci.txt

** Attachment added: Lsusb.txt
   https://bugs.launchpad.net/bugs/630773/+attachment/1545687/+files/Lsusb.txt

** Attachment added: ProcCpuinfo.txt
   
https://bugs.launchpad.net/bugs/630773/+attachment/1545688/+files/ProcCpuinfo.txt

** Attachment added: ProcInterrupts.txt
   
https://bugs.launchpad.net/bugs/630773/+attachment/1545689/+files/ProcInterrupts.txt

** Attachment added: ProcModules.txt
   
https://bugs.launchpad.net/bugs/630773/+attachment/1545690/+files/ProcModules.txt

** Attachment added: UdevDb.txt
   https://bugs.launchpad.net/bugs/630773/+attachment/1545691/+files/UdevDb.txt

** Attachment added: UdevLog.txt
   https://bugs.launchpad.net/bugs/630773/+attachment/1545692/+files/UdevLog.txt

-- 
vodafone mobile broadband stick won't connect
https://bugs.launchpad.net/bugs/630773
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 630773] Re: vodafone mobile broadband stick won't connect

2010-09-05 Thread Niall
Thanks a mill to Paul for the quick response and instructions to do the
following:

  1. Run: Applications-Accessories-Terminal
  2. type 'lsusb'  (list USB devices)
  3. copy and paste the output into this bug report

the important bit will be the : ID number corresponding to the
3G dongle and will allow us to know who manufactured it and what model
it is, and thus to be able to auto-configure the modem in future.

This is the 'output'

Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 004: ID 0b97:7762 O2 Micro, Inc. Oz776 SmartCard Reader
Bus 002 Device 003: ID 0b97:7761 O2 Micro, Inc. Oz776 1.1 Hub
Bus 002 Device 002: ID 413c:a005 Dell Computer Corp. Internal 2.0 Hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 009: ID 12d1:1520 Huawei Technologies Co., Ltd. 
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

This appears to be the relevant bit of the above: Bus 001 Device 009: ID
12d1:1520 Huawei Technologies Co., Ltd.

Niall

-- 
vodafone mobile broadband stick won't connect
https://bugs.launchpad.net/bugs/630773
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 630773] Re: vodafone mobile broadband stick won't connect

2010-09-05 Thread Niall
Hi Paul, thanks a mill for the response.

Here's the output from that instruction

Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 004: ID 0b97:7762 O2 Micro, Inc. Oz776 SmartCard Reader
Bus 002 Device 003: ID 0b97:7761 O2 Micro, Inc. Oz776 1.1 Hub
Bus 002 Device 002: ID 413c:a005 Dell Computer Corp. Internal 2.0 Hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 009: ID 12d1:1520 Huawei Technologies Co., Ltd.
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

This appears to be the relevant bit of the above:
Bus 001 Device 009: ID 12d1:1520 Huawei Technologies Co., Ltd.

I've pasted it into the bug report as a comment. Is that the correct thing
to do or is emailing it here enough?

Niall

 Hello Niall.  Linux and Ubuntu generally has drivers for mobile
 broadband drivers built-in to the operating system.  On MS Windows the
 drivers are not built-in, so the mobile broadband card first pops up
 pretending to be a mini CD-ROM with the installation drivers (for MS
 Windows only) on this pretend CD-ROM.

 In order to discover what card you have (if it is a very new one,
 perhaps they have not been enabled in Ubuntu yet), please could you do
 the following:

   1. Run: Applications-Accessories-Terminal
   2. type 'lsusb'  (list USB devices)
   3. copy and paste the output into this bug report

 the important bit will be the : ID number corresponding to the
 3G dongle and will allow us to know who manufactured it and what model
 it is, and thus to be able to auto-configure the modem in future.


 ** Changed in: udev (Ubuntu)
Importance: Undecided = Medium

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

 --
 vodafone mobile broadband stick won't connect
 https://bugs.launchpad.net/bugs/630773
 You received this bug notification because you are a direct subscriber
 of the bug.

 Status in “udev” package in Ubuntu: Incomplete

 Bug description:
 Binary package hint: udev

 Ubuntu only operating system on my laptop.

 I use a Vodafone mobile broadband stick to connect to the internet. It's
 designed to work on Windows. I'm getting errors when I try to run it, or
 auto run it now in Ubuntu. Help and Troubleshooting advice hasn't worked
 and I'm here because I've been prompted by Troubleshhoting to file a bug
 against the udev package using the following command in terminal:
 ubuntu-bug udev

 ProblemType: Bug
 DistroRelease: Ubuntu 10.04
 Package: udev 151-12.1
 ProcVersionSignature: Ubuntu 2.6.32-24.42-generic 2.6.32.15+drm33.5
 Uname: Linux 2.6.32-24-generic i686
 Architecture: i386
 Date: Sun Sep  5 12:03:59 2010
 InstallationMedia: Ubuntu 10.04.1 LTS Lucid Lynx - Release i386
 (20100816.1)
 MachineType: Dell Inc. Latitude D620
 PccardctlIdent:
  Socket 0:
no product info available
 PccardctlStatus:
  Socket 0:
no card
 ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-24-generic
 root=UUID=3be323d0-2b17-4f29-9859-cfbbd97ce63d ro quiet splash
 ProcEnviron:
  LANG=en_IE.utf8
  SHELL=/bin/bash
 SourcePackage: udev
 dmi.bios.date: 05/16/2008
 dmi.bios.vendor: Dell Inc.
 dmi.bios.version: A10
 dmi.board.name: 0FT292
 dmi.board.vendor: Dell Inc.
 dmi.chassis.type: 8
 dmi.chassis.vendor: Dell Inc.
 dmi.modalias:
 dmi:bvnDellInc.:bvrA10:bd05/16/2008:svnDellInc.:pnLatitudeD620:pvr:rvnDellInc.:rn0FT292:rvr:cvnDellInc.:ct8:cvr:
 dmi.product.name: Latitude D620
 dmi.sys.vendor: Dell Inc.

 To unsubscribe from this bug, go to:
 https://bugs.launchpad.net/ubuntu/+source/udev/+bug/630773/+subscribe


-- 
vodafone mobile broadband stick won't connect
https://bugs.launchpad.net/bugs/630773
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 583469] Re: New chat windows cannot be raised

2010-08-06 Thread Niall Murphy
Ok I can reproduce the bug by leaving the buddy list or chat window on another 
monitor when I shut down the computer.
When I start without the extra monitor I cannot see or focus empathy windows.

-- 
New chat windows cannot be raised
https://bugs.launchpad.net/bugs/583469
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 583469] Re: New chat windows cannot be raised

2010-07-30 Thread Niall Murphy
This bug also appears for the buddy list.

I think it has something to do with dual monitors.

Maybe it is caused by leaving the buddy list or chat window on another monitor 
when I shut down.
Then when I start up in another place without the extra monitor, empathy doesnt 
know that the other monitor is not there.

I will test this theory as soon as I can.


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

-- 
New chat windows cannot be raised
https://bugs.launchpad.net/bugs/583469
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 519583] Re: can't add, move, unlock applets no clock

2010-07-06 Thread Niall Brosnan
I have the same issue with adding applets.
Of course I can work around it, but for a release titled
Netbook Remix to prevent a user from simply adding a CAPS LOCK status applet 
to the system is shortsighted.

-- 
can't add, move, unlock applets  no clock
https://bugs.launchpad.net/bugs/519583
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 583469] Re: New chat windows cannot be raised

2010-06-13 Thread Niall Murphy
All was well for a few weeks but now the same problem has appeared for
the Contact list and Chat windows.

I do not know what is triggering this.


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

-- 
New chat windows cannot be raised
https://bugs.launchpad.net/bugs/583469
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 464535] Re: Battery monitor on tray says Laptop battery is fully charged all the time

2010-05-21 Thread Niall Brosnan
I see this behaviour on a Dell Inspiron 1150 running Lucid.
The battery drains completely to the point of immediate power off.

Gnome power monitor in tray still reports AC online, and Laptop battery is 
charged
The problem I believe is causing this appears under the report for Power 
Statistics.
If I switch to AC Adapter, the figure for Refreshed  can stretch to at 
least 6000 seconds.
I have seen the battery suddenly start to report correctly and see this counter 
reset to a figure
recording a recent check of power state.

The state information under /proc/acpi is always correct .
(Output of acpi -V)
Battery 0: Discharging, 60%, 02:00:28 remaining
Battery 0: design capacity 6450 mAh, last full capacity 5451 mAh = 84%
Adapter 0: off-line
Thermal 0: ok, 53.5 degrees C
Thermal 0: trip point 0 switches to mode critical at temperature 78.0 degrees C
Cooling 0: Processor 0 of 10

-- 
Battery monitor on tray says Laptop battery is fully charged all the time
https://bugs.launchpad.net/bugs/464535
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 571093] Re: multipath + libvirtd eats away more memory over time

2010-05-20 Thread Niall O'Reilly
At least part of this problem seems to be independent of multipath.
I'm seeing libvirtd steadily eating more memory even though I have
currently no virtual machines even defined, much less active, and
have not had occasion to install multipath.

-- 
multipath + libvirtd eats away more memory over time
https://bugs.launchpad.net/bugs/571093
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libvirt in ubuntu.

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


[Bug 583469] [NEW] New chat windows cannot be raised

2010-05-20 Thread Niall Murphy
Public bug reported:

Binary package hint: empathy

Using Lucid.

Indicator bubbles displays the contents of incoming chat messages however 
clicking on the contacts name in the indicator applet does not raise the chat 
window. 
Clicking the contacts name  (or any other contact) in the contact list also 
fails to open the chat window.

Gnome window list applet does not show the chat windows.
Docky does show the chat window in its list of empathy windows but selecting it 
does not raise it. 

Get out of this situation I 
  quit empathy, 
  delete the ~/.config/Empathy/geometry.ini file
  restart empathy.

Things return to normal until  a few days later when it happens again.

I havnt figured out what the cause is. 
What information can i provide to help diagnose this?

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

-- 
New chat windows cannot be raised
https://bugs.launchpad.net/bugs/583469
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 571093] Re: multipath + libvirtd eats away more memory over time

2010-05-20 Thread Niall O'Reilly
At least part of this problem seems to be independent of multipath.
I'm seeing libvirtd steadily eating more memory even though I have
currently no virtual machines even defined, much less active, and
have not had occasion to install multipath.

-- 
multipath + libvirtd eats away more memory over time
https://bugs.launchpad.net/bugs/571093
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 360818] Re: NetworkManager.vpn fails -- nm-vpn-connection.c.900: NeedSecrets

2010-04-30 Thread Niall Brosnan
Have you rebooted yet?
Hopefully you've made no other changes, but if you've this issue on a fresh 
install of lucid,
I'd love to see if a single reboot fixes it (I suspect a restart of 
X/network-manager would).

-- 
NetworkManager.vpn fails -- nm-vpn-connection.c.900: NeedSecrets 
https://bugs.launchpad.net/bugs/360818
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 368394] Re: netbook launcher mouse focus is off

2009-11-24 Thread Niall Brosnan
I can confirm that upgrading to the xorg-edgers PPA  fixed this problem for me
on a Dell Latitude D400.

  sudo add-apt-repository  ppa:xorg-edgers/ppa 
  sudo apt-get update
  sudo apt-get upgrade

and then restart gdm or the whole machine.

-- 
netbook launcher mouse focus is off
https://bugs.launchpad.net/bugs/368394
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 360818] Re: NetworkManager.vpn fails -- nm-vpn-connection.c.900: NeedSecrets

2009-11-13 Thread Niall Brosnan
  I got more than one confirm that it works with just default ... can
  you recheck that please?

  - Alexander
Already confirmed in the post immediately  before the one where you asked this.


To quote myself - (I know the post was long as I included logs, hoping they 
might be useful.)

As I've now seen it work both with and without the dbus patch,
I must conclude that the dbus fix was coincidental with my reboot and of no 
inherent merit.

-- 
NetworkManager.vpn fails -- nm-vpn-connection.c.900: NeedSecrets 
https://bugs.launchpad.net/bugs/360818
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 360818] Re: NetworkManager.vpn fails -- nm-vpn-connection.c.900: NeedSecrets

2009-11-12 Thread Niall Brosnan
I've just done a fresh install with network-manager-openvpn on a laptop.
Adding my keys to create  a new connection fails with the Need Secrets message 
immediately after installation.

I can confirm a succesful connection after a reboot without applying the dbus 
patch I used on  my other machines. I will post back if it fails for me at some 
point, but the most consistent element in the behaviour experienced by most of 
us is that a new nm openvpn configration does not work until after a reboot. 
At this point the gnome  keyring tool opens and asks to give access to the 
application.
I chose to allow it to remain authorised for future connections.

As I've now seen it work both with and without the dbus patch,
I must conclude that the dbus fix was coincidental with my reboot and of no 
inherent merit.

(/var/log/daemon.log for the failed connection before reboot)
Nov 12 16:42:43 mynetbook NetworkManager: user_connection_updated_cb: assertion 
`old_connection != NULL' failed
Nov 12 16:42:58 mynetbook NetworkManager: info  Starting VPN service 
'org.freedesktop.NetworkManager.openvpn'...
Nov 12 16:42:58 mynetbook NetworkManager: info  VPN service 
'org.freedesktop.NetworkManager.openvpn' started 
(org.freedesktop.NetworkManager.openvpn), PID 3539
Nov 12 16:42:58 mynetbook NetworkManager: info  VPN service 
'org.freedesktop.NetworkManager.openvpn' just appeared, activating connections
Nov 12 16:42:58 mynetbook NetworkManager: nm-vpn-connection.c.828: NeedSecrets 
failed: dbus-glib-error-quark Rejected send message, 1 matched rules; 
type=method_call, sender=:1.3 (uid=0 pid=751 comm=NetworkManager) 
interface=org.freedesktop.NetworkManager.VPN.Plugin member=NeedSecrets 
error name=(unset) requested_reply=0 
destination=org.freedesktop.NetworkManager.openvpn (uid=0 pid=3539 
comm=/usr/lib/network-manager-openvpn/nm-openvpn-servic))
Nov 12 16:42:58 mynetbook NetworkManager: WARN  connection_state_changed(): 
Rejected send message, 1 matched rules; type=method_call, sender=:1.3 
(uid=0 pid=751 comm=NetworkManager) 
interface=org.freedesktop.NetworkManager.VPN.Plugin member=Disconnect error 
name=(unset) requested_reply=0 
destination=org.freedesktop.NetworkManager.openvpn (uid=0 pid=3539 
comm=/usr/lib/network-manager-openvpn/nm-openvpn-servic))
Nov 12 16:42:58 mynetbook NetworkManager: info  Policy set 'Auto WIFI' 
(wlan0) as default for routing and DNS.
Nov 12 16:43:11 mynetbook NetworkManager: debug [1258044191.000801] 
ensure_killed(): waiting for vpn service pid 3539 to exit
Nov 12 16:43:11 mynetbook NetworkManager: debug [1258044191.001142] 
ensure_killed(): vpn service pid 3539 cleaned up
=

(/var/log/daemon.log output of the succesful connection:)
Nov 12 17:46:52 mynetbook NetworkManager: info  Starting VPN service 
'org.freedesktop.NetworkManager.openvpn'...
Nov 12 17:46:53 mynetbook NetworkManager: info  VPN service 
'org.freedesktop.NetworkManager.openvpn' started 
(org.freedesktop.NetworkManager.openvpn), PID 2325
Nov 12 17:46:53 mynetbook NetworkManager: info  VPN service 
'org.freedesktop.NetworkManager.openvpn' just appeared, activating connections
Nov 12 17:46:53 mynetbook NetworkManager: info  VPN plugin state changed: 3
Nov 12 17:46:53 mynetbook NetworkManager: info  VPN connection 
'MyOpenVPNconnection' (Connect) reply received.
Nov 12 17:46:53 mynetbook nm-openvpn[2330]: OpenVPN 2.1_rc19 i486-pc-linux-gnu 
[SSL] [LZO2] [EPOLL] [PKCS11] built on Oct 13 2009
Nov 12 17:46:53 mynetbook nm-openvpn[2330]: NOTE: the current --script-security 
setting may allow this configuration to call user-defined scripts
Nov 12 17:46:53 mynetbook nm-openvpn[2330]: /usr/bin/openssl-vulnkey -q -b 1024 
-m modulus omitted
Nov 12 17:46:53 mynetbook nm-openvpn[2330]: LZO compression initialized
Nov 12 17:46:53 mynetbook nm-openvpn[2330]: UDPv4 link local: [undef]
Nov 12 17:46:53 mynetbook nm-openvpn[2330]: UDPv4 link remote: 
IP.ADD.RESS.XXX:1194
Nov 12 17:46:56 mynetbook nm-openvpn[2330]: WARNING: 'link-mtu' is used 
inconsistently, local='link-mtu 1542', remote='link-mtu 1442'
Nov 12 17:46:56 mynetbook nm-openvpn[2330]: WARNING: 'tun-mtu' is used 
inconsistently, local='tun-mtu 1500', remote='tun-mtu 1400'
Nov 12 17:46:56 mynetbook nm-openvpn[2330]: [HOSTNAME.TLD] Peer Connection 
Initiated with IP.ADD.RESS.XXX:1194
Nov 12 17:46:57 mynetbook nm-openvpn[2330]: TUN/TAP device tun0 opened
Nov 12 17:46:57 mynetbook nm-openvpn[2330]: /sbin/ifconfig tun0 192.168.5.6 
pointopoint 192.168.5.5 mtu 1500
Nov 12 17:46:57 mynetbook NetworkManager:SCPlugin-Ifupdown: devices added 
(path: /sys/devices/virtual/net/tun0, iface: tun0)
Nov 12 17:46:57 mynetbook NetworkManager:SCPlugin-Ifupdown: device added 
(path: /sys/devices/virtual/net/tun0, iface: tun0): no ifupdown configuration 
found.
Nov 12 17:46:57 mynetbook nm-openvpn[2330]: 
/usr/lib/network-manager-openvpn/nm-openvpn-service-openvpn-helper tun0 1500 
1542 192.168.5.6 192.168.5.5 init

[Bug 360818] Re: NetworkManager.vpn fails -- nm-vpn-connection.c.900: NeedSecrets

2009-11-12 Thread Niall Brosnan
Hi n3m3s1s4u .
You have posted the text from the previous fix too literally I think,
and as such you have fixed the problem for the vpnc plugin rather than the 
openvpn plugin.

Try this instead: the target file is /etc/dbus-1/system.d/nm-openvpn-
service.conf

!DOCTYPE busconfig PUBLIC
 -//freedesktop//DTD D-BUS Bus Configuration 1.0//EN
 http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd;
busconfig
policy user=root
allow own=org.freedesktop.NetworkManager.openvpn/
allow 
send_destination=org.freedesktop.NetworkManager.openvpn/
/policy
policy user=at_console
allow own=org.freedesktop.NetworkManager.openvpn/
allow 
send_destination=org.freedesktop.NetworkManager.openvpn/
/policy
policy context=default
deny own=org.freedesktop.NetworkManager.openvpn/
deny 
send_destination=org.freedesktop.NetworkManager.openvpn/
/policy
/busconfig


It has been working for me since release day. You will need to restart dbus 
etc, so a reboot may be simplest.

-- 
NetworkManager.vpn fails -- nm-vpn-connection.c.900: NeedSecrets 
https://bugs.launchpad.net/bugs/360818
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 360818] Re: NetworkManager.vpn fails -- nm-vpn-connection.c.900: NeedSecrets

2009-10-30 Thread Niall Brosnan
I am seeing it on a fresh install of Karmic with openvpn configuration from 
Jaunty.
Recreating the connection with my original keys makes no difference.

Adding at_console permissions to /etc/dbus-1/system.d/nm-openvpn-service.conf 
 as described above by Patrick Healy for vpnc  on 2009-04-18 fixes the issue 
for me for now.

His solution for vpnc applied to openvpn followed by a restart removed the 
problem.
A new bug has been opened specifically for openvpn in karmic as bug number 
453807,
but it appears to be the same behaviour whichever vpn plugin is in use.

I believe that this patch was backed out as an insecure fix, but can't find the 
correct fix just now,
so forgive me for posting unprepared - I just needed my connections back up 
asap.

-- 
NetworkManager.vpn fails -- nm-vpn-connection.c.900: NeedSecrets 
https://bugs.launchpad.net/bugs/360818
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 423934] Re: [Acer, inc. Aspire 5050] suspend/resume failure

2009-10-24 Thread Niall Campbell
Won't resume from suspend or hibernate. Bug is only present in Karmic.

-- 
[Acer, inc. Aspire 5050] suspend/resume failure
https://bugs.launchpad.net/bugs/423934
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 271184] Re: ssh client not using correct identity key

2009-10-14 Thread Niall Parker
Chuck Short wrote:
 We'd like to figure out what's causing this bug for you, but we haven't
 heard back from you in a while. Could you please provide the requested
 information? Thanks!
 

I responded to your last (automatic ?) query, and yes, the problem is 
still present on my system (naturally as any bug fixes haven't (yet) 
been backported to 8.04 LTS)


... Niall

-- 
ssh client not using correct identity key
https://bugs.launchpad.net/bugs/271184
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

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


Re: [Bug 271184] Re: ssh client not using correct identity key

2009-10-14 Thread Niall Parker
Chuck Short wrote:
 We'd like to figure out what's causing this bug for you, but we haven't
 heard back from you in a while. Could you please provide the requested
 information? Thanks!
 

I responded to your last (automatic ?) query, and yes, the problem is 
still present on my system (naturally as any bug fixes haven't (yet) 
been backported to 8.04 LTS)


... Niall

-- 
ssh client not using correct identity key
https://bugs.launchpad.net/bugs/271184
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 191710] Re: freeciv-client-gtk crashes when going to Connect to Network Game

2009-09-30 Thread Niall O'Higgins
Yeah, I am having this same issue in Karmic Alpha 6 (i386) and Jaunty
(amd64).  Kinda annoying.

-- 
freeciv-client-gtk crashes when going to Connect to Network Game
https://bugs.launchpad.net/bugs/191710
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 348172] Re: typo in qemulator: snpashot should be snapshot

2009-09-05 Thread Niall Jackson
Thanks, Brian. Forwarded this to upstream here:
http://trac.createweb.de/projects/qemulator/ticket/28

Patch is attached to this bug. Renamed quickly.fix to changelog on this
bug.

** Bug watch added: trac.createweb.de/projects/qemulator/ #28
   http://trac.createweb.de/projects/qemulator/ticket/28

** Attachment added: fix-snpashot-typo.patch
   http://launchpadlibrarian.net/31366670/fix-snpashot-typo.patch

-- 
typo in qemulator: snpashot should be snapshot
https://bugs.launchpad.net/bugs/348172
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 346528] Re: Typo

2009-09-03 Thread Niall Jackson
Fixed the typo.

I ran debuild -S on this to get the dsc files, but qmake seems to have
generated lots of new stuff. Apologies if I should've just generated a
diff from the source before building.

** Attachment added: qutim.fix
   http://launchpadlibrarian.net/31285228/qutim.fix

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

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


[Bug 422212] Re: Typo in error message of $ quickly tutorial

2009-09-03 Thread Niall Jackson
Patched this, thanks to dholbach's tutorial :)

** Attachment added: quickly.fix
   http://launchpadlibrarian.net/31288629/quickly.fix

-- 
Typo in error message of $ quickly tutorial
https://bugs.launchpad.net/bugs/422212
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 422212] Re: Typo in error message of $ quickly tutorial

2009-09-03 Thread Niall Jackson

** Attachment removed: quickly.fix
   http://launchpadlibrarian.net/31288629/quickly.fix

** Attachment added: quickly.fix
   http://launchpadlibrarian.net/31289362/quickly.fix

-- 
Typo in error message of $ quickly tutorial
https://bugs.launchpad.net/bugs/422212
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 348172] Re: typo in qemulator: snpashot should be snapshot

2009-09-03 Thread Niall Jackson
Patch attached :)

** Attachment added: qemulator.fix
   http://launchpadlibrarian.net/31289439/qemulator.fix

-- 
typo in qemulator: snpashot should be snapshot
https://bugs.launchpad.net/bugs/348172
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 348172] Re: typo in qemulator: snpashot should be snapshot

2009-09-03 Thread Niall Jackson

** Attachment removed: qemulator.fix
   http://launchpadlibrarian.net/31289439/qemulator.fix

** Attachment added: qemulator.fix
   http://launchpadlibrarian.net/31289704/qemulator.fix

-- 
typo in qemulator: snpashot should be snapshot
https://bugs.launchpad.net/bugs/348172
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 422209] Re: Typo in the index page of the tutorial of ubuntu-project template

2009-09-03 Thread Niall Jackson
Patched this.

** Attachment added: quickly.fix
   http://launchpadlibrarian.net/31291094/quickly.fix

-- 
Typo in the index page of the tutorial of ubuntu-project template
https://bugs.launchpad.net/bugs/422209
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 343788] Re: firefox locked or lost settings after crash

2009-09-02 Thread Niall Brosnan
I have a larger number of users on the system that brought me to this bug, 
so restarting the NFS service isn't convenient as a regular solution.

I experienced this problem today for the first time in months. Jaunty client, 
feisty server, nfsv3.
Firefox 3.0.13 failed after a power interruption to load bookmarks and other 
profile characteristics.
I simultaneously experienced OpenOffice 3.1.0 (ppa) go into a file recovery 
loop.

The following procedure restored expected behaviour to both firefox and 
openoffice,
so it would seem to me to be filesystem based. I will post back if the 
situation recurs,
but I'm not in a position to 'encourage it' with a live server.
The misbehaving instances of firefox and openoffice were closed before 
tarballing.,
and required no unusual input after restarting them.
history, bookmarks and certs all checked and functioning.

tar cvf firefox-openoffice-rc.tar .mozilla/  .openoffice.org/
rm -rf  .mozilla/  .openoffice.org/
tar xvf firefox-openoffice-rc.tar

-- 
firefox locked or lost settings after crash
https://bugs.launchpad.net/bugs/343788
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 364894] Re: vim doesn't find installed addons

2009-04-25 Thread Niall Murphy
Same problem with vim-latexsuite.
after installing the vim-latexsuite package i ran:

vim-addons install latex-suite

Vim did not load the plugins.

I then ran:
vim-addons -w install latex-suite
for system install  but still vim does not load the plugin.

When i launch with vim -D vim never reads the plugin files.

-- 
vim doesn't find installed addons
https://bugs.launchpad.net/bugs/364894
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 364894] Re: vim doesn't find installed addons

2009-04-25 Thread Niall Murphy
adding

filetype plugin on

to .vimrc tells vim to load filetype dependant plugins.

I suggest that this line be added to the system vimrc

-- 
vim doesn't find installed addons
https://bugs.launchpad.net/bugs/364894
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 332167] Re: packages in ~/texmf should have priority over base system

2009-02-22 Thread Niall Murphy
You are right,  it does read the home directory first.

I figured out the problem was that for loading newer versions of files
over old ones, the files must be in the correct directory structure i.e.
~/texmf/tex/latex.

I have just been putting files in ~/texmf/tex and ~/texmf/bib for
the past years.

perhaps i did not need to load newer versions of packages when using
tetex or tetex was more lax about this.

sorry for the irrelevant bug.

-- 
packages in ~/texmf should have priority over base system
https://bugs.launchpad.net/bugs/332167
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 332167] [NEW] packages in ~/texmf should have priority over base system

2009-02-20 Thread Niall Murphy
Public bug reported:

Binary package hint: texlive-base

Default behaviour should be that a package installed in ~/texmf should
be used instead of those in /usr/share/texmf-texlive/ provided by the
system package.

( Textex seemed to act like this)

This is extremely useful behaviour since the packages in the repositories can 
be out of date.
To use updated versions, currently the user must either manually change the 
order that texmf directories are read (difficult to find out)  or replace the 
out of date files in /usr/share/texmf-texlive/ with the latest from CPAN (old 
files are rewritten if packages are reinstalled or ubuntu updates)


Ubuntu 8.10 using texlive standard  packages  version 2007.dfsg.1-2

** Affects: texlive-base (Ubuntu)
 Importance: Undecided
 Status: New

-- 
packages in ~/texmf should have priority over base system
https://bugs.launchpad.net/bugs/332167
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 299141] Re: package r-cran-matrix build on old lib?

2008-12-05 Thread Niall Bolger
I'm having the same problem. The
latest version of R cannot load the Matrix package, even though it is
installed and readable. I've read the archive files for this list and
tried the suggested solutions (e.g., removing/uninstalling the Matrix
package and reinstalling it). Nothing has worked so far.

Niall Bolger

Details of the error I get when I try to load the Matrix package:

 library(Matrix)
Loading required package: lattice
Error in dyn.load(file, DLLpath = DLLpath, ...) : 
  unable to load shared library
'/usr/lib/R/site-library/Matrix/libs/Matrix.so':
  libRlapack.so: cannot open shared object file: No such file or
directory
Error: package/namespace load failed for 'Matrix'

-- 
package r-cran-matrix build on old lib?
https://bugs.launchpad.net/bugs/299141
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 272185] Re: [Intrepid] iwl3945 + iwlagn -- network-manager will not connect to a WPA EAP (Enterprise) network (disassociating by local choice (reason=3) )

2008-12-04 Thread Niall Murphy
By worse I mean that Network Manager looses the connection more
frequently.

Seems to happen most when i use the network intermittently, for example, using 
IM software, or when browsing the web.
I lost connection 2 times while composing this message. 

when the computer is left idle it seems to loose connection less frequently, 
(or maybe i just dont notice)
when it is left streaming internet radio, it seems to loose connection  less 
frequently also, maybe only once every 20 or 30 mins.

If there is any more information i can give you to help diagnose this
problem (or show that its the wifis problem) please tell me. although I
will be away from this network for the next 3 weeks.

-- 
[Intrepid] iwl3945 + iwlagn -- network-manager will not connect to a WPA EAP 
(Enterprise) network (disassociating by local choice (reason=3) )
https://bugs.launchpad.net/bugs/272185
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 272185] Re: [Intrepid] iwl3945 + iwlagn -- network-manager will not connect to a WPA EAP (Enterprise) network (disassociating by local choice (reason=3) )

2008-12-02 Thread Niall Murphy
Using the recent updates from intrepid-proposed the problem seems to be
getting even worse.

The packages are
network-manager-gnome version 0.7~~svn20081020t000444-0ubuntu1.8.10.1
network-manager version 0.7~~svn20081018t105859-0ubuntu1.8.10.1

It is an Eduroam network
http://www.eduroam.org/

WPA/WPA2, EAP-TTLS, PAP
using driver iwl3945

-- 
[Intrepid] iwl3945 + iwlagn -- network-manager will not connect to a WPA EAP 
(Enterprise) network (disassociating by local choice (reason=3) )
https://bugs.launchpad.net/bugs/272185
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 272185] Re: [Intrepid] iwl3945 + iwlagn -- network-manager will not connect to a WPA EAP (Enterprise) network (disassociating by local choice (reason=3) )

2008-11-10 Thread Niall Murphy
I believe i am suffering from the same bug.
I connect fine to my office WiFi but i loose the connection after 5 or 10 
minutes and must reconnect again.
This problem started when i upgraded to Intrepid from Hardy.

It is an Eduroam network
http://www.eduroam.org/

WPA/WPA2, EAP-TTLS, PAP
using driver iwl3945

the problem persists when using the old Hardy 2.6.24 kernel and Intrepid 2.6.27.
The problem persists when using the network-manager PPA mentioned above.

Is their any other info i can submit to help diagnose and solve this
bug?

-- 
[Intrepid] iwl3945 + iwlagn -- network-manager will not connect to a WPA EAP 
(Enterprise) network (disassociating by local choice (reason=3) )
https://bugs.launchpad.net/bugs/272185
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 271184] [NEW] ssh client not using correct identity key

2008-09-16 Thread Niall Parker
Public bug reported:

Binary package hint: openssh-client

after a recent upgrade to 8.04 from 7.10, I noticed that I no longer had
shell access to one of our servers. Using the same keys works fine in
OpenSSH_4.6p1 Debian-5ubuntu0.5, OpenSSL 0.9.8e 23 Feb 2007 (from ssh
-v), but using the default with 8.04 (OpenSSH_4.7p1 Debian-8ubuntu1.2,
OpenSSL 0.9.8g 19 Oct 2007), the client will not use an alternate
identity file (either specified in .ssh/config or via the -i command
line flag).

This only occurs if the default id_dsa key file exists in .ssh ...
renaming it to id_dsa_old eliminates the problem. It appears the client
is using the default file name in precedence over the config and command
line options.

To recreate:
1. create two key pairs and copy to server
2. restrict one of the keys (in this case I had command=/usr/bin/cvs server)
3. try connecting with both keys and note expected behaviour (default shell and 
restricted to cvs)
4. rename restricted key to 'id_dsa' and try both keys again via -i option
*** restricted key will be used despite -i option

Workaround: don't have default 'id_dsa' for key filename

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

-- 
ssh client not using correct identity key
https://bugs.launchpad.net/bugs/271184
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 236893] Re: bump version of complexity

2008-06-02 Thread Niall Murphy
this bug should be for package texlive-science

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

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


[Bug 236893] [NEW] bump version of complexity

2008-06-02 Thread Niall Murphy
Public bug reported:

Update the complexity macros to version  0.80 (currently 0.76)

http://www.ctan.org/tex-archive/macros/latex/contrib/complexity/

** Affects: texlive-extra (Ubuntu)
 Importance: Undecided
 Status: New

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

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


[Bug 105545] Re: HUAWEI E220 no longer works in Feisty/Hardy

2008-04-11 Thread Niall Sheridan
Caroline

I have a feeling that your device has a firmware that doesn't cause hal
to do the hundreds of disconnect/connects when it's attached (see the
last 8 or so comments on
https://bugzilla.redhat.com/show_bug.cgi?id=253096). While I completely
agree with you that if it ain't broke then don't fix it, I think it
would be still useful if you tried the modified hal-info to check that
your modem would still work with the additional rules - there are most
likely plenty of users out there with the older firmware and it would be
useful to know if the hal rules would cause problems for devices with
the less-broken firmware. If you could also post the firmware version
you're using, that would probably be useful (you can get it by issuing
an ATI to the device).

 - Niall

-- 
HUAWEI E220 no longer works in Feisty/Hardy
https://bugs.launchpad.net/bugs/105545
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 185462] Re: rhythmbox crashes: assertion failed

2008-03-19 Thread Niall Murphy
Same problem here, what information can i submit to help diagnose the
problem?

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

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


[Bug 191872] Re: rpc.gssd FD_ALLOC_BLOCK too low

2008-03-09 Thread Niall Sheridan
Probably just as well. I just noticed that I bumped the wrong value 
(MAX_FILE_NAMELEN instead of FD_ALLOC_BLOCK) in my debdiff.
Any chance the upstream patch will make it into hardy?

-- 
rpc.gssd FD_ALLOC_BLOCK too low
https://bugs.launchpad.net/bugs/191872
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 199785] [NEW] upgrade pgf to version 2.0

2008-03-08 Thread Niall Murphy
Public bug reported:

Binary package hint: pgf

Version 2.0 of pgf has been released.

http://www.mail-archive.com/[EMAIL PROTECTED]/msg01513.html

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

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

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


[Bug 193920] Re: rpc_pipefs should be in the PRUNEFS list

2008-03-07 Thread Niall Sheridan
debdiff attached.

** Attachment added: debdiff to add rpc_pipefs to PRUNEFS
   http://launchpadlibrarian.net/12128428/mlocate_rpc_pipefs.debdiff

-- 
rpc_pipefs should be in the PRUNEFS list
https://bugs.launchpad.net/bugs/193920
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 193920] [NEW] rpc_pipefs should be in the PRUNEFS list

2008-03-07 Thread Niall Sheridan
Public bug reported:

rpc_pipefs is usually mounted on /var/lib/nfs/rpc_pipefs and is used for
kernel-userspace communication for nfs. mlocate most likely shouldn't
go digging around there.

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

-- 
rpc_pipefs should be in the PRUNEFS list
https://bugs.launchpad.net/bugs/193920
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 105545] Re: HUAWEI E220 no longer works in Feisty

2008-03-07 Thread Niall Sheridan
huaweiAktBbo.c sends a zero-sized message when initializing the device, while 
usb_stor_huawei_e220_init in drivers/usb/storage/initializers.c does not. By 
changing the call to usb_stor_control_msg() to mimic the huaweiAktBbo's call to 
usb_control_msg(), the device works flawlessly every time.
I'm attaching a patch against hardy's kernel.

** Attachment added: huawei-e220-hardy.diff
   http://launchpadlibrarian.net/12164132/huawei-e220-hardy.diff

-- 
HUAWEI E220 no longer works in Feisty
https://bugs.launchpad.net/bugs/105545
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 105545] Re: HUAWEI E220 no longer works in Feisty

2008-03-07 Thread Niall Sheridan
Right, because drivers/usb/storage/initializers.c now does what huaweiAktBbo.c 
was previously required to do.
Sadly, my modem is not Just Working with wvdial, unless I modify initializers.c 
per the patch in my previous comment.

-- 
HUAWEI E220 no longer works in Feisty
https://bugs.launchpad.net/bugs/105545
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


  1   2   >