[Bug 1860826] Re: pam_unix(sudo:auth): Couldn't open /etc/securetty: No such file or directory

2021-06-14 Thread Elliott Balsley
This also spams the vsftpd log several times per minute

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

Title:
  pam_unix(sudo:auth): Couldn't open /etc/securetty: No such file or
  directory

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

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

[Bug 1883030] [NEW] Upgrade to stable version 1.51.2 for compatibility with other platforms

2020-06-10 Thread Elliott Rezny
Public bug reported:

Upstream released version 2.51.2 Jan 27th 2018. The version included in
ubuntu right now, 2.48.4, is incompatible with the current stable
version.

https://github.com/bcpierce00/unison/releases

People are reporting the incompatibility issue to the upstream
maintainer and are having a difficult time manually installing it.

https://github.com/bcpierce00/unison/issues/200

Providing a way to upgrade the package with apt would resolve these
issues more easily.

** Affects: unison (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/1883030

Title:
  Upgrade to stable version 1.51.2 for compatibility with other
  platforms

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

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

[Bug 1848856] Re: zfs on root fails with grub syntax error with multidisks pools

2020-01-26 Thread Brian Elliott Finley via ubuntu-bugs
On Ubuntu 19.10, with ZFS root and zfs-auto-snapshot,
/etc/grub.d/10_linux_zfs was scanning every single snapshot whenever
update-grub was invoked.

This is a simple patch that just exits the get_dataset_info() function
if the dataset is a snapshot.  I could be missing something, but I don't
expect we want to be finding kernel & initrd images on snapshots under
normal circumstances.

** Patch added: "Simple four line patch I created that solved my issue"
   
https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1848856/+attachment/5323115/+files/grub-common-2.04-1ubuntu12.1.dont_scan_snapshots-brianfinley.diff

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

Title:
  zfs on root fails with grub syntax error with multidisks pools

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

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

[Bug 1849179] Re: canmount property switches to noauto in user's home dataset

2019-12-24 Thread Brian Elliott Finley via ubuntu-bugs
I am having the same issue with canmount=on switching to canmount=noauto on a
user's dataset, and I'm using the final release of 19.10, so perhaps this will
help.

Version Details:

v-eight# cat /etc/issue.net
Ubuntu 19.10

v-eight# dpkg -l zfs\* zsys | grep ^ii
ii  zfs-auto-snapshot 1.2.4-2   all  ZFS automatic snapshot 
service
ii  zfs-initramfs 0.8.1-1ubuntu14.2 amd64OpenZFS root filesystem 
capabilities for Linux - initramfs
ii  zfs-zed   0.8.1-1ubuntu14.2 amd64OpenZFS Event Daemon
ii  zfsutils-linux0.8.1-1ubuntu14.2 amd64command-line tools to 
manage OpenZFS filesystems
ii  zsys  0.2.2+19.04   amd64ZFS SYStem integration


Here's how it all went down:
-
I did a full disk ZFS install, then I installed zsys.

I wanted an encrypted home dir, so I created a new dataset
(rpool/USERDATA/bfinley-encrypted) and copied all of my data into it.

As a side note, I configured boot time decryption as per option 3 in
chungy's HOWTO (https://github.com/chungy/zfs-boottime-encryption).  This
is working great and keys are successfully loaded at boot time.  Also, a
second encrypted non-homedir dataset I created at the same time is
successfully mounted automatically
(rpool/ROOT/ubuntu_rkiozo/var/lib/mlocate), and retains it's 'canmount=on'
setting.


I then changed the mountpoint for the system created homedir dataset from
'/home/bfinley' to 'none'.

And changed the mountpoint for the new homedir dataset from
'/home/bfinley-encrypted' to '/home/bfinley' and set it to 'canmount=on'.

After rebooting, the mlocate dataset mounted automatically, but the homedir
dataset did not.  'zfs get keystatus rpool/USERDATA/bfinley' showed
'available', but 'canmount' had been changed to 'noauto'.

At this point, I could 'zfs set canmount=on rpool/USERDATA/bfinley' and do a 
'zfs mount -a', and it would mount.

But again, after reboot, 'canmount=on' was changed to 'canmount=noauto'.

So, I looked for other differences in the settings between the system created
homedir and new new one.  The system created homedir has these additional
settings:

com.ubuntu.zsys:bootfs-datasets  rpool/ROOT/ubuntu_rkiozo
org.zsys:bootfs-datasets rpool/ROOT/ubuntu_rkiozo
com.ubuntu.zsys:last-used1577134248


Based on that discovery, I added the first to settings to my new dataset
(omitting the third, as I expected it would be added automatically via zsys) 
and rebooted.

zfs set com.ubuntu.zsys:bootfs-datasets=rpool/ROOT/ubuntu_rkiozo 
rpool/USERDATA/bfinley
zfs set org.zsys:bootfs-datasets=rpool/ROOT/ubuntu_rkiozo 
rpool/USERDATA/bfinley


After reboot, my new encrypted homedir was mounted automatically!

As a side note, I took a look and 'com.ubuntu.zsys:last-used' was indeed
automatically set with a timestamp.


SOLUTION and Conclusions

1) I now have a solution to the problem at hand, and hopefully others do too.
   The solution summary for me was to set 'com.ubuntu.zsys:bootfs-datasets' and
   'org.zsys:bootfs-datasets' to my root dataset as above.

   NOTE:  If you are following this to fix your own system, your root dataset 
   will (almost certainly) have a different name.  To find it, you can do this:

zfs list -r rpool/ROOT | grep -w /


2) Although it now works for me, I think we should consider the implementation 
   broken.  While it makes sense that zsys would look for certain ZFS User
   Properties to choose which datasets to act on, I don't think it should
   automatically change any dataset setting that is not a ZFS User Property
   that it "owns".

   Ideas to reconcile the behavior:

- If canmount=noauto is required for zsys to do it's thing, and canmount is
  set to anything else, it should simply NOT do it's thing, and log a
  useful message to syslog.

- Include a command to zsys-ize a dataset.  Something like:

zsys set type=TYPE DATASET

Where TYPE is the type of dataset, from a zsys perspective.
Current options include: bootfs-datasets, none.

Where DATASET is the name of the dataset for zsys to manage.

Example:  zsys set type=bootfs-datasets
rpool/USERDATA/bfinley


Cheers!  -Brian

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

Title:
  canmount property switches to noauto in user's home dataset

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

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

[Bug 1822133] Re: Azure Instance never recovered during series of instance reboots.

2019-05-30 Thread Kirk Elliott
@Dexuan, the error 'WARNING ExtHandler CGroup walinuxagent.service:
Crossed the Memory Threshold' started when the vm was first created on
May 24, persisted until I stopped/dealocated the VM, and has not
returned in syslog. Nor for what it's worth has this error been seen in
over six months on another Ubuntu 18.04 VM we have.

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

Title:
  Azure Instance never recovered during series of instance reboots.

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

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

[Bug 1822133] Re: Azure Instance never recovered during series of instance reboots.

2019-05-30 Thread Kirk Elliott
I rebooted our VM over 60 times today without any further issues. Since
the VM network went down before I restarted the VM or lost access to the
serial console login, I'm also thinking now it was a network issue to
begin with. It could always be coincidence that I was able to get the VM
back by force stopping and then starting the vm from a stopped state,
when neither restarting nor redeploying helped, but there is one thing,
correct me if this is wrong, that is different about force stopping and
that is it deallocates the VM. If the network issue were internal to the
VM I wonder if both restarting and redeploying could have with the best
of intentions persisted the faulty network state to the point where the
operations failed, while dealocating ended the issue and the VM was able
to start over clean.

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

Title:
  Azure Instance never recovered during series of instance reboots.

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

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

[Bug 1822133] Re: Azure Instance never recovered during series of instance reboots.

2019-05-30 Thread Kirk Elliott
I see now 5.0.0-1007.7 is also available for 19.04, but I'll wait and
see what you advise @Dexuan after looking at my serial log.

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

Title:
  Azure Instance never recovered during series of instance reboots.

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

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

[Bug 1822133] Re: Azure Instance never recovered during series of instance reboots.

2019-05-30 Thread Kirk Elliott
I got the VM back by force stopping, then starting. It looks like
5.0.0-1007.7 only comes with 19.10, which is not available yet on Azure?

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

Title:
  Azure Instance never recovered during series of instance reboots.

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

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

[Bug 1822133] Re: Azure Instance never recovered during series of instance reboots.

2019-05-30 Thread Kirk Elliott
How do I upgrade the kernel to 5.0.0-1007.7 if that is what is
recommended to avoid this issue? apt-get dist-upgrade on another vm with
4.18.0-1018-azure did not upgrade the kernel. Thank God it restarted! Or
is  5.0.0-1007.7 not an Azure kernel so I would need to switch to stock
Ubuntu kernel?

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

Title:
  Azure Instance never recovered during series of instance reboots.

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

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

[Bug 1822133] Re: Azure Instance never recovered during series of instance reboots.

2019-05-30 Thread Kirk Elliott
@Dexuan I emailed you my serial log. I restarted via portal a number of
times without success. I tried to redeploy twice and it failed. Trying
to restart via cli now.

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

Title:
  Azure Instance never recovered during series of instance reboots.

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

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

[Bug 1822133] Re: Azure Instance never recovered during series of instance reboots.

2019-05-30 Thread Kirk Elliott
kernel is 4.18.0-1018-azure

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

Title:
  Azure Instance never recovered during series of instance reboots.

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

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

[Bug 1822133] Re: Azure Instance never recovered during series of instance reboots.

2019-05-29 Thread Kirk Elliott
This bit me tonight on a few days old 18.04 VM with stock kernel. So far
I can not get back in with reboot or redeploy to upgrade the kernel.

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

Title:
  Azure Instance never recovered during series of instance reboots.

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

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

[Bug 1791320] Re: libhugetlbfs uses fixed size buffer to read from /proc/mounts

2019-04-05 Thread Elliott Friedman
I solved this by limiting the number of mounts in one of my docker
containers.

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

Title:
  libhugetlbfs uses fixed size buffer to read from /proc/mounts

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

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

[Bug 1169950] Re: Installation from flash for ubuntu server 13.04 fails to mount CD/ISO

2019-02-01 Thread Elliott Balsley
The status says fix released, but this is still a problem on Bionic.

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

Title:
  Installation from flash for ubuntu server 13.04 fails to mount CD/ISO

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

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

[Bug 1783905] Re: gnome-software segfaults on startup, seems to be affiliated with g_date_time_to_unix()

2018-07-26 Thread Elliott Pardee
After a log out and log in, this seems to be fixed. I'm not entirely
sure why and I haven't changed any settings since the bug occurred.

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

Title:
  gnome-software segfaults on startup, seems to be affiliated with
  g_date_time_to_unix()

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

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

[Bug 1783905] Re: gnome-software segfaults on startup, seems to be affiliated with g_date_time_to_unix()

2018-07-26 Thread Elliott Pardee
** Attachment added: "Valgrind log."
   
https://bugs.launchpad.net/ubuntu/+source/gnome-software/+bug/1783905/+attachment/5168303/+files/valgrind.log

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

Title:
  gnome-software segfaults on startup, seems to be affiliated with
  g_date_time_to_unix()

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

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

[Bug 1783905] Re: gnome-software segfaults on startup, seems to be affiliated with g_date_time_to_unix()

2018-07-26 Thread Elliott Pardee
This may be related to #1724960, but it hasn't had an update since 2017.

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

Title:
  gnome-software segfaults on startup, seems to be affiliated with
  g_date_time_to_unix()

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

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

[Bug 1783905] [NEW] gnome-software segfaults on startup, seems to be affiliated with g_date_time_to_unix()

2018-07-26 Thread Elliott Pardee
Public bug reported:

Opens up, shows the categories and featured applications for less than 5
seconds when it closes and segfaults.

I performed a backtrace using gdb and memory check using valgrind as
suggested via wiki (first time bug reporter so I hope I have
everything). Everything I have is attached.


Ubuntu Info
---
Description:Ubuntu 18.04.1 LTS
Release:18.04


gnome-software
--
  Installed: 3.28.1-0ubuntu4.18.04.1
  Candidate: 3.28.1-0ubuntu4.18.04.1
  Version table:
 *** 3.28.1-0ubuntu4.18.04.1 500
500 http://us.archive.ubuntu.com/ubuntu bionic-updates/main amd64 
Packages
100 /var/lib/dpkg/status
 3.28.1-0ubuntu4 500
500 http://us.archive.ubuntu.com/ubuntu bionic/main amd64 Packages

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

** Attachment added: "GDB Backtrace"
   
https://bugs.launchpad.net/bugs/1783905/+attachment/5168302/+files/gdb-gnome-software.txt

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

Title:
  gnome-software segfaults on startup, seems to be affiliated with
  g_date_time_to_unix()

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

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

[Bug 1777822] Re: Updating Nvidia drivers causes Cinnamon crashes and seems to be in fallback mode

2018-06-20 Thread Isaac Elliott
** Description changed:

- Installing Nvidia drivers causes Cinnamon to crash and seems to be in
- fallback mode in Kernel 4.13 and above. I had to downgrade my kernel
- back to 4.10 for it to work.
+ I'm using Linux Mint 18.3 Syliva.  Installing Nvidia drivers causes
+ Cinnamon to crash and seems to be in fallback mode in Kernel 4.13 and
+ above. I had to downgrade my kernel back to 4.10 for it to work.

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

Title:
  Updating Nvidia drivers causes Cinnamon crashes and seems to be in
  fallback mode

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

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

[Bug 1777820] Re: Updating Nvidia drivers causes Cinnamon crashes and seems to be in fallback mode

2018-06-20 Thread Isaac Elliott
** Changed in: linux (Ubuntu)
   Status: Incomplete => Invalid

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

Title:
  Updating Nvidia drivers causes Cinnamon crashes and seems to be in
  fallback mode

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

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

[Bug 1777820] [NEW] Updating Nvidia drivers causes Cinnamon crashes and seems to be in fallback mode

2018-06-20 Thread Isaac Elliott
Public bug reported:

Using Linux Mint 18.3 Sylvia.  Installing Nvidia drivers causes Cinnamon
to crash and seems to be in fallback mode in Kernel 4.13 and above.  I
had to downgrade my kernel back to 4.10 for it to work.  Even the latest
4.15 kernels does not fix the issue.

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

** Description changed:

- Installing Nvidia drivers causes Cinnamon to crash and seems to be in
- fallback mode in Kernel 4.13 and above.  I had to downgrade my kernel
- back to 4.10 for it to work.
+ Using Linux Mint 18.3 Sylvia.  Installing Nvidia drivers causes Cinnamon
+ to crash and seems to be in fallback mode in Kernel 4.13 and above.  I
+ had to downgrade my kernel back to 4.10 for it to work.

** Description changed:

  Using Linux Mint 18.3 Sylvia.  Installing Nvidia drivers causes Cinnamon
  to crash and seems to be in fallback mode in Kernel 4.13 and above.  I
- had to downgrade my kernel back to 4.10 for it to work.
+ had to downgrade my kernel back to 4.10 for it to work.  Even the latest
+ 4.15 kernels does not fix the issue.

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

Title:
  Updating Nvidia drivers causes Cinnamon crashes and seems to be in
  fallback mode

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

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

[Bug 1777822] [NEW] Updating Nvidia drivers causes Cinnamon crashes and seems to be in fallback mode

2018-06-20 Thread Isaac Elliott
Public bug reported:

I'm using Linux Mint 18.3 Syliva.  Installing Nvidia drivers causes
Cinnamon to crash and seems to be in fallback mode in Kernel 4.13 and
above. I had to downgrade my kernel back to 4.10 for it to work.

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

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

Title:
  Updating Nvidia drivers causes Cinnamon crashes and seems to be in
  fallback mode

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

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

[Bug 1756310] Re: grep: /etc/openvpn/easy-rsa/openssl.cnf: No such file or directory

2018-05-30 Thread Pierre-Elliott Becue
Need more intel

** Changed in: easy-rsa (Ubuntu)
   Status: New => Incomplete

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

Title:
  grep: /etc/openvpn/easy-rsa/openssl.cnf: No such file or directory

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

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

[Bug 1756310] Re: grep: /etc/openvpn/easy-rsa/openssl.cnf: No such file or directory

2018-05-30 Thread Pierre-Elliott Becue
Hi Martin,

I wonder if this bug doesn't specifically affect openvpn. easy-rsa as a
package has no reference to /etc/openvpn, does it?

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

Title:
  grep: /etc/openvpn/easy-rsa/openssl.cnf: No such file or directory

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

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

[Bug 1735372] Re: mailman/mailman3: Please drop dependency on Python2 (demoting mailman)

2018-04-19 Thread Pierre-Elliott Becue
mailman3-core has been superseeded by mailman3.

** Changed in: mailman3-core (Ubuntu)
   Status: Confirmed => Invalid

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

Title:
  mailman/mailman3: Please drop dependency on Python2 (demoting mailman)

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

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

[Bug 1735372] Re: mailman/mailman3: Please drop dependency on Python2 (demoting mailman)

2018-04-19 Thread Pierre-Elliott Becue
Dear Bryan,

When I first packaged mailman3 parts into Debian, I chose mailman3-core
(source & binary name) for the server and with Jonas, we chose mailman-
suite (source & binary name) for the web package providing the django
settings to provide hyperkitty and postorius.

We realized quickly that users were confused by this naming convention.
They were expecting the server to be mailman3. We chose to rename the
source & binary package from mailman3-core to mailman3, hence the
disappearance of mailman3-core.

Theoretically, mailman3 binary package doesn't depend on python2, but
mailman3-full binary package depends on mailman3-web and thus on
postorius and hyperkitty and django-mailman3 which are python2 packages.

Upstream did release alpha versions of postorius/hyperkitty/django-
mailman3 1.2.0, which are full python3 (with dropping of python2
support). As soon as these release are stable, they'll be packaged into
debian, and should hence come in ubuntu soon after (thanks to
transition).

Cheers.

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

Title:
  mailman/mailman3: Please drop dependency on Python2 (demoting mailman)

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

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

[Bug 1712624] [NEW] Unable to complete upgrade from 16.10

2017-08-23 Thread Kenny Elliott
Public bug reported:

Unable to complete do-release-upgrade on 16.10:

Error is:

Could not calculate the upgrade

An unresolvable problem occurred while calculating the upgrade.

This can be caused by:
* Upgrading to a pre-release version of Ubuntu
* Running the current pre-release version of Ubuntu
* Unofficial software packages not provided by Ubuntu

If none of this applies, then please report this bug using the
command 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal.

Restoring original system state

Aborting

Additional Info:

lsb_release -rd
Description:Ubuntu 16.10
Release:16.10

apt-cache policy ubuntu-release-upgrader-core
ubuntu-release-upgrader-core:
  Installed: 1:16.10.10
  Candidate: 1:16.10.10
  Version table:
 *** 1:16.10.10 500
500 http://us.archive.ubuntu.com/ubuntu yakkety-updates/main amd64 
Packages
500 http://us.archive.ubuntu.com/ubuntu yakkety-updates/main i386 
Packages
100 /var/lib/dpkg/status
 1:16.10.6 500
500 http://us.archive.ubuntu.com/ubuntu yakkety/main amd64 Packages
500 http://us.archive.ubuntu.com/ubuntu yakkety/main i386 Packages

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: ubuntu-release-upgrader-core 1:16.10.10
ProcVersionSignature: Ubuntu 4.8.0-59.64-generic 4.8.17
Uname: Linux 4.8.0-59-generic x86_64
ApportVersion: 2.20.3-0ubuntu8.7
Architecture: amd64
CrashDB: ubuntu
Date: Wed Aug 23 11:59:20 2017
InstallationDate: Installed on 2016-08-25 (363 days ago)
InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=en_US
 TERM=xterm-256color
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to yakkety on 2017-08-23 (0 days ago)

** Affects: ubuntu-release-upgrader (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug dist-upgrade yakkety

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

Title:
  Unable to complete upgrade from 16.10

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

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


[Bug 1700379] [NEW] package unattended-upgrades 0.93.1ubuntu2.2 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configuration

2017-06-25 Thread Lisa Elliott
Public bug reported:

It does not automatically delete prior packages. Old packages not
removed.

ProblemType: Package
DistroRelease: Ubuntu 17.04
Package: unattended-upgrades 0.93.1ubuntu2.2
ProcVersionSignature: Ubuntu 4.10.0-24.28-generic 4.10.15
Uname: Linux 4.10.0-24-generic x86_64
.var.log.unattended-upgrades.unattended-upgrades.log:
 
ApportVersion: 2.20.4-0ubuntu4.1
Architecture: amd64
Date: Sun Jun 25 09:48:53 2017
DuplicateSignature:
 package:unattended-upgrades:0.93.1ubuntu2.2
 Setting up systemd (232-21ubuntu4) ...
 addgroup: The group `systemd-journal' already exists as a system group. 
Exiting.
 dpkg: error processing package unattended-upgrades (--configure):
  package is in a very bad inconsistent state; you should
ErrorMessage: package is in a very bad inconsistent state; you should  
reinstall it before attempting configuration
InstallationDate: Installed on 2014-10-09 (990 days ago)
InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140722.2)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.18.10ubuntu2
 apt  1.4
SourcePackage: unattended-upgrades
Title: package unattended-upgrades 0.93.1ubuntu2.2 failed to install/upgrade: 
package is in a very bad inconsistent state; you should  reinstall it before 
attempting configuration
UpgradeStatus: Upgraded to zesty on 2017-04-18 (67 days ago)
modified.conffile..etc.apt.apt.conf.d.10periodic:
 APT::Periodic::Update-Package-Lists "1";
 APT::Periodic::Download-Upgradeable-Packages "0";
 APT::Periodic::AutocleanInterval "0";
 APT::Periodic::Unattended-Upgrade "0";
mtime.conffile..etc.apt.apt.conf.d.10periodic: 2016-10-13T16:05:09.919104
mtime.conffile..etc.apt.apt.conf.d.50unattended-upgrades: 
2017-04-18T12:21:19.502089

** Affects: unattended-upgrades (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package need-duplicate-check zesty

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

Title:
  package unattended-upgrades 0.93.1ubuntu2.2 failed to install/upgrade:
  package is in a very bad inconsistent state; you should  reinstall it
  before attempting configuration

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

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


[Bug 1696583] [NEW] package unattended-upgrades 0.93.1ubuntu2.2 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configuration

2017-06-07 Thread Lisa Elliott
Public bug reported:

failed updates bug report

ProblemType: Package
DistroRelease: Ubuntu 17.04
Package: unattended-upgrades 0.93.1ubuntu2.2
ProcVersionSignature: Ubuntu 4.10.0-21.23-generic 4.10.11
Uname: Linux 4.10.0-21-generic x86_64
.var.log.unattended-upgrades.unattended-upgrades.log:
 
ApportVersion: 2.20.4-0ubuntu4.1
Architecture: amd64
Date: Wed Jun  7 15:25:38 2017
ErrorMessage: package is in a very bad inconsistent state; you should  
reinstall it before attempting configuration
InstallationDate: Installed on 2014-10-09 (972 days ago)
InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140722.2)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.18.10ubuntu2
 apt  1.4
SourcePackage: unattended-upgrades
Title: package unattended-upgrades 0.93.1ubuntu2.2 failed to install/upgrade: 
package is in a very bad inconsistent state; you should  reinstall it before 
attempting configuration
UpgradeStatus: Upgraded to zesty on 2017-04-18 (50 days ago)
modified.conffile..etc.apt.apt.conf.d.10periodic:
 APT::Periodic::Update-Package-Lists "1";
 APT::Periodic::Download-Upgradeable-Packages "0";
 APT::Periodic::AutocleanInterval "0";
 APT::Periodic::Unattended-Upgrade "0";
mtime.conffile..etc.apt.apt.conf.d.10periodic: 2016-10-13T16:05:09.919104
mtime.conffile..etc.apt.apt.conf.d.50unattended-upgrades: 
2017-04-18T12:21:19.502089

** Affects: unattended-upgrades (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package zesty

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

Title:
  package unattended-upgrades 0.93.1ubuntu2.2 failed to install/upgrade:
  package is in a very bad inconsistent state; you should  reinstall it
  before attempting configuration

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

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


[Bug 1641290] Re: [04f3:0903] Elan Microelectronics Corp fingerprint reader not recognised

2017-04-19 Thread William Elliott
Same here with Asus ZenBook UX330UA

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

Title:
  [04f3:0903] Elan Microelectronics Corp fingerprint reader not
  recognised

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

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


[Bug 1526337] Re: Accelerometer does not change orientation

2017-01-17 Thread Josh Elliott
I am experiencing the same issue, on a Dell Insprion 13 series 7000
model 7378 2-in-1 laptop.

Is there a fix for this?

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

Title:
  Accelerometer does not change orientation

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

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


[Bug 1454450] Re: Bluetooth mouse laggy and erratic

2016-10-04 Thread Brian Elliott Finley
I am having the laggy bluetooth mouse issue with a Logitech MX Anywhere
2 and a Lenovo T450s.

The modprobe suggestion from @cribari has worked for me so far, but I've
only done 5 minutes of testing at this point, and only one suspend-
resume cycle.

Order of operations:
1) suspend/resume/suspend/resume, etc.
2) turn on bluetooth on notebook (mouse was paired weeks ago) [10:19:31 in log 
below]
3) turn on mouse and experience lag [10:19:36 in log below]
4) execute these commands "sudo modprobe -rv btusb && sleep 1s && sudo modprobe 
-v btusb" [10:22:33 in log below]
5) mouse is no longer laggy
6) suspend/resume (once)
7) mouse is still not laggy, and appears to be working fine


Oct  4 10:19:31 tbob kernel: [588896.204026] Bluetooth: hci0: read Intel 
version: 370810011003110e00
Oct  4 10:19:31 tbob kernel: [588896.205078] Bluetooth: hci0: Intel Bluetooth 
firmware file: intel/ibt-hw-37.8.10-fw-1.10.3.11.e.bseq
Oct  4 10:19:31 tbob kernel: [588896.521054] Bluetooth: hci0: Intel Bluetooth 
firmware patch completed and activated
Oct  4 10:19:31 tbob systemd[1]: Reached target Bluetooth.
Oct  4 10:19:31 tbob bluetoothd[3094]: Failed to obtain handles for "Service 
Changed" characteristic
Oct  4 10:19:31 tbob bluetoothd[3094]: Not enough free handles to register 
service
Oct  4 10:19:31 tbob bluetoothd[3094]: Error adding Link Loss service
Oct  4 10:19:31 tbob bluetoothd[3094]: Not enough free handles to register 
service
Oct  4 10:19:31 tbob bluetoothd[3094]: message repeated 2 times: [ Not enough 
free handles to register service]
Oct  4 10:19:31 tbob bluetoothd[3094]: Current Time Service could not be 
registered
Oct  4 10:19:31 tbob bluetoothd[3094]: gatt-time-server: Input/output error (5)
Oct  4 10:19:31 tbob bluetoothd[3094]: Not enough free handles to register 
service
Oct  4 10:19:31 tbob bluetoothd[3094]: Not enough free handles to register 
service
Oct  4 10:19:31 tbob bluetoothd[3094]: Sap driver initialization failed.
Oct  4 10:19:31 tbob bluetoothd[3094]: sap-server: Operation not permitted (1)
Oct  4 10:19:31 tbob bluetoothd[3094]: Endpoint registered: sender=:1.72 
path=/MediaEndpoint/A2DPSource
Oct  4 10:19:31 tbob bluetoothd[3094]: Endpoint registered: sender=:1.72 
path=/MediaEndpoint/A2DPSink
Oct  4 10:19:36 tbob bluetoothd[3094]: Unable to register GATT service with 
handle 0x000c for device EA:4C:A8:24:2D:95
Oct  4 10:19:36 tbob bluetoothd[3094]: Unable to register GATT service with 
handle 0x001b for device EA:4C:A8:24:2D:95
Oct  4 10:19:36 tbob bluetoothd[3094]: Unable to register GATT service with 
handle 0x003f for device EA:4C:A8:24:2D:95
Oct  4 10:19:37 tbob bluetoothd[3094]: bt_uhid_send: Invalid argument (22)
Oct  4 10:19:37 tbob kernel: [588902.501689] input: MX Anywhere 2 as 
/devices/virtual/misc/uhid/0005:046D:B013.007C/input/input95
Oct  4 10:19:37 tbob kernel: [588902.502135] hid-generic 0005:046D:B013.007C: 
input,hidraw4: BLUETOOTH HID v0.07 Keyboard [MX Anywhere 2] on 10:02:B5:80:73:A1
Oct  4 10:19:37 tbob bluetoothd[3094]: message repeated 12 times: [ 
bt_uhid_send: Invalid argument (22)]
Oct  4 10:22:33 tbob kernel: [589078.328418] usbcore: deregistering interface 
driver btusb
Oct  4 10:22:33 tbob systemd[1]: bluetooth.target: Unit not needed anymore. 
Stopping.
Oct  4 10:22:33 tbob systemd[1]: Stopped target Bluetooth.
Oct  4 10:22:33 tbob bluetoothd[3094]: Endpoint unregistered: sender=:1.72 
path=/MediaEndpoint/A2DPSource
Oct  4 10:22:33 tbob bluetoothd[3094]: Endpoint unregistered: sender=:1.72 
path=/MediaEndpoint/A2DPSink
Oct  4 10:22:34 tbob kernel: [589079.485951] usbcore: registered new interface 
driver btusb
Oct  4 10:22:34 tbob kernel: [589079.500790] Bluetooth: hci0: read Intel 
version: 370810011003110e23
Oct  4 10:22:34 tbob kernel: [589079.500793] Bluetooth: hci0: Intel device is 
already patched. patch num: 23
Oct  4 10:22:34 tbob bluetoothd[3094]: Failed to obtain handles for "Service 
Changed" characteristic
Oct  4 10:22:34 tbob bluetoothd[3094]: Not enough free handles to register 
service
Oct  4 10:22:34 tbob bluetoothd[3094]: Error adding Link Loss service
Oct  4 10:22:34 tbob bluetoothd[3094]: Not enough free handles to register 
service
Oct  4 10:22:34 tbob bluetoothd[3094]: message repeated 2 times: [ Not enough 
free handles to register service]
Oct  4 10:22:34 tbob bluetoothd[3094]: Current Time Service could not be 
registered
Oct  4 10:22:34 tbob bluetoothd[3094]: gatt-time-server: Input/output error (5)
Oct  4 10:22:34 tbob bluetoothd[3094]: Not enough free handles to register 
service
Oct  4 10:22:34 tbob systemd[1]: Reached target Bluetooth.
Oct  4 10:22:34 tbob bluetoothd[3094]: Not enough free handles to register 
service
Oct  4 10:22:34 tbob bluetoothd[3094]: Sap driver initialization failed.
Oct  4 10:22:34 tbob bluetoothd[3094]: sap-server: Operation not permitted (1)
Oct  4 10:22:34 tbob bluetoothd[3094]: Endpoint registered: sender=:1.72 
path=/MediaEndpoint/A2DPSource
Oct  4 10:22:34 tbob bluetoothd[3094]: Endpoint registered: 

[Bug 1565985] Re: vagrant vb ubuntu/xenial64 cannot mount synced folders

2016-06-13 Thread Frans Elliott
** Changed in: cloud-images
   Status: New => Confirmed

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

Title:
  vagrant vb ubuntu/xenial64 cannot mount synced folders

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-images/+bug/1565985/+subscriptions

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


[Bug 1466936] [NEW] fglrx-core 2:15.101-0ubuntu1: fglrx-core kernel module failed to build [error: implicit declaration of function ‘__get_cpu_var’]

2015-06-19 Thread Elliott Saille
Public bug reported:

fglrx-core kernel module fails to build on Ubuntu 15.04 kernel
3.19.0-15,3.19.0-18, 3.19.0-20, 3.19.0-21. All with the same error.

ProblemType: Package
DistroRelease: Ubuntu 15.04
Package: fglrx-core 2:15.101-0ubuntu1
ProcVersionSignature: Ubuntu 3.19.0-18.18-generic 3.19.6
Uname: Linux 3.19.0-18-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 2.17.2-0ubuntu1.1
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
DKMSKernelVersion: 3.19.0-21-generic
Date: Fri Jun 19 11:46:23 2015
DistUpgraded: Fresh install
DistroCodename: vivid
DistroVariant: ubuntu
DkmsStatus: fglrx-core, 15.101: added
DuplicateSignature: 
dkms:fglrx-core:2:15.101-0ubuntu1:/var/lib/dkms/fglrx-core/15.101/build/2.6.x/firegl_public.c:4819:5:
 error: implicit declaration of function ‘__get_cpu_var’ 
[-Werror=implicit-function-declaration]
GraphicsCard:
 Advanced Micro Devices, Inc. [AMD/ATI] Cayman XT [Radeon HD 6970] [1002:6718] 
(prog-if 00 [VGA controller])
   Subsystem: Hightech Information System Ltd. Device [1787:2010]
InstallationDate: Installed on 2015-05-23 (26 days ago)
InstallationMedia: Ubuntu 15.04 Vivid Vervet - Release amd64 (20150422)
MachineType: MSI MS-7924
PackageVersion: 2:15.101-0ubuntu1
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.19.0-18-generic.efi.signed 
root=/dev/mapper/ubuntu--vg-root ro quiet splash
RelatedPackageVersions:
 dpkg 1.17.25ubuntu1
 apt  1.0.9.7ubuntu4
SourcePackage: fglrx-installer
Title: fglrx-core 2:15.101-0ubuntu1: fglrx-core kernel module failed to build
UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/22/2014
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: V2.4
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: H97M-G43(MS-7924)
dmi.board.vendor: MSI
dmi.board.version: 1.0
dmi.chassis.asset.tag: To be filled by O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: MSI
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrV2.4:bd07/22/2014:svnMSI:pnMS-7924:pvr1.0:rvnMSI:rnH97M-G43(MS-7924):rvr1.0:cvnMSI:ct3:cvr1.0:
dmi.product.name: MS-7924
dmi.product.version: 1.0
dmi.sys.vendor: MSI
version.compiz: compiz 1:0.9.12.1+15.04.20150410.1-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.60-2
version.libgl1-mesa-dri: libgl1-mesa-dri 10.5.2-0ubuntu1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 10.5.2-0ubuntu1
version.xserver-xorg-core: xserver-xorg-core 2:1.17.1-0ubuntu3
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.0-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.5.0-1ubuntu2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917-1~exp1ubuntu2.2
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu2build1
xserver.bootTime: Fri Jun 19 11:36:38 2015
xserver.configfile: /etc/X11/xorg.conf
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.17.1-0ubuntu3
xserver.video_driver: radeon

** Affects: fglrx-installer (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package compiz-0.9 ubuntu vivid

** Attachment added: DKMS Build log for kernel 3.19.0-15
   https://bugs.launchpad.net/bugs/1466936/+attachment/4417196/+files/make.log

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

Title:
  fglrx-core 2:15.101-0ubuntu1: fglrx-core kernel module failed to build
  [error: implicit declaration of function ‘__get_cpu_var’]

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

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

[Bug 1448521] Re: sudo unity8-lxc-setup fails on 15.04

2015-05-10 Thread Alex Elliott
I am now also receiving this above error. 
I have checked the cdimage.ubuntu.com files and there is no longer a vivid 
current iso there.

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

Title:
  sudo unity8-lxc-setup fails on 15.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity8-preview-lxc/+bug/1448521/+subscriptions

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


[Bug 1449543] [NEW] update to 15.04 failed

2015-04-28 Thread jim elliott
Public bug reported:

no sure what to do . it said unable to caculate update. i ran grep
broken and it came back x-server-xorg-video-noveau as a broken pkg. I
thing i am runing nvidia driver pkg

ProblemType: Bug
DistroRelease: Ubuntu 14.10
Package: ubuntu-release-upgrader-core 1:14.10.10
ProcVersionSignature: Ubuntu 3.13.0-49.83-generic 3.13.11-ckt17
Uname: Linux 3.13.0-49-generic i686
NonfreeKernelModules: nvidia
ApportVersion: 2.14.7-0ubuntu8.4
Architecture: i386
CrashDB: ubuntu
CurrentDesktop: Unity
Date: Tue Apr 28 07:18:26 2015
InstallationDate: Installed on 2014-03-07 (416 days ago)
InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release i386 
(20120817.3)
PackageArchitecture: all
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to utopic on 2015-04-28 (0 days ago)
VarLogDistupgradeTermlog:

** Affects: ubuntu-release-upgrader (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug dist-upgrade i386 utopic

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

Title:
  update to 15.04 failed

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

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


[Bug 1426695] [NEW] package libc6-dev 2.19-10ubuntu2.2 failed to install/upgrade: cannot copy extracted data for './usr/include/i386-linux-gnu/sys/ptrace.h' to '/usr/include/i386-linux-gnu/sys/ptrace.

2015-02-28 Thread jim elliott
Public bug reported:

update failed

ProblemType: Package
DistroRelease: Ubuntu 14.10
Package: libc6-dev 2.19-10ubuntu2.2
ProcVersionSignature: Ubuntu 3.16.0-31.41-generic 3.16.7-ckt5
Uname: Linux 3.16.0-31-generic i686
ApportVersion: 2.14.7-0ubuntu8.2
Architecture: i386
Date: Sat Feb 28 07:12:23 2015
DuplicateSignature: package:libc6-dev:2.19-10ubuntu2.2:cannot copy extracted 
data for './usr/include/i386-linux-gnu/sys/ptrace.h' to 
'/usr/include/i386-linux-gnu/sys/ptrace.h.dpkg-new': unexpected end of file or 
stream
ErrorMessage: cannot copy extracted data for 
'./usr/include/i386-linux-gnu/sys/ptrace.h' to 
'/usr/include/i386-linux-gnu/sys/ptrace.h.dpkg-new': unexpected end of file or 
stream
InstallationDate: Installed on 2012-11-07 (843 days ago)
InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release i386 
(20120817.3)
SourcePackage: glibc
Title: package libc6-dev 2.19-10ubuntu2.2 failed to install/upgrade: cannot 
copy extracted data for './usr/include/i386-linux-gnu/sys/ptrace.h' to 
'/usr/include/i386-linux-gnu/sys/ptrace.h.dpkg-new': unexpected end of file or 
stream
UpgradeStatus: Upgraded to utopic on 2015-02-07 (20 days ago)

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


** Tags: apport-package i386 need-duplicate-check utopic

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

Title:
  package libc6-dev 2.19-10ubuntu2.2 failed to install/upgrade: cannot
  copy extracted data for './usr/include/i386-linux-gnu/sys/ptrace.h' to
  '/usr/include/i386-linux-gnu/sys/ptrace.h.dpkg-new': unexpected end of
  file or stream

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

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


[Bug 1411884] [NEW] not all CPU cores loaded during boot

2015-01-16 Thread Frans Elliott
Public bug reported:

During boot, at dmesg timestamp 0, the kernel complains about fast TSC
calibration failed. Then at around timestamp 7.9 the kernel complains
about smpboot: CPU1: Not responding. After some more time, it will also
say CPU2 and CPU3 aren't responding either. The computer proceeds to
boot successfully, but only using 1 CPU core out of my quad core CPU
(and as you might guess this makes it rather slow). According to
/proc/cpuinfo my computer only recognizes a single core on my computer.

Here's the output of uname -a
Linux Hostname 3.16.0-29-generic #39-Ubuntu SMP Mon Dec 15 22:27:29 UTC 2014 
x86_64 x86_64 x86_64 GNU/Linux

I'll attach dmesg and lspci outputs as well. I've also attached my
/proc/cpuinfo file as it proves that my computer only recognizes one of
my 4 cores.

Also, this problem is absent on the 3.16.0-23 kernel.

** Affects: linux-lts-utopic (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: dmesg.log
   https://bugs.launchpad.net/bugs/1411884/+attachment/4300249/+files/dmesg.log

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

Title:
  not all CPU cores loaded during boot

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

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


[Bug 1411884] Re: not all CPU cores loaded during boot

2015-01-16 Thread Frans Elliott
** Attachment added: version.log
   
https://bugs.launchpad.net/ubuntu/+source/linux-lts-utopic/+bug/1411884/+attachment/4300252/+files/version.log

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

Title:
  not all CPU cores loaded during boot

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

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


[Bug 1411884] Re: not all CPU cores loaded during boot

2015-01-16 Thread Frans Elliott
** Attachment added: cpuinfo.log
   
https://bugs.launchpad.net/ubuntu/+source/linux-lts-utopic/+bug/1411884/+attachment/4300250/+files/cpuinfo.log

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

Title:
  not all CPU cores loaded during boot

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

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


[Bug 1411884] Re: not all CPU cores loaded during boot

2015-01-16 Thread Frans Elliott
** Attachment added: lspci-vvnn.log
   
https://bugs.launchpad.net/ubuntu/+source/linux-lts-utopic/+bug/1411884/+attachment/4300251/+files/lspci-vvnn.log

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

Title:
  not all CPU cores loaded during boot

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

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


[Bug 1376345] Re: cannot buy app in Ubuntu Software Center

2014-11-20 Thread Elliott Flood
This problem is preventing any purchases: multiple cards, both Master
Card and Amex entered correctly several times, with the same result
unexpected error see screenshot attached.


** Attachment added: Screenshot from 2014-11-20 22:39:15.png
   
https://bugs.launchpad.net/ubuntu/+source/software-center/+bug/1376345/+attachment/4264904/+files/Screenshot%20from%202014-11-20%2022%3A39%3A15.png

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

Title:
  cannot buy app in Ubuntu Software Center

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

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


[Bug 1264368] Re: GLib-CRITICAL **: Source ID was not found when attempting to remove it - warning when leaving Network menu of g-c-c

2014-11-16 Thread Elliott Flood
runnning sublime text 2 from console launchs the app but gives many
error messages, which have to be terminated by control+c:

(sublime:3389): GLib-CRITICAL **: Source ID 1592 was not found when
attempting to remove it

(sublime:3389): GLib-CRITICAL **: Source ID 1598 was not found when
attempting to remove it

(sublime:3389): GLib-CRITICAL **: Source ID 2353 was not found when
attempting to remove it

(sublime:3389): GLib-CRITICAL **: Source ID 2359 was not found when
attempting to remove it

(sublime:3389): GLib-CRITICAL **: Source ID 3090 was not found when attempting 
to remove it
^C

These messages take a while to display.  The app seems to work OK,
but

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

Title:
  GLib-CRITICAL **: Source ID was not found when attempting to remove it
  - warning when leaving Network menu of g-c-c

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

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


[Bug 481656] Re: iBus blocks input in Java application

2014-09-29 Thread Tavis Elliott
Also also affected on 14.04 with IntelliJ.  I recently switched to
Ubuntu from Linux Mint 14 on which never had this problem (probably
because ibus isn't used there)

Killing ibus resolves the problem.  (Will try XMODIFIERS= on next system
restart)

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

Title:
  iBus blocks input in Java application

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

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


[Bug 1321421] Re: 8086:8ca0 Sound output distorted/unusable with Intel Z97/H97

2014-07-04 Thread Ron Elliott
Solution #28 worked for me on Linux Mint 17 with MSI Z97-G45 (ALC110). I
had popping, distortions and skipping before, crystal clear now. Thanks!

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

Title:
  8086:8ca0 Sound output distorted/unusable with Intel Z97/H97

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

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


[Bug 1321611] [NEW] package whoopsie-preferences 0.9 failed to install/upgrade: tentative de remplacement de « /usr/bin/whoopsie-preferences », qui appartient aussi au paquet activity-log-manager-cont

2014-05-21 Thread Pierre-Elliott Bécue
Public bug reported:

Came after a dist-upgrade.

ProblemType: Package
DistroRelease: Ubuntu 13.10
Package: whoopsie-preferences 0.9
ProcVersionSignature: Ubuntu 3.11.0-20.35-generic 3.11.10.6
Uname: Linux 3.11.0-20-generic x86_64
ApportVersion: 2.12.5-0ubuntu2.2
Architecture: amd64
Date: Tue May 20 20:27:31 2014
DuplicateSignature: package:whoopsie-preferences:0.9:tentative de remplacement 
de « /usr/bin/whoopsie-preferences », qui appartient aussi au paquet 
activity-log-manager-control-center 0.9.4-0ubuntu6.2
ErrorMessage: tentative de remplacement de « /usr/bin/whoopsie-preferences », 
qui appartient aussi au paquet activity-log-manager-control-center 
0.9.4-0ubuntu6.2
MarkForUpload: True
SourcePackage: whoopsie-preferences
Title: package whoopsie-preferences 0.9 failed to install/upgrade: tentative de 
remplacement de « /usr/bin/whoopsie-preferences », qui appartient aussi au 
paquet activity-log-manager-control-center 0.9.4-0ubuntu6.2
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: whoopsie-preferences (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package saucy

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

Title:
  package whoopsie-preferences 0.9 failed to install/upgrade: tentative
  de remplacement de « /usr/bin/whoopsie-preferences », qui appartient
  aussi au paquet activity-log-manager-control-center 0.9.4-0ubuntu6.2

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

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

[Bug 227808] Re: file permissions destroyed by vim/gvfs/fuse

2014-02-10 Thread Elliott Linder
This bug has surprised me several times as well. Works with practically any 
other text editor
except Qt Creator, Vim and Emacs. Is SSHFS a workaround?

5 years, 9 months and 3 days have passed since the first report...

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

Title:
  file permissions destroyed by vim/gvfs/fuse

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

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


[Bug 1239578] Re: No wireless support for Realtek RTL8192EE [10ec:818b]

2014-01-06 Thread Elliott Conant
Similarly, I have this in a Thinkpad T540p.

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

Title:
  No wireless support for Realtek RTL8192EE [10ec:818b]

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1239578/+subscriptions

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


[Bug 898003] Re: usbip source is maintained in kernel tree now

2013-12-23 Thread Elliott Friedman
This seems to be broken for all current kernels paired with package
version 0.1.7.

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

Title:
  usbip source is maintained in kernel tree now

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

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


[Bug 1187483] Re: wireless wpa2/enterprise authentication issues

2013-12-11 Thread Tavis Elliott
Linux Mint 15, https://bugs.launchpad.net/linuxmint/+bug/1187483/comments/3 
workaround works for me. 
You rock R. E.!

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

Title:
  wireless wpa2/enterprise authentication issues

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

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


[Bug 1248485] Re: No wireless connection after updates 12.04LTS

2013-11-11 Thread John Elliott
Hello Seth,

I have done as you suggested (easiest), but if I use the software center I get 
Package Operation Failed all the time,  and if I use
Terminal I get the following error.

..john@john-20-b101ea:~$ sudo apt-get install 
linux-backports-modules-cw-3.8-precise-generic
[sudo] password for john: 
Reading package lists... Done
Building dependency tree   
Reading state information... Done
linux-backports-modules-cw-3.8-precise-generic is already the newest version.
The following packages were automatically installed and are no longer required:
  gir1.2-timezonemap-1.0 realpath libdmraid1.0.0.rc16 libdebconfclient0
  kpartx-boot gir1.2-json-1.0 libwebkitgtk-1.0-common kpartx python-webkit
  rdate libjavascriptcoregtk-1.0-0 linux-image libdebian-installer4
  btrfs-tools apt-clone libwebkitgtk-1.0-0 archdetect-deb dmraid python-pyicu
  gir1.2-xkl-1.0
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue [Y/n]? y
Setting up oem-wireless-rt2x00-1044172-dkms (20120910compatwirelessstella6) ...
Removing old oem-wireless-rt2x00-1044172-20120910compatwirelessstella6 DKMS 
files...

--
Deleting module version: 20120910compatwirelessstella6
completely from the DKMS tree.
--
Done.
Loading new oem-wireless-rt2x00-1044172-20120910compatwirelessstella6 DKMS 
files...
First Installation: checking all kernels...
Building only for 3.2.0-56-generic
Building for architecture x86_64
Building initial module for 3.2.0-56-generic
Error! Bad return status for module build on kernel: 3.2.0-56-generic (x86_64)
Consult 
/var/lib/dkms/oem-wireless-rt2x00-1044172/20120910compatwirelessstella6/build/make.log
 for more information.
dpkg: error processing oem-wireless-rt2x00-1044172-dkms (--configure):
 subprocess installed post-installation script returned error exit status 10
Errors were encountered while processing:
 oem-wireless-rt2x00-1044172-dkms
E: Sub-process /usr/bin/dpkg returned an error code (1)
john@john-20-b101ea:~$ 


Is there anything I can do to get this all in one working wirelessly?

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

Title:
  No wireless connection after updates 12.04LTS

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

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


RE: [Bug 1248485] Re: No wireless connection after updates 12.04LTS

2013-11-11 Thread John Elliott
Hello Seth,

I have tried the 2 easiest options you suggested, the first via the software 
centre
I keep getting Package Operation Failed  if I then use terminal and paste
sudo apt-get install linux-backports-modules-cw-3.8-precise-generic-package
I also get a error message.

I have pasted the details in the call, but not sure if you still have it
OPEN

Best Regards
John Elliott.


 modules-cw-3.8-precise-generic
 Date: Fri, 8 Nov 2013 17:43:43 +
 From: seth.forshee...@canonical.com
 To: johnelliot...@hotmail.com
 Subject: [Bug 1248485] Re: No wireless connection after updates 12.04LTS
 
 I can come up with no explanation why it would have been working before.
 That kernel doesn't have support for your wireless hardware.
 
 You've got a few options for getting it working. Probably the easiest is
 to install the backports drivers. For this you need to install the
 linux-backports-modules-cw-3.8-precise-generic package, either using the
 software center or by running sudo apt-get install linux-backports-
 modules-cw-3.8-precise-generic in a terminal. You'll need to reboot
 after doing this.
 
 The other options are either to upgrade to a newer release or use our
 hardware enablement stack. Let me know if you want instructions for
 either of these.
 
 It doesn't seem necessary to add support to Linux 3.2 since we already
 have a couple of options for getting your hardware working in 12.04, so
 I'm changing the status to Won't Fix.
 
 ** Changed in: linux (Ubuntu)
Status: Incomplete = Won't Fix
 
 -- 
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1248485
 
 Title:
   No wireless connection after updates 12.04LTS
 
 Status in “linux” package in Ubuntu:
   Won't Fix
 
 
 https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1248485/+subscriptions

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

Title:
  No wireless connection after updates 12.04LTS

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

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

[Bug 1248485] Re: No wireless connection after updates 12.04LTS

2013-11-11 Thread John Elliott
Seth,

I can assure you I have not installed any additional software, it can only have
come via the automatic updates.

This is the update that failed and started the problem.
oem-wireless-rt2x00-1044172 driver in DKMS format.
OEM-Wireless-rt2x00-1044172-dkms (Size : 6.0mb)

This was listed under other updates.

I have now purged this file and reinstalled the backports package
and guess what  ITS WORKING!!

My final question is, do I continue to install updates or am I likely to get 
the same
problem?

Best  Regards
John Elliott

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

Title:
  No wireless connection after updates 12.04LTS

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

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


[Bug 1248485] Re: No wireless connection after updates 12.04LTS

2013-11-08 Thread John Elliott
SethHope this is all OK.Thanks for your patience.John

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

Title:
  No wireless connection after updates 12.04LTS

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

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


[Bug 1248485] Re: No wireless connection after updates 12.04LTS

2013-11-08 Thread John Elliott
** Attachment added: lspci.txt
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1248485/+attachment/3902892/+files/lspci.txt

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

Title:
  No wireless connection after updates 12.04LTS

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

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


[Bug 1248485] Re: No wireless connection after updates 12.04LTS

2013-11-08 Thread John Elliott
** Attachment added: dmesg.txt
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1248485/+attachment/3902895/+files/dmesg.txt

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

Title:
  No wireless connection after updates 12.04LTS

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

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


[Bug 1248485] Re: No wireless connection after updates 12.04LTS

2013-11-08 Thread John Elliott
john@john-20-b101ea:~$ lsmod
Module  Size  Used by
vesafb 13844  1 
snd_hda_codec_realtek73901  1 
snd_hda_intel  33605  3 
snd_hda_codec 139218  2 snd_hda_codec_realtek,snd_hda_intel
snd_hwdep  13668  1 snd_hda_codec
snd_pcm97188  2 snd_hda_intel,snd_hda_codec
snd_seq_midi   13324  0 
snd_rawmidi30748  1 snd_seq_midi
snd_seq_midi_event 14899  1 snd_seq_midi
snd_seq61896  2 snd_seq_midi,snd_seq_midi_event
snd_timer  29990  2 snd_pcm,snd_seq
snd_seq_device 14540  3 snd_seq_midi,snd_rawmidi,snd_seq
uvcvideo   72627  0 
snd78855  15 
snd_hda_codec_realtek,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
videodev   98259  1 uvcvideo
bnep   18281  2 
rfcomm 47604  0 
parport_pc 32866  0 
bluetooth 180104  10 bnep,rfcomm
ppdev  17113  0 
rts_pstor 420503  0 
dm_multipath   23230  0 
psmouse97443  0 
k10temp13166  0 
i2c_piix4  13301  0 
binfmt_misc17540  1 
serio_raw  13211  0 
soundcore  15091  1 snd
snd_page_alloc 18529  2 snd_hda_intel,snd_pcm
v4l2_compat_ioctl3217128  1 videodev
fglrx2700996  172 
mac_hid13253  0 
video  19596  0 
nls_iso8859_1  12713  1 
nls_cp437  16991  1 
vfat   17585  1 
fat61512  1 vfat
lp 17799  0 
parport46562  3 parport_pc,ppdev,lp
usbhid 47199  0 
hid99559  1 usbhid
r8169  62099  0 
dm_raid45  78155  0 
xor12894  1 dm_raid45
dm_mirror  22203  0 
dm_region_hash 20918  1 dm_mirror
dm_log 18564  3 dm_raid45,dm_mirror,dm_region_hash
btrfs 652957  0 
zlib_deflate   27139  1 btrfs
libcrc32c  12644  1 btrfs
john@john-20-b101ea:~$ 


Seth, I am using the machine s built in wireless. and I did not install any 
additional software to get wireless working...
Wireless is now NO LONGER working on 3.2.32! 

Output from lsmod listed above.

** Attachment added: dmesg.txt
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1248485/+attachment/3903328/+files/dmesg.txt

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

Title:
  No wireless connection after updates 12.04LTS

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

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


[Bug 1248485] Re: No wireless connection after updates 12.04LTS

2013-11-07 Thread John Elliott
Seth

I have done as you asked, and sent the output report.

is this  what you needed,

john@john-20-b101ea:~$ apport-collect 1248485
ERROR: hook /usr/share/apport/general-hooks/cloud_archive.py crashed:
Traceback (most recent call last):
  File /usr/lib/python2.7/dist-packages/apport/report.py, line 719, in 
add_hooks_info
symb['add_info'](self, ui)
  File /usr/share/apport/general-hooks/cloud_archive.py, line 18, in add_info
if '~cloud' in packaging.get_version(package) and \
  File /usr/lib/python2.7/dist-packages/apport/packaging_impl.py, line 95, in 
get_version
raise ValueError('package does not exist')
ValueError: package does not exist
ERROR: hook /usr/share/apport/general-hooks/ubuntu.py crashed:
Traceback (most recent call last):
  File /usr/lib/python2.7/dist-packages/apport/report.py, line 719, in 
add_hooks_info
symb['add_info'](self, ui)
  File /usr/share/apport/general-hooks/ubuntu.py, line 22, in add_info
add_release_info(report)
  File /usr/share/apport/general-hooks/ubuntu.py, line 259, in 
add_release_info
report['CasperVersion'] = apport.packaging.get_version('casper')
  File /usr/lib/python2.7/dist-packages/apport/packaging_impl.py, line 95, in 
get_version
raise ValueError('package does not exist')
ValueError: package does not exist
john@john-20-b101ea:~$ 


** Description changed:

  I am using HP all in one with Ubuntu 12.04 LTS installed. Following
  the last update, my wireless network connection is lost. I have both
  wired and wireless connection if I boot with older version 3.2.032, but
  with new version 3.2.055 after update I only have wired connection, but
  no wireless connection.
  
  
  Wired output from NM-Tool
  john@john-20-b101ea:~$ nm-tool
  NetworkManager Tool
  
  State: connected (global)
  
  - Device: eth1  [Wired connection 1] 
---
Type:  Wired
Driver:r8169
State: connected
Default:   yes
HW Address:70:54:D2:BE:43:DD
  
Capabilities:
  Carrier Detect:  yes
  Speed:   100 Mb/s
  
Wired Properties
  Carrier: on
  
IPv4 Settings:
  Address: 192.168.1.2
  Prefix:  24 (255.255.255.0)
  Gateway: 192.168.1.1
  
  DNS: 192.168.1.1
  
  john@john-20-b101ea:~$
  
  
  Wireless output below.
  john@john-20-b101ea:~$ 
  NetworkManager Tool
  State: disconnected
  
  - Device: eth1 
-
Type:  Wired
Driver:r8169
State: unavailable
Default:   no
HW Address:70:54:D2:BE:43:DD
  
Capabilities:
  Carrier Detect:  yes
  Speed:   100 Mb/s
  
Wired Properties
  Carrier: off
  
  john@john-20-b101ea:~$
  
  
  I have 2 versions on my front logon screen.
  
  One is  linux 3.2.055 and the other is 3.2.032 The default is 3.2.055 on
  boot up  I can get a wired connection but no wireless connection.  If I
  boot on  3.2.032 I can get both a wired, and wireless connection.
  
  
  Many thanks for any help...(New to Ubuntu)
  --- 
  Architecture: amd64
  DistroRelease: Ubuntu 12.04
  InstallationMedia: Ubuntu 12.04 Precise - Build amd64 LIVE Binary 
20121102-07:42
  LiveMediaBuild: Ubuntu 12.04 Precise - Build amd64 LIVE Binary 
20121102-07:42
  MarkForUpload: True
  NonfreeKernelModules: fglrx
  Package: linux (not installed)
  ProcEnviron:
   LANGUAGE=en_GB:en
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  Uname: Linux 3.2.0-55-generic x86_64
  UnreportableReason: The running kernel is not an Ubuntu kernel
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ --- 
+ Architecture: amd64
+ DistroRelease: Ubuntu 12.04
+ InstallationMedia: Ubuntu 12.04 Precise - Build amd64 LIVE Binary 
20121102-07:42
+ LiveMediaBuild: Ubuntu 12.04 Precise - Build amd64 LIVE Binary 
20121102-07:42
+ MarkForUpload: True
+ NonfreeKernelModules: fglrx
+ Package: linux (not installed)
+ ProcEnviron:
+  LANGUAGE=en_GB:en
+  TERM=xterm
+  PATH=(custom, no user)
+  LANG=en_GB.UTF-8
+  SHELL=/bin/bash
+ Uname: Linux 3.2.0-55-generic x86_64
+ UnreportableReason: The running kernel is not an Ubuntu kernel
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

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

Title:
  No wireless connection after updates 12.04LTS

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

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


[Bug 1248485] Re: No wireless connection after updates 12.04LTS

2013-11-07 Thread John Elliott
I dont know what booting into the Kernel is! but I gone into terminal
and typed what you asked this the output.

john@john-20-b101ea:~$ lspci - vvnn  lspci.txt
Usage: lspci [switches]

Basic display modes:
-mm Produce machine-readable output (single -m for an obsolete 
format)
-t  Show bus tree

Display options:
-v  Be verbose (-vv for very verbose)
-k  Show kernel drivers handling each device
-x  Show hex-dump of the standard part of the config space
-xxxShow hex-dump of the whole config space (dangerous; root only)
-   Show hex-dump of the 4096-byte extended config space (root only)
-b  Bus-centric view (addresses and IRQ's as seen by the bus)
-D  Always show domain numbers

Resolving of device ID's to names:
-n  Show numeric ID's
-nn Show both textual and numeric ID's (names  numbers)
-q  Query the PCI ID database for unknown ID's via DNS
-qq As above, but re-query locally cached entries
-Q  Query the PCI ID database for all ID's via DNS

Selection of devices:
-s domain]:]bus]:][slot][.[func]]   Show only devices in selected 
slots
-d [vendor]:[device]Show only devices with 
specified ID's

Other options:
-i file   Use specified ID database instead of /usr/share/misc/pci.ids.gz
-p file   Look up kernel modules in a given file instead of default 
modules.pcimap
-M  Enable `bus mapping' mode (dangerous; root only)

PCI access options:
-A method Use the specified PCI access method (see `-A help' for a list)
-O par=valSet PCI access parameter (see `-O help' for a list)
-G  Enable PCI access debugging
-H mode   Use direct hardware access (mode = 1 or 2)
-F file   Read PCI configuration dump from a given file
john@john-20-b101ea:~$ 
lspci


john@john-20-b101ea:~$ dmesg  dmesg.txt

no ouput from this command.

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

Title:
  No wireless connection after updates 12.04LTS

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

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


[Bug 1248485] [NEW] No wireless connection after updates 12.04LTS

2013-11-06 Thread John Elliott
Public bug reported:

I am using HP all in one with Ubuntu 12.04 LTS installed. Following
the last update, my wireless network connection is lost. I have both
wired and wireless connection if I boot with older version 3.2.032, but
with new version 3.2.055 after update I only have wired connection, but
no wireless connection.


Wired output from NM-Tool
john@john-20-b101ea:~$ nm-tool
NetworkManager Tool

State: connected (global)

- Device: eth1  [Wired connection 1] ---
  Type:  Wired
  Driver:r8169
  State: connected
  Default:   yes
  HW Address:70:54:D2:BE:43:DD

  Capabilities:
Carrier Detect:  yes
Speed:   100 Mb/s

  Wired Properties
Carrier: on

  IPv4 Settings:
Address: 192.168.1.2
Prefix:  24 (255.255.255.0)
Gateway: 192.168.1.1

DNS: 192.168.1.1

john@john-20-b101ea:~$


Wireless output below.
john@john-20-b101ea:~$ 
NetworkManager Tool
State: disconnected

- Device: eth1 -
  Type:  Wired
  Driver:r8169
  State: unavailable
  Default:   no
  HW Address:70:54:D2:BE:43:DD

  Capabilities:
Carrier Detect:  yes
Speed:   100 Mb/s

  Wired Properties
Carrier: off

john@john-20-b101ea:~$


I have 2 versions on my front logon screen.

One is  linux 3.2.055 and the other is 3.2.032 The default is 3.2.055 on
boot up  I can get a wired connection but no wireless connection.  If I
boot on  3.2.032 I can get both a wired, and wireless connection.


Many thanks for any help...(New to Ubuntu)

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

Title:
  No wireless connection after updates 12.04LTS

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

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


[Bug 1248485] Re: No wireless connection after updates 12.04LTS

2013-11-06 Thread John Elliott
I do not understand what you are asking for...is it this


GNU bash, version 4.2.25(1)-release (x86_64-pc-linux-gnu)

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

Title:
  No wireless connection after updates 12.04LTS

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

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


[Bug 1248485] Re: No wireless connection after updates 12.04LTS

2013-11-06 Thread John Elliott
** 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/1248485

Title:
  No wireless connection after updates 12.04LTS

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

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


RE: [Bug 1248485] Re: No wireless connection after updates 12.04LTS

2013-11-06 Thread John Elliott
Hello Joseph,

I am a user of Ubuntu only, I do not understand these linux commands .
The Ubuntu software on my HP all in ONE works perfectly when I connect
to the Internet, the problem is not the software once connected 
the problem is after doing updates,  the wireless connection is lost,
 and cant be regained.

John Elliott
01590 681475 


 Date: Wed, 6 Nov 2013 17:51:40 +
 From: joseph.salisb...@canonical.com
 To: johnelliot...@hotmail.com
 Subject: [Bug 1248485] Re: No wireless connection after updates 12.04LTS
 
 Would it be possible for you to test the latest upstream kernel? Refer
 to https://wiki.ubuntu.com/KernelMainlineBuilds . Please test the latest
 v3.12 kernel[0].
 
 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.12-saucy/
 
 ** 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/1248485
 
 Title:
   No wireless connection after updates 12.04LTS
 
 Status in “linux” package in Ubuntu:
   Incomplete
 
 Bug description:
   I am using HP all in one with Ubuntu 12.04 LTS installed. Following
   the last update, my wireless network connection is lost. I have both
   wired and wireless connection if I boot with older version 3.2.032,
   but with new version 3.2.055 after update I only have wired
   connection, but no wireless connection.
 
   
   Wired output from NM-Tool
   john@john-20-b101ea:~$ nm-tool
   NetworkManager Tool
 
   State: connected (global)
 
   - Device: eth1  [Wired connection 1] 
 ---
 Type:  Wired
 Driver:r8169
 State: connected
 Default:   yes
 HW Address:70:54:D2:BE:43:DD
 
 Capabilities:
   Carrier Detect:  yes
   Speed:   100 Mb/s
 
 Wired Properties
   Carrier: on
 
 IPv4 Settings:
   Address: 192.168.1.2
   Prefix:  24 (255.255.255.0)
   Gateway: 192.168.1.1
 
   DNS: 192.168.1.1
 
   john@john-20-b101ea:~$
 
   
   Wireless output below.
   john@john-20-b101ea:~$ 
   NetworkManager Tool
   State: disconnected
 
   - Device: eth1 
 -
 Type:  Wired
 Driver:r8169
 State: unavailable
 Default:   no
 HW Address:70:54:D2:BE:43:DD
 
 Capabilities:
   Carrier Detect:  yes
   Speed:   100 Mb/s
 
 Wired Properties
   Carrier: off
 
   john@john-20-b101ea:~$
 
   
   I have 2 versions on my front logon screen.
 
   One is  linux 3.2.055 and the other is 3.2.032 The default is 3.2.055
   on boot up  I can get a wired connection but no wireless connection.
   If I boot on  3.2.032 I can get both a wired, and wireless connection.
 
   
   Many thanks for any help...(New to Ubuntu)
 
 To manage notifications about this bug go to:
 https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1248485/+subscriptions

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

Title:
  No wireless connection after updates 12.04LTS

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

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

[Bug 1248485] Re: No wireless connection after updates 12.04LTS

2013-11-06 Thread John Elliott
** Tags added: apport-collected

** Description changed:

  I am using HP all in one with Ubuntu 12.04 LTS installed. Following
  the last update, my wireless network connection is lost. I have both
  wired and wireless connection if I boot with older version 3.2.032, but
  with new version 3.2.055 after update I only have wired connection, but
  no wireless connection.
  
  
  Wired output from NM-Tool
  john@john-20-b101ea:~$ nm-tool
  NetworkManager Tool
  
  State: connected (global)
  
  - Device: eth1  [Wired connection 1] 
---
Type:  Wired
Driver:r8169
State: connected
Default:   yes
HW Address:70:54:D2:BE:43:DD
  
Capabilities:
  Carrier Detect:  yes
  Speed:   100 Mb/s
  
Wired Properties
  Carrier: on
  
IPv4 Settings:
  Address: 192.168.1.2
  Prefix:  24 (255.255.255.0)
  Gateway: 192.168.1.1
  
  DNS: 192.168.1.1
  
  john@john-20-b101ea:~$
  
  
  Wireless output below.
  john@john-20-b101ea:~$ 
  NetworkManager Tool
  State: disconnected
  
  - Device: eth1 
-
Type:  Wired
Driver:r8169
State: unavailable
Default:   no
HW Address:70:54:D2:BE:43:DD
  
Capabilities:
  Carrier Detect:  yes
  Speed:   100 Mb/s
  
Wired Properties
  Carrier: off
  
  john@john-20-b101ea:~$
  
  
  I have 2 versions on my front logon screen.
  
  One is  linux 3.2.055 and the other is 3.2.032 The default is 3.2.055 on
  boot up  I can get a wired connection but no wireless connection.  If I
  boot on  3.2.032 I can get both a wired, and wireless connection.
  
  
  Many thanks for any help...(New to Ubuntu)
+ --- 
+ Architecture: amd64
+ DistroRelease: Ubuntu 12.04
+ InstallationMedia: Ubuntu 12.04 Precise - Build amd64 LIVE Binary 
20121102-07:42
+ LiveMediaBuild: Ubuntu 12.04 Precise - Build amd64 LIVE Binary 
20121102-07:42
+ MarkForUpload: True
+ NonfreeKernelModules: fglrx
+ Package: linux (not installed)
+ ProcEnviron:
+  LANGUAGE=en_GB:en
+  TERM=xterm
+  PATH=(custom, no user)
+  LANG=en_GB.UTF-8
+  SHELL=/bin/bash
+ Uname: Linux 3.2.0-55-generic x86_64
+ UnreportableReason: The running kernel is not an Ubuntu kernel
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

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

Title:
  No wireless connection after updates 12.04LTS

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

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


[Bug 810182] Re: unity_support_test crashed with SIGSEGV

2013-10-17 Thread Elliott Balsley
I'm running Precise on an Nvidia ION system (single GPU).
/usr/lib/nux/unity_support_test
shows
Segmentation fault (core dumped)

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

Title:
  unity_support_test crashed with SIGSEGV

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

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


[Bug 955675] Re: openssl s_client's '-ssl2' option no longer works in 12.04

2013-10-09 Thread Elliott Frantz
The -ssl2 option is an important tool for users to verify SSLv2 has been
disabled on a particular service. For this reason alone I strongly
recommend re-enabling this functionality.

Cheers

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

Title:
  openssl s_client's '-ssl2' option no longer works in 12.04

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

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


[Bug 1181651] [NEW] ldconfig problem with 64-bit nvidia driver packages

2013-05-18 Thread Frans Elliott
Public bug reported:

On Ubuntu 13.04 64-bit, this package as well as others (including
nvidia-current and nvidia-current-updates from the main ubuntu package
repositories) don't play nice with applications that use 32-bit OpenGL
libraries. When such an application tries to load the nvidia 32-bit
libGL.so library, they don't load the nvidia libGL.so but some other
non-nvidia libGL.so. This means a 32-bit application running on Ubuntu
Raring 64-bit will never use the nvidia libGL.so library.

After a lot of monkey business, I figured out what the problem is. Which
libGL.so a 32-bit application uses on a 64-bit system is controlled by
the file /etc/ld.so.conf.d/i386-linux-gnu_GL.conf which is just a
symlink to /etc/alternatives/i386-linux-gnu_gl_conf which is another
symlink to /usr/lib/nvidia-319/alt_ld.so.conf or something similar for
other versions of the nvidia drivers. This file is blank in a clean
install, so ldconfig doesn't know that 32-bit applications asking for
libGL.so should get linked with the version in /usr/lib32/nvidia-319, so
it links them with some other version. This breaks 32-bit programs like
Steam (which throws a warning about not using direct rendering when it
starts up) and 32-bit games like Team Fortress 2 (which fails to start
altogether). Of course, this isn't specific to Steam and Team Fortress 2
but will affect any 32-bit program trying to use libGL.so and its
associated libraries on a 64-bit machine.

fortunately, the fix for this is pretty simple: in the file
/usr/lib/nvidia-319/alt_ld.so.conf in the nvidia-319 package add the
lines:

/usr/lib32/nvidia-319
/usr/lib/nvidia-319

This will tell ldconfig to use the nvidia libGL.so and associated
libraries for 32-bit applications. For the other versions of the nvidia
driver (such as nvidia-304 and nvidia-304-updates in the main ubuntu
repositories) it's a simple matter of replacing nvidia-319 with
nvidia-304, nvidia-304-updates, nvidia-313, etc. in the directory names.

Although I reported this bug for the nvidia-319 package, I have checked
and this bug applies at least to the nvidia-304 and nvidia-304-updates
packages for Ubuntu 13.04 amd64 in the main ubuntu package repositories
as well. It probably also applies to other nvidia driver packages as
well, but I haven't checked those. I suppose all you'd have to look for
is a blank /usr/lib/nvidia driver package name/alt_ld.so.conf file to
check for the bug.

The file I've included is the output of ldd (which prints the dynamic
library dependencies of a program) when it's used on a 32-bit program
that needs the 32-bit libGL.so on an Ubuntu 13.04 64-bit machine. In
this case, the program I used ldd on is the 32-bit version of glxinfo
from mesa-utils:i386. The nvidia driver version I had installed when I
did this is nvidia-319. However, you will get a very similar result for
other nvidia driver versions/packages.

Also, I said I don't know for the package because 1.) it affects
multiple packages and 2.) it didn't accept the package name nvidia-319.

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


** Tags: xorg-edgers

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

Title:
  ldconfig problem with 64-bit nvidia driver packages

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

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


[Bug 1181651] Re: ldconfig problem with 64-bit nvidia driver packages

2013-05-18 Thread Frans Elliott
** Description changed:

- On Ubuntu 13.04 64-bit, this package as well as others (including
- nvidia-current and nvidia-current-updates from the main ubuntu package
+ On Ubuntu 13.04 64-bit, nvidia-319 as well as others (including nvidia-
+ current and nvidia-current-updates from the main ubuntu package
  repositories) don't play nice with applications that use 32-bit OpenGL
  libraries. When such an application tries to load the nvidia 32-bit
  libGL.so library, they don't load the nvidia libGL.so but some other
  non-nvidia libGL.so. This means a 32-bit application running on Ubuntu
  Raring 64-bit will never use the nvidia libGL.so library.
  
  After a lot of monkey business, I figured out what the problem is. Which
  libGL.so a 32-bit application uses on a 64-bit system is controlled by
  the file /etc/ld.so.conf.d/i386-linux-gnu_GL.conf which is just a
  symlink to /etc/alternatives/i386-linux-gnu_gl_conf which is another
  symlink to /usr/lib/nvidia-319/alt_ld.so.conf or something similar for
  other versions of the nvidia drivers. This file is blank in a clean
  install, so ldconfig doesn't know that 32-bit applications asking for
  libGL.so should get linked with the version in /usr/lib32/nvidia-319, so
  it links them with some other version. This breaks 32-bit programs like
  Steam (which throws a warning about not using direct rendering when it
  starts up) and 32-bit games like Team Fortress 2 (which fails to start
  altogether). Of course, this isn't specific to Steam and Team Fortress 2
  but will affect any 32-bit program trying to use libGL.so and its
  associated libraries on a 64-bit machine.
  
  fortunately, the fix for this is pretty simple: in the file
  /usr/lib/nvidia-319/alt_ld.so.conf in the nvidia-319 package add the
  lines:
  
  /usr/lib32/nvidia-319
  /usr/lib/nvidia-319
  
  This will tell ldconfig to use the nvidia libGL.so and associated
  libraries for 32-bit applications. For the other versions of the nvidia
  driver (such as nvidia-304 and nvidia-304-updates in the main ubuntu
  repositories) it's a simple matter of replacing nvidia-319 with
  nvidia-304, nvidia-304-updates, nvidia-313, etc. in the directory names.
  
  Although I reported this bug for the nvidia-319 package, I have checked
  and this bug applies at least to the nvidia-304 and nvidia-304-updates
  packages for Ubuntu 13.04 amd64 in the main ubuntu package repositories
  as well. It probably also applies to other nvidia driver packages as
  well, but I haven't checked those. I suppose all you'd have to look for
  is a blank /usr/lib/nvidia driver package name/alt_ld.so.conf file to
  check for the bug.
  
  The file I've included is the output of ldd (which prints the dynamic
  library dependencies of a program) when it's used on a 32-bit program
  that needs the 32-bit libGL.so on an Ubuntu 13.04 64-bit machine. In
  this case, the program I used ldd on is the 32-bit version of glxinfo
  from mesa-utils:i386. The nvidia driver version I had installed when I
  did this is nvidia-319. However, you will get a very similar result for
  other nvidia driver versions/packages.
  
  Also, I said I don't know for the package because 1.) it affects
  multiple packages and 2.) it didn't accept the package name nvidia-319.

** Description changed:

- On Ubuntu 13.04 64-bit, nvidia-319 as well as others (including nvidia-
- current and nvidia-current-updates from the main ubuntu package
- repositories) don't play nice with applications that use 32-bit OpenGL
- libraries. When such an application tries to load the nvidia 32-bit
- libGL.so library, they don't load the nvidia libGL.so but some other
- non-nvidia libGL.so. This means a 32-bit application running on Ubuntu
- Raring 64-bit will never use the nvidia libGL.so library.
+ On Ubuntu 13.04 64-bit, the nvidia-319 package as well as others
+ (including nvidia-current and nvidia-current-updates from the main
+ ubuntu package repositories) don't play nice with applications that use
+ 32-bit OpenGL libraries. When such an application tries to load the
+ nvidia 32-bit libGL.so library, they don't load the nvidia libGL.so but
+ some other non-nvidia libGL.so. This means a 32-bit application running
+ on Ubuntu Raring 64-bit will never use the nvidia libGL.so library.
  
  After a lot of monkey business, I figured out what the problem is. Which
  libGL.so a 32-bit application uses on a 64-bit system is controlled by
  the file /etc/ld.so.conf.d/i386-linux-gnu_GL.conf which is just a
  symlink to /etc/alternatives/i386-linux-gnu_gl_conf which is another
  symlink to /usr/lib/nvidia-319/alt_ld.so.conf or something similar for
  other versions of the nvidia drivers. This file is blank in a clean
  install, so ldconfig doesn't know that 32-bit applications asking for
  libGL.so should get linked with the version in /usr/lib32/nvidia-319, so
  it links them with some other version. This breaks 32-bit programs like
  Steam (which throws a warning about not using direct 

[Bug 790183] Re: [138a:0011] Fingerprint reader Validity Sensors not recognized

2013-05-04 Thread Elliott Sales de Andrade
@Ruben: This is only a patch for the existing libfprint. First it needs
to be reviewed and then applied upstream to libfprint code. Then it will
be packaged and available in Ubuntu. If you want to use it now, you need
to compile it yourself following the instructions above.

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

Title:
  [138a:0011] Fingerprint reader Validity Sensors  not recognized

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

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


[Bug 790183] Re: [138a:0011] Fingerprint reader Validity Sensors not recognized

2013-05-04 Thread Elliott Sales de Andrade
** Bug watch added: freedesktop.org Bugzilla #61692
   https://bugs.freedesktop.org/show_bug.cgi?id=61692

** Also affects: libfprint via
   https://bugs.freedesktop.org/show_bug.cgi?id=61692
   Importance: Unknown
   Status: Unknown

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

Title:
  [138a:0011] Fingerprint reader Validity Sensors  not recognized

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

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


[Bug 1090758] [NEW] [HP Pavilion dv6000 (RV216UA#ABA), Conexant CX20549 (Venice), Speaker, Internal] Noise when sound isn't being played

2012-12-15 Thread Kenneth Elliott
Public bug reported:

I'm getting an annoyingn noise from my HP Paviliion dv6000 computer when
no sound is being played. When I increase, decrease, or mute the volume,
I get a cracking noise. Then, the idling noise will return. Thanks for
any tips you may have!

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: alsa-base 1.0.25+dfsg-0ubuntu1
ProcVersionSignature: Ubuntu 3.2.0-34.53-generic 3.2.33
Uname: Linux 3.2.0-34-generic i686
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
ApportVersion: 2.0.1-0ubuntu12
Architecture: i386
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: Intel [HDA Intel], device 0: CONEXANT Analog [CONEXANT Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  kharisma   1683 F pulseaudio
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xd824 irq 43'
   Mixer name   : 'Conexant CX20549 (Venice)'
   Components   : 'HDA:14f15045,103c30bb,00100100'
   Controls  : 18
   Simple ctrls  : 9
Date: Sat Dec 15 12:13:54 2012
InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release i386 
(20120817.3)
PackageArchitecture: all
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
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: [HP Pavilion dv6000 (RV216UA#ABA), Conexant CX20549 (Venice), Speaker, 
Internal] Underruns, dropouts or crackling sound
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 11/26/2008
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: F.2D
dmi.board.name: 30BB
dmi.board.vendor: Quanta
dmi.board.version: 66.42
dmi.chassis.type: 10
dmi.chassis.vendor: Quanta
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnHewlett-Packard:bvrF.2D:bd11/26/2008:svnHewlett-Packard:pnHPPaviliondv6000(RV216UA#ABA):pvrRev1:rvnQuanta:rn30BB:rvr66.42:cvnQuanta:ct10:cvrN/A:
dmi.product.name: HP Pavilion dv6000 (RV216UA#ABA)
dmi.product.version: Rev 1
dmi.sys.vendor: Hewlett-Packard

** Affects: alsa-driver (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 precise 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/1090758

Title:
  [HP Pavilion dv6000 (RV216UA#ABA), Conexant CX20549 (Venice), Speaker,
  Internal] Noise when sound isn't being played

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

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


[Bug 964381] [NEW] Unity Luncher bar on dual-screen

2012-03-25 Thread Daniel Elliott
Public bug reported:

i am using NIVIDA Video card on the Beta1 verson of 12.02 LTS and when i
set up dual screen, this happens http://images.ssfdre38.com/?v=7pEPR.png
and it also shows with 2 programs on full screen where it doesnt hide

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

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


** Tags: 12.04 beta1 lst precise unity

** Also affects: unity (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/964381

Title:
  Unity Luncher bar on dual-screen

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

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


[Bug 964381] Re: Unity Luncher bar on dual-screen

2012-03-25 Thread Daniel Elliott
** Changed in: linux (Ubuntu)
   Status: Incomplete = New

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

Title:
  Unity Luncher bar on dual-screen

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

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


[Bug 890869] [NEW] package libc6 2.12.1-0ubuntu10.2 failed to install/upgrade: package libc6 is already installed and configured

2011-11-15 Thread Kipp Elliott Watson
Public bug reported:

Occurred during upgrade to 11.04, installation process suggested making
this automated bug report

ProblemType: Package
DistroRelease: Ubuntu 10.10
Package: libc6 2.12.1-0ubuntu10.2
ProcVersionSignature: Ubuntu 2.6.35-28.50-generic 2.6.35.11
Uname: Linux 2.6.35-28-generic x86_64
Architecture: amd64
Date: Tue Nov 15 16:28:50 2011
ErrorMessage: package libc6 is already installed and configured
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
SourcePackage: dpkg
Title: package libc6 2.12.1-0ubuntu10.2 failed to install/upgrade: package 
libc6 is already installed and configured

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package maverick

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

Title:
  package libc6 2.12.1-0ubuntu10.2 failed to install/upgrade: package
  libc6 is already installed and configured

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

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


[Bug 890869] Re: package libc6 2.12.1-0ubuntu10.2 failed to install/upgrade: package libc6 is already installed and configured

2011-11-15 Thread Kipp Elliott Watson
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/890869

Title:
  package libc6 2.12.1-0ubuntu10.2 failed to install/upgrade: package
  libc6 is already installed and configured

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

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


[Bug 816724] [NEW] error on console

2011-07-26 Thread Paul Elliott
Public bug reported:

When running kdiff3 comparing 2 directories the following message appears on 
the console:
$ kdiff3 maitreya-6.0.3 maitreya-6.0.5
QInotifyFileSystemWatcherEngine::addPaths: inotify_add_watch failed: No such 
file or directory
QFileSystemWatcher: failed to add paths: /home/pekub1104/.config/ibus/bus
kdiff3(2458) KXMLGUIClient::setXMLFile: cannot find .rc file kdiff3_part.rc 
for component kdiff3part

** Affects: kdiff3 (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/816724

Title:
  error on console

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

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


[Bug 790183] Re: Fingerprint reader Validity Sensors not recognized

2011-07-10 Thread Elliott Sales de Andrade
I also see this problem on a Dell Vostro 3450. According to the Dell
support site, this model is a VFS5011.

** Tags added: 3450 vfs5011

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

Title:
  Fingerprint reader Validity Sensors  not recognized

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

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


[Bug 806720] [NEW] gimp crashes on invocation

2011-07-06 Thread Paul Elliott
Public bug reported:

I have installed kubuntu 11.04 and gimp. Crashes on startup.

pelliott@hrnowl:~$ gimp --version
GNU Image Manipulation Program version 2.6.11
pelliott@hrnowl:~$ gimp

(gimp:3823): GLib-WARNING **: 
/build/buildd/glib2.0-2.28.6/./glib/goption.c:2132: ignoring no-arg, 
optional-arg or filename flags (8) on option of type 0
Segmentation fault


pelliott@hrnowl:~$ lsb_release -rd
Description:Ubuntu 11.04
Release:11.04
pelliott@hrnowl:~$ 
pelliott@hrnowl:~$ apt-cache policy gimp
gimp:
  Installed: 2.6.11-1ubuntu6.1
  Candidate: 2.6.11-1ubuntu6.1
  Version table:
 *** 2.6.11-1ubuntu6.1 0
500 http://us.archive.ubuntu.com/ubuntu/ natty-updates/main i386 
Packages
500 http://security.ubuntu.com/ubuntu/ natty-security/main i386 Packages
100 /var/lib/dpkg/status
 2.6.11-1ubuntu6 0
500 http://us.archive.ubuntu.com/ubuntu/ natty/main i386 Packages
pelliott@hrnowl:~$ 

perhaps gimp has undefined dependancies not satisfied under kubuntu?

** Affects: gimp (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/806720

Title:
  gimp crashes on invocation

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

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


[Bug 609976] Re: pin entry dialog zips in and out of view before anyone can input anything

2011-03-23 Thread Paul Elliott
I have the same problem but only when I am ssh -X ed into another X
server! It does not happen when I am not using ssh -X on either the
x-server or the x-client. I am already using pinentry-qt4!

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

Title:
  pin entry dialog zips in and out of view before anyone can input
  anything

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


[Bug 737860] [NEW] Impress Insert Movie Sound fails to play

2011-03-18 Thread Paul Elliott
Public bug reported:

Binary package hint: openoffice.org

If I add an ogg sound file to a slide with Insert/Movie and Sound and
then display the slide show. The sound does not play. This bug exists at
slide creation time. If I create the slide with the version of OO that
comes with debian 5 and then play that slide with the ubuntu 10.10 sound
plays. If I create the slide with ubuntu 10.10, then the sound will not
play on debian 5 (or ubuntu 10.10).

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: openoffice.org-core 1:3.2.1-7ubuntu1.1
ProcVersionSignature: Ubuntu 2.6.35-27.48-generic 2.6.35.11
Uname: Linux 2.6.35-27-generic i686
Architecture: i386
Date: Fri Mar 18 16:39:14 2011
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
ProcEnviron:
 LANGUAGE=
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: openoffice.org

** Affects: openoffice.org (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 maverick

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

Title:
  Impress Insert Movie  Sound fails to play

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


[Bug 737860] Re: Impress Insert Movie Sound fails to play

2011-03-18 Thread Paul Elliott
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/737860

Title:
  Impress Insert Movie  Sound fails to play

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


[Bug 737860] Re: Impress Insert Movie Sound fails to play

2011-03-18 Thread Paul Elliott
If I add an ogg file with insert/movie and sound. then play the slide
show and verify sound does not play.

Next save the presentation.

Reopen presentation still does not play.

Exit OO.

Copy the X.odp to X.zip.

unzip the X.zip.

edit the file content.xml  changing 
href=media/tromba.ogg
to
href=../../Sounds/tromba.ogg

The relative path to the sound file.

then rezip all the files unzipped.
copy resulting .zip file to .odp

Now open the hacked .odp file using Open Office Impress.
Sound now plays when using Slide Show!

This should be a hint as to where the problem is!

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

Title:
  Impress Insert Movie  Sound fails to play

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


[Bug 737860] Re: Impress Insert Movie Sound fails to play

2011-03-18 Thread Paul Elliott
If I add an ogg file with insert/movie and sound. then play the slide
show and verify sound does not play.

Next save the presentation.

Reopen presentation still does not play.

Exit OO.

Copy the X.odp to X.zip.

unzip the X.zip.

edit the file content.xml  changing 
href=media/tromba.ogg
to
href=../../Sounds/tromba.ogg

The relative path to the sound file.

then rezip all the files unzipped.
copy resulting .zip file to .odp

Now open the hacked .odp file using Open Office Impress.
Sound now plays when using Slide Show!

This should be a hint as to where the problem is!

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

Title:
  Impress Insert Movie  Sound fails to play

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


[Bug 737860] Re: Impress Insert Movie Sound fails to play

2011-03-18 Thread Paul Elliott
If I add an ogg file with insert/movie and sound. then play the slide
show and verify sound does not play.

Next save the presentation.

Reopen presentation still does not play.

Exit OO.

Copy the X.odp to X.zip.

unzip the X.zip.

edit the file content.xml  changing 
  'href=media/tromba.ogg'
to
  'href=../../Sounds/tromba.ogg'

The relative path to the sound file.

then rezip all the files unzipped.
copy resulting .zip file to .odp

Now open the hacked .odp file using Open Office Impress.
Sound now plays when using Slide Show!

This should be a hint as to where the problem is!

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

Title:
  Impress Insert Movie  Sound fails to play

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


[Bug 737860] Re: Impress Insert Movie Sound fails to play

2011-03-18 Thread Paul Elliott
If I add an ogg file with insert/movie and sound. then play the slide
show and verify sound does not play.

Next save the presentation.

Reopen presentation still does not play.

Exit OO.

Copy the X.odp to X.zip.

unzip the X.zip.

edit the file content.xml  changing 
  'href=media/tromba.ogg'
to
  'href=../../Sounds/tromba.ogg'

The relative path to the sound file.

then rezip all the files unzipped.
copy resulting .zip file to .odp

Now open the hacked .odp file using Open Office Impress.
Sound now plays when using Slide Show!

This should be a hint as to where the problem is!

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

Title:
  Impress Insert Movie  Sound fails to play

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


[Bug 737860] Re: Impress Insert Movie Sound fails to play

2011-03-18 Thread Paul Elliott
If I add an ogg file with insert/movie and sound. then play the slide
show and verify sound does not play.

Next save the presentation.

Reopen presentation still does not play.

Exit OO.

Copy the X.odp to X.zip.

unzip the X.zip.

edit the file content.xml  changing 
  href=QUOTEmedia/tromba.oggQUOTE
to
  href=QUOTE../../Sounds/tromba.oggQUOTE

In the above QUOTE stands for the quote character. Had to write because
otherwise sys thinks I am writting html

The relative path to the sound file.

then rezip all the files unzipped.
copy resulting .zip file to .odp

Now open the hacked .odp file using Open Office Impress.
Sound now plays when using Slide Show!

This should be a hint as to where the problem is!

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

Title:
  Impress Insert Movie  Sound fails to play

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


[Bug 737860] Re: Impress Insert Movie Sound fails to play

2011-03-18 Thread Paul Elliott
If I add an ogg file with insert/movie and sound. then play the slide
show and verify sound does not play.

Next save the presentation.

Reopen presentation still does not play.

Exit OO.

Copy the X.odp to X.zip.

unzip the X.zip.

edit the file content.xml  changing 
  hrefEQUALQUOTEmedia/tromba.oggQUOTE
to
  hrefEQUALQUOTE../../Sounds/tromba.oggQUOTE

In the above QUOTE stands for the quote character. EQUAL stands for
equal char. I Had to write that way because otherwise sys thinks I am
writting html

The relative path to the sound file.

then rezip all the files unzipped.
copy resulting .zip file to .odp

Now open the hacked .odp file using Open Office Impress.
Sound now plays when using Slide Show!

This should be a hint as to where the problem is!

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

Title:
  Impress Insert Movie  Sound fails to play

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


[Bug 651678] Re: crashes with assertion failure on startup

2011-03-15 Thread Paul Elliott
I am also aflected by the anjuta version of this bug!

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

Title:
  crashes with assertion failure on startup

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


[Bug 651678] Re: crashes with assertion failure on startup

2011-03-15 Thread Paul Elliott
I am also aflected by the anjuta version of this bug!

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

Title:
  crashes with assertion failure on startup

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


[Bug 651678] Re: crashes with assertion failure on startup

2011-03-15 Thread Paul Elliott
I am also afflicted by the anjuta version  of this bug.

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

Title:
  crashes with assertion failure on startup

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


[Bug 723755] Re: When using Samba authenticating via Kerberos against a windows AD, winbind hangs on boot

2011-03-10 Thread Paul Elliott
Hi Chuck - what logs would you like and from what point? The point being
I wasn't getting a lot of logs - samba would fail with a rather obscure
failure to connect if you attempted to access the shares at that point,
and obviously winbind was not logging anything as it had hung. The fix
was purely guesswork on my behalf, there wasn't really any help in the
logs.

I fail to see the low importance decision as well, as anyone attempting
to authenticate a Ubuntu LTS server samba / kerberos box against an AD
domain will hit this, guaranteed - I'm not running anything not taken
from Apt, and this isn't an uncommon application for samba, at least
until 4 is released anyway.

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

Title:
  When using Samba authenticating via Kerberos against a windows AD,
  winbind hangs on boot

-- 
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 723755] Re: When using Samba authenticating via Kerberos against a windows AD, winbind hangs on boot

2011-03-10 Thread Paul Elliott
Hi Chuck - what logs would you like and from what point? The point being
I wasn't getting a lot of logs - samba would fail with a rather obscure
failure to connect if you attempted to access the shares at that point,
and obviously winbind was not logging anything as it had hung. The fix
was purely guesswork on my behalf, there wasn't really any help in the
logs.

I fail to see the low importance decision as well, as anyone attempting
to authenticate a Ubuntu LTS server samba / kerberos box against an AD
domain will hit this, guaranteed - I'm not running anything not taken
from Apt, and this isn't an uncommon application for samba, at least
until 4 is released anyway.

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

Title:
  When using Samba authenticating via Kerberos against a windows AD,
  winbind hangs on boot

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


[Bug 723755] [NEW] When using Samba authenticating via Kerberos against a windows AD, winbind hangs on boot

2011-02-23 Thread Paul Elliott
Public bug reported:

Binary package hint: samba

Hi all,

I recently set about making a linux box (Ubuntu Server LTS 10.04)
authenticate against a windows based AD via Kerberos, in order to
provide shares which would accept domain logins. Everything (eventually)
went fine with this, until I rebooted the box.

The first thing I noticed was that the share was inaccessible until
smbd, nmbd and winbind were restarted. It was at this point that I
noticed that while smbd and nmbd had been converted to upstart, winbind
had not, and I presumed that it was something to do with startup order.

It was at this point I put a head back on the box, and noticed something
else. Although I had been able to log in via ssh, the screen was still
stuck at the point of starting winbind. The local user was able to
switch to another TTY and log in, but the startup sequence was stuck for
some reason.

I then renamed the init.d script for winbind, and replaced it with the
upstart script suggested in a bug here
(https://bugs.launchpad.net/ubuntu/+source/samba/+bug/612958), however
this did not solve the problem. I also noticed at this point that the
winbind process seemed to be running, but fully hung, unresponsive to
either its init script or upstart. The only way to deal with this was to
kill -9 it, and then it seemed to behave. It still took the restarting
of smbd in order for the share to become accessible however.

The final solution I found was to change the winbind upstart script AND
the samba upstart script to start so that they would only  start on
networking up (net-device-up IFACE!=lo) in addition to their original
start on stanza, looking very much in this respect the same as nmdb
already does.

In summary:

If you start winbind attempting to authenticate against an AD before the 
networking is up, then it seems to hang permanently.
If you start smbd (also attempting to authenticate against an AD) before the 
networking is up, then the AD authentication will not work until both smbd and 
winbind are restarted.

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

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

Title:
  When using Samba authenticating via Kerberos against a windows AD,
  winbind hangs on boot

-- 
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 723755] [NEW] When using Samba authenticating via Kerberos against a windows AD, winbind hangs on boot

2011-02-23 Thread Paul Elliott
Public bug reported:

Binary package hint: samba

Hi all,

I recently set about making a linux box (Ubuntu Server LTS 10.04)
authenticate against a windows based AD via Kerberos, in order to
provide shares which would accept domain logins. Everything (eventually)
went fine with this, until I rebooted the box.

The first thing I noticed was that the share was inaccessible until
smbd, nmbd and winbind were restarted. It was at this point that I
noticed that while smbd and nmbd had been converted to upstart, winbind
had not, and I presumed that it was something to do with startup order.

It was at this point I put a head back on the box, and noticed something
else. Although I had been able to log in via ssh, the screen was still
stuck at the point of starting winbind. The local user was able to
switch to another TTY and log in, but the startup sequence was stuck for
some reason.

I then renamed the init.d script for winbind, and replaced it with the
upstart script suggested in a bug here
(https://bugs.launchpad.net/ubuntu/+source/samba/+bug/612958), however
this did not solve the problem. I also noticed at this point that the
winbind process seemed to be running, but fully hung, unresponsive to
either its init script or upstart. The only way to deal with this was to
kill -9 it, and then it seemed to behave. It still took the restarting
of smbd in order for the share to become accessible however.

The final solution I found was to change the winbind upstart script AND
the samba upstart script to start so that they would only  start on
networking up (net-device-up IFACE!=lo) in addition to their original
start on stanza, looking very much in this respect the same as nmdb
already does.

In summary:

If you start winbind attempting to authenticate against an AD before the 
networking is up, then it seems to hang permanently.
If you start smbd (also attempting to authenticate against an AD) before the 
networking is up, then the AD authentication will not work until both smbd and 
winbind are restarted.

** Affects: samba (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/723755

Title:
  When using Samba authenticating via Kerberos against a windows AD,
  winbind hangs on boot

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


[Bug 653134] Re: Can't boot Ubuntu after an upgrade from 10.04.1 to 10.10

2011-01-28 Thread Elliott kensdale
bcbc and others have advised using synaptics to lock  grup-pc  and  
grub-common. I did this - they are still locked (checked after I got back in) 
but the loadfont problem happened again after my update this morning.
Luckily I have Live Cd and the instructions to comment out the lines but why, 
if they are locked, does the updater change them?
I have also locked a lupin something.
Not a LInux expert at all but using it instead of Windows XP with wubi - this 
is annoying and I cannot expect the rest of the family or friends to use Linux 
if this is going to happen every time.

Anyone got any answers?

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

Title:
  Can't boot Ubuntu after an upgrade from 10.04.1 to 10.10

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


[Bug 147163] Re: Evolution does not notify on missed alarms

2011-01-24 Thread David Elliott
This is still a problem in Maverick.  Since it SERIOUSLY degrades the
reliability of the Evolution calendar/notification system - a central
component of productivity for most people - I propose the seriousness be
upgraded.  Anyone using a laptop is affected by this (computer not left
on permanently).

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

Title:
  Evolution does not notify on missed alarms

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


[Bug 657840] Re: Kplayer does not upgrade because a file conflicts with kplayer-data

2010-12-07 Thread Paul Elliott
This problem prevented my from installing ubuntu data.

this was error message:
E: /var/cache/apt/archives/kplayer-data_1%3a0.7-2ubuntu1_all.deb: trying to 
overwrite '/usr/share/icons/hicolor/16x16/apps/kplayer.png', which is also in 
package kplayer 1

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

Title:
  Kplayer does not upgrade because a file conflicts with kplayer-data

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


[Bug 657840] Re: Kplayer does not upgrade because a file conflicts with kplayer-data

2010-12-07 Thread Paul Elliott
This problem prevented my from installing ubuntu data.

this was error message:
E: /var/cache/apt/archives/kplayer-data_1%3a0.7-2ubuntu1_all.deb: trying to 
overwrite '/usr/share/icons/hicolor/16x16/apps/kplayer.png', which is also in 
package kplayer 1

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

Title:
  Kplayer does not upgrade because a file conflicts with kplayer-data

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


[Bug 657840] Re: Kplayer does not upgrade because a file conflicts with kplayer-data

2010-12-07 Thread Paul Elliott
This problem prevented my from installing kplayer-data.

this was error message:
E: /var/cache/apt/archives/kplayer-data_1%3a0.7-2ubuntu1_all.deb: trying to 
overwrite '/usr/share/icons/hicolor/16x16/apps/kpl

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

Title:
  Kplayer does not upgrade because a file conflicts with kplayer-data

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


[Bug 564741] Re: multiple broadcast account windows popup when accounts not configured properly

2010-10-29 Thread David Elliott
Same story - did a clean maverick install, restored home folder, and am
now getting the account authorization popup on every sync, even though
the account is listed as authorized.

-- 
multiple broadcast account windows popup when accounts not configured properly
https://bugs.launchpad.net/bugs/564741
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


  1   2   3   4   >