[Bug 1892595] Re: TigerVNC server listening on unix domain socket doesn't work

2020-09-23 Thread Arthur Robinson IV
I found the source of the error and fixed the bug, at least for the
purposes of my own project. Essentially, the script waits for a port to
be used even though we are listening on a file. Obviously, it won't find
this port, so eventually it times out.

Since I've never used Perl before, my fix is not pretty/clean. However,
I will provide as much assistance as I can to whoever ends up officially
fixing this bug. My email is aerobinso...@gmail.com.

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

Title:
  TigerVNC server listening on unix domain socket doesn't work

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

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

[Bug 1892595] [NEW] TigerVNC server listening on unix domain socket doesn't work

2020-08-22 Thread Arthur Robinson IV
Public bug reported:

When I try to start a TigerVNC server listening on a unix domain socket,
it doesn't work. No clear error message is provided. The exact command I
used was  'tigervncserver -rfbunixpath /tmp/mysocket'.

I have written about this issue in more detail here:
https://github.com/tigervnc/tigervnc/issues/1071

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: tigervnc-standalone-server 1.10.1+dfsg-3
ProcVersionSignature: Ubuntu 5.4.0-42.46-generic 5.4.44
Uname: Linux 5.4.0-42-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.6
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Sat Aug 22 15:59:57 2020
InstallationDate: Installed on 2020-08-21 (0 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: tigervnc
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug focal

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

Title:
  TigerVNC server listening on unix domain socket doesn't work

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

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

[Bug 1797417]

2019-09-24 Thread Iv-n
Simon, thank you for reviewing and merging.

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

Title:
  Background of system tray icons not drawn properly

To manage notifications about this bug go to:
https://bugs.launchpad.net/xfce4-panel/+bug/1797417/+subscriptions

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

[Bug 1797417]

2019-09-23 Thread Iv-n
By the way, mate-panel works in my configuration. And it uses 32-bit
visuals for systray and icons.

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

Title:
  Background of system tray icons not drawn properly

To manage notifications about this bug go to:
https://bugs.launchpad.net/xfce4-panel/+bug/1797417/+subscriptions

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

[Bug 1797417]

2019-09-23 Thread Iv-n
Created attachment 9050
patch that fixes the problem on my machine

> I've hacked systray_manager_set_visual function to use RGBA visual,
>  too (what gdk_screen_get_rgba_visual(screen) returns, if that's not NULL) 
> -- and I believe this is the right thing to do -- but  it confuses 
> systray_socket_new
> which sees that the visual supports alpha channel and thinks we have 
> compositing.

Well, apparently it was me who was confused: it seems that if visual
supports alpha channel we actually are compositing, even if it does not
happen on screen/wm level. But if so, we should not check that screen is
composited in systray_plugin_box_draw, so I removed that check; when
this check was present, icons were not drawn at all.

I'm attaching the patch with these two simple changes. Applying it to
xfce4-panel 4.14.0 fixed the issue on my machine.

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

Title:
  Background of system tray icons not drawn properly

To manage notifications about this bug go to:
https://bugs.launchpad.net/xfce4-panel/+bug/1797417/+subscriptions

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

[Bug 1797417]

2019-09-19 Thread Iv-n
I also tried a few things. First, as far as I understood, parent-
relative background is not set with NULL, there is a special pattern
that should be used instead:

--- a/xfce4-panel/plugins/systray/systray-socket.c
+++ b/xfce4-panel/plugins/systray/systray-socket.c
@@ -139,7 +139,7 @@ systray_socket_realize (GtkWidget *widget)
   else if (gtk_widget_get_visual (widget) ==
gdk_window_get_visual (gdk_window_get_parent (window)))
 {
-  gdk_window_set_background_pattern (window, NULL);
+  gdk_window_set_background_pattern (window, 
gdk_x11_get_parent_relative_pattern());

   socket->parent_relative_bg = TRUE;
 }

This alone, of course, does not help, since the visuals of the window
and its parent are different: systray manager uses 24-bit visual on my
system, but all its parents, including the pannel and the plugin wrapper
("wrapper-2.0" window) use 32-bit RGBA visuals. I've hacked
systray_manager_set_visual function to use RGBA visual, too (what
gdk_screen_get_rgba_visual(screen) returns, if that's not NULL) -- and I
believe this is the right thing to do -- but  it confuses
systray_socket_new which sees that the visual supports alpha channel and
thinks we have compositing.

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

Title:
  Background of system tray icons not drawn properly

To manage notifications about this bug go to:
https://bugs.launchpad.net/xfce4-panel/+bug/1797417/+subscriptions

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

[Bug 1797417]

2019-09-05 Thread Iv-n
I'm also affected by the problem, with gtk+3 3.24.11 and xfce4 panel
4.14.0.

When I run xfce4-panel with PANEL_DEBUG=systray  I see the following in
the debug log:

xfce4-panel(external): xkb-3: child is embedded; 7 properties in queue
xfce4-panel(systray): registered manager on screen 0
xfce4-panel(systray): socket networkmanager applet[0x1244f30] 
(composited=false, relative-bg=false
xfce4-panel(systray): added networkmanager applet[0x1244f30] icon
xfce4-panel(systray): socket clipman[0x14fe490] (composited=false, 
relative-bg=false
xfce4-panel(systray): added clipman[0x14fe490] icon

I tried to dig into that a bit and that lead me to
systray_socket_realize function:

https://git.xfce.org/xfce/xfce4-panel/tree/plugins/systray/systray-
socket.c?h=xfce-4.14.0#n122

Yes, we're not compositing, as the compositing is disabled, so this is
expected. But relative-bg is not set, too -- apparently, the visuals of
the socket widget and its parent differ. And indeed, they are. Here is a
part of my gdb session:

(gdb) step
gtk_widget_get_visual (widget=0x434f30) at gtkwidget.c:11685
11685 g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
(gdb) finish 
Run till exit from #0  gtk_widget_get_visual (widget=0x434f30) at 
gtkwidget.c:11685
0x77fc3dd8 in systray_socket_realize (widget=0x434f30) at 
systray-socket.c:139
139   else if (gtk_widget_get_visual (widget) ==
Value returned is $7 = (GdkVisual *) 0x43c590
(gdb) step
gdk_window_get_parent (window=window@entry=0x6f20c0) at gdkwindow.c:2436
2436  g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
(gdb) finish 
Run till exit from #0  gdk_window_get_parent (window=window@entry=0x6f20c0) at 
gdkwindow.c:2436
0x77fc3de3 in systray_socket_realize (widget=0x434f30) at 
systray-socket.c:139
139   else if (gtk_widget_get_visual (widget) ==
Value returned is $8 = (GdkWindow *) 0x434900
(gdb) step
gdk_window_get_visual (window=0x434900) at gdkwindow.c:2288
2288  g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
(gdb) finish 
Run till exit from #0  gdk_window_get_visual (window=0x434900) at 
gdkwindow.c:2288
0x77fc3deb in systray_socket_realize (widget=0x434f30) at 
systray-socket.c:139
139   else if (gtk_widget_get_visual (widget) ==
Value returned is $9 = (GdkVisual *) 0x442850
(gdb) p *((GdkVisual *) 0x43c590)
$10 = {parent_instance = {g_type_instance = {g_class = 0x43c090}, ref_count = 
2, qdata = 0x0}, type = GDK_VISUAL_TRUE_COLOR, depth = 24, byte_order = 
GDK_LSB_FIRST, colormap_size = 256, bits_per_rgb = 8, red_mask = 16711680, 
  green_mask = 65280, blue_mask = 255, screen = 0x43a020}
(gdb) p *((GdkVisual *) 0x442850)
$11 = {parent_instance = {g_type_instance = {g_class = 0x43c090}, ref_count = 
2, qdata = 0x0}, type = GDK_VISUAL_TRUE_COLOR, depth = 32, byte_order = 
GDK_LSB_FIRST, colormap_size = 256, bits_per_rgb = 8, red_mask = 16711680, 
  green_mask = 65280, blue_mask = 255, screen = 0x43a020}


So, the widget has 24 bit visual, but it's parent has 32 bit visual, so no 
parent-relative background.

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

Title:
  Background of system tray icons not drawn properly

To manage notifications about this bug go to:
https://bugs.launchpad.net/xfce4-panel/+bug/1797417/+subscriptions

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

[Bug 1825742] [NEW] installer crashed installing kubuntu 19.04

2019-04-21 Thread Oswald P. Backus IV
Public bug reported:

grub is now corrupt and cannot boot previous version of kubuntu (18.10)

ProblemType: Bug
DistroRelease: Ubuntu 19.04
Package: ubiquity 19.04.9
ProcVersionSignature: Ubuntu 5.0.0-13.14-generic 5.0.6
Uname: Linux 5.0.0-13-generic x86_64
ApportVersion: 2.20.10-0ubuntu27
Architecture: amd64
CasperVersion: 1.405
CurrentDesktop: KDE
Date: Sun Apr 21 13:36:36 2019
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/kubuntu.seed 
boot=casper maybe-ubiquity quiet splash ---
LiveMediaBuild: Kubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
SourcePackage: grub-installer
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug disco kubuntu ubiquity-19.04.9

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

Title:
  installer crashed installing kubuntu 19.04

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

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

[Bug 1635974] [NEW] Could not calculate the upgrade

2016-10-23 Thread Iv
Public bug reported:

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.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: ubuntu-release-upgrader-core 1:0.220.8
ProcVersionSignature: Ubuntu 3.16.0-77.99~14.04.1-generic 3.16.7-ckt27
Uname: Linux 3.16.0-77-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.21
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: Unity
Date: Sun Oct 23 16:15:33 2016
InstallationDate: Installed on 2015-04-18 (553 days ago)
InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 (20150218.1)
PackageArchitecture: all
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to trusty on 2016-10-23 (0 days ago)
VarLogDistupgradeTermlog:

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


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

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

Title:
  Could not calculate the upgrade

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

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


[Bug 1530523] Re: kcm_driver_manager: Infinitely shows Collecting information

2016-04-23 Thread John H Ring IV
For those needing an  immediate workaround note that the CLI version is
fully functional. (I used it to install Intel microcode and nvidia
drivers). The name of the CLI program is ubuntu-drivers for those that
don't know.

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

Title:
  kcm_driver_manager: Infinitely shows Collecting information

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

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


[Bug 1564494] [NEW] Kubuntu installer crashes with secureboot

2016-03-31 Thread John H Ring IV
Public bug reported:

This happens every time I run the installer. The Installer did work on a 
non-uefi system. This is my first time reporting a bug to ubuntu, if any 
additional information is required please advise.
.
Traceback (most recent call last):
  File "/usr/lib/ubiquity/ubiquity/frontend/kde_ui.py", line 502, in 
0, lambda: self.dbfilter.start(auto_process=True))
  File "/usr/lib/ubiquity/ubiquity/filteredcommand.py", line 103, in start
prep = self.prepare()
  File "/usr/lib/ubiquity/plugins/ubi-prepare.py", line 336, in prepare
self.ui.set_using_secureboot(True)
AttributeError: 'PageKde' object has no attribute 'set_using_secureboot'

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: ubiquity 2.21.53
ProcVersionSignature: Ubuntu 4.4.0-15.31-generic 4.4.6
Uname: Linux 4.4.0-15-generic x86_64
ApportVersion: 2.20-0ubuntu3
Architecture: amd64
CasperVersion: 1.370
CurrentDesktop: KDE
Date: Thu Mar 31 15:59:07 2016
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz.efi file=/cdrom/preseed/kubuntu.seed 
boot=casper maybe-ubiquity quiet splash nouveau.modeset=0 ---
LiveMediaBuild: Kubuntu 16.04 LTS "Xenial Xerus" - Beta amd64 (20160323)
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug kubuntu ubiquity-2.21.51 xenial

** Attachment added: "syslog"
   https://bugs.launchpad.net/bugs/1564494/+attachment/4618476/+files/syslog

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

Title:
  Kubuntu installer crashes with secureboot

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

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


[Bug 1472442] Re: error using apt-get

2016-03-29 Thread Sam Houston Huffman IV
Hey!  Not sure if you're still having this problem, but I was able to
resolve this by installing acpi-call-dkms instead.  That appears to be
the correct package per the installation instructions from the TLP
website:

http://linrunner.de/en/tlp/docs/tlp-linux-advanced-power-
management.html#installation

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

Title:
  error using apt-get

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

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


[Bug 1481696] [NEW] package sgml-data 2.0.10 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2015-08-05 Thread Iv
Public bug reported:

I did two system upgrades in a row, and got this both times, I think.
Now on vivid.

ProblemType: Package
DistroRelease: Ubuntu 15.04
Package: sgml-data 2.0.10
ProcVersionSignature: Ubuntu 3.19.0-25.26-generic 3.19.8-ckt2
Uname: Linux 3.19.0-25-generic i686
ApportVersion: 2.17.2-0ubuntu1.1
Architecture: i386
Date: Wed Aug  5 11:49:21 2015
DuplicateSignature: package:sgml-data:2.0.10:subprocess installed 
post-installation script returned error exit status 2
ErrorMessage: subprocess installed post-installation script returned error exit 
status 2
InstallationDate: Installed on 2010-06-10 (1881 days ago)
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100429)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.17.25ubuntu1
 apt  1.0.9.7ubuntu4.1
SourcePackage: sgml-data
Title: package sgml-data 2.0.10 failed to install/upgrade: subprocess installed 
post-installation script returned error exit status 2
UpgradeStatus: Upgraded to vivid on 2015-08-04 (1 days ago)

** Affects: sgml-data (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 vivid

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

Title:
  package sgml-data 2.0.10 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 2

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

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


[Bug 1410809] Re: [12.04] [14.04] Cross-references don't work in documents opened read-write

2015-07-15 Thread Adam C Powell IV
Okay, I am very embarrassed now.  View menu → Field names.  That was it.
Sorry to bother you all!

** Changed in: libreoffice (Ubuntu)
   Status: New = Invalid

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

Title:
  [12.04] [14.04] Cross-references don't work in documents opened read-
  write

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

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

[Bug 1410809] Re: [12.04] Cross-references don't work in documents opened read-write

2015-07-14 Thread Adam C Powell IV
Update: I (finally) upgraded to Trusty (14.04), with libreoffice
1:4.2.8-0ubuntu2, and this bug persists.

When I generate a PDF, it substitutes all of the fields properly, re-
paginates the whole document (since entries go from Page numbers to
say 5), and creates the PDF just fine.

Could I have accidentally set an option which leads to this odd
behavior?

-Adam

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

Title:
  [12.04] [14.04] Cross-references don't work in documents opened read-
  write

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

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


[Bug 1410809] Re: [12.04] [14.04] Cross-references don't work in documents opened read-write

2015-07-14 Thread Adam C Powell IV
Applies to 14.04 Trusty as well as 12.04 Precise

** Summary changed:

- [12.04] Cross-references don't work in documents opened read-write
+ [12.04] [14.04] Cross-references don't work in documents opened read-write

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

Title:
  [12.04] [14.04] Cross-references don't work in documents opened read-
  write

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

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


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2015-06-19 Thread Iv Betta
same problem

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

Title:
  Ralink RT3290 doesn't have a bluetooth driver

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

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


[Bug 1428180] [NEW] package libc6-dev:amd64 2.19-0ubuntu6.6 failed to install/upgrade: package libc6-dev:amd64 is already installed and configured

2015-03-04 Thread Thomas Arroyo IV
Public bug reported:

not sure what happened

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: libc6-dev:amd64 2.19-0ubuntu6.6
ProcVersionSignature: Ubuntu 3.13.0-35.62-generic 3.13.11.6
Uname: Linux 3.13.0-35-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.7
AptdaemonVersion: 1.1.1-1ubuntu5.1
Architecture: amd64
Date: Tue Mar  3 21:42:25 2015
DuplicateSignature: package:libc6-dev:amd64:2.19-0ubuntu6.6:package 
libc6-dev:amd64 is already installed and configured
ErrorMessage: package libc6-dev:amd64 is already installed and configured
InstallationDate: Installed on 2014-04-18 (319 days ago)
InstallationMedia: Lubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140416.2)
SourcePackage: dpkg
Title: package libc6-dev:amd64 2.19-0ubuntu6.6 failed to install/upgrade: 
package libc6-dev:amd64 is already installed and configured
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: already-installed amd64 apport-package trusty

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

Title:
  package libc6-dev:amd64 2.19-0ubuntu6.6 failed to install/upgrade:
  package libc6-dev:amd64 is already installed and configured

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

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


[Bug 1410809] Re: [12.04] Cross-references don't work in documents opened read-write

2015-01-14 Thread Adam C Powell IV
D'oh! Forgot the attachment.

** Attachment added: Example .odt document demonstrating this bug.
   
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/1410809/+attachment/4298445/+files/Test.odt

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

Title:
  [12.04] Cross-references don't work in documents opened read-write

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

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


[Bug 1410809] Re: [12.04] Cross-references don't work in documents opened read-write

2015-01-14 Thread Adam C Powell IV
Thanks for the reply.  I'm attaching an example document.  What I see
is:

Test document, this is page Page Numbers.
Below is Table  Table.
A B C
D E F
G
Table Number range Table: Letters of the alphabet.
Here is a footnote.1
1 This is the footnote.

At least the footnote numbering works.

This past weekend (after seeing the problem), I updated several packages
for the first time in a couple of weeks, here is what was in
/var/cache/apt/archives/:

bsd-mailx_8.1.2-0.2006cvs-1ubuntu0.1_amd64.deb
cpio_2.11-7ubuntu3.1_amd64.deb
python2.7-minimal_2.7.3-0ubuntu3.6_amd64.deb
python2.7_2.7.3-0ubuntu3.6_amd64.deb
libpython2.7_2.7.3-0ubuntu3.6_amd64.deb
mime-support_3.51-1ubuntu1.1_all.deb
libnss3-1d_3.17.1-0ubuntu0.12.04.2_amd64.deb
libnss3_3.17.1-0ubuntu0.12.04.2_amd64.deb
xserver-common_2%3a1.11.4-0ubuntu10.16_all.deb
xserver-xorg-core_2%3a1.11.4-0ubuntu10.16_amd64.deb
linux-headers-3.2.0-74_3.2.0-74.109_all.deb
linux-headers-3.2.0-74-generic_3.2.0-74.109_amd64.deb
linux-headers-generic_3.2.0.74.88_amd64.deb
linux-libc-dev_3.2.0-74.109_amd64.deb
python-lazr.restfulclient_0.12.0-1ubuntu1.2_all.deb
bind9-host_1%3a9.8.1.dfsg.P1-4ubuntu0.9_amd64.deb
dnsutils_1%3a9.8.1.dfsg.P1-4ubuntu0.9_amd64.deb
flashplugin-installer_11.2.202.425ubuntu0.12.04.1_amd64.deb
libbind9-80_1%3a9.8.1.dfsg.P1-4ubuntu0.9_amd64.deb
libdns81_1%3a9.8.1.dfsg.P1-4ubuntu0.9_amd64.deb
libisc83_1%3a9.8.1.dfsg.P1-4ubuntu0.9_amd64.deb
libisccc80_1%3a9.8.1.dfsg.P1-4ubuntu0.9_amd64.deb
libisccfg82_1%3a9.8.1.dfsg.P1-4ubuntu0.9_amd64.deb
liblwres80_1%3a9.8.1.dfsg.P1-4ubuntu0.9_amd64.deb
linux-generic_3.2.0.74.88_amd64.deb
linux-image-generic_3.2.0.74.88_amd64.deb
linux-image-3.2.0-74-generic_3.2.0-74.109_amd64.deb
ntp_1%3a4.2.6.p3+dfsg-1ubuntu3.2_amd64.deb
ntpdate_1%3a4.2.6.p3+dfsg-1ubuntu3.2_amd64.deb

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

Title:
  [12.04] Cross-references don't work in documents opened read-write

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

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


[Bug 1410809] Re: [12.04] Cross-references don't work in documents opened read-write

2015-01-14 Thread Adam C Powell IV
** Changed in: libreoffice (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/1410809

Title:
  [12.04] Cross-references don't work in documents opened read-write

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

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


[Bug 1410809] [NEW] [12.04] Cross-references don't work in documents opened read-write

2015-01-14 Thread Adam C Powell IV
Public bug reported:

LibreOffice-writer cross references stopped working approximately last
Friday January 9. Instead of figure captions showing Figure 5: this is
the caption, they say Figure Number range Figure: this is the
caption, and other references have other tags. Not one of them shows
the number. LibreOffice had worked -- on the same documents -- just fine
a coupe of days earlier.

When I open the same document read-only, all of the cross-references
display just fine.

The exact same documents open just fine in OpenOffice on a Windows
machine.

This is on Ubuntu 12.04, libreoffice-writer 1:3.5.7-0ubuntu7.

-Adam

** Affects: libreoffice (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/1410809

Title:
  [12.04] Cross-references don't work in documents opened read-write

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

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


[Bug 1394412] Re: Text files are still being opened with LibreOffice Writer

2014-11-25 Thread Steve Radonich IV
Accidentally clicked on something, Sorry about that.

** Also affects: ubuntu
   Importance: Undecided
   Status: New

** Changed in: ubuntu
   Status: New = Invalid

** No longer affects: ubuntu

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

Title:
  Text files are still being opened with LibreOffice Writer

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

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


[Bug 1297101] Re: Window hide headers for the top panel Ubuntu and it is not possible to reset compiz

2014-03-29 Thread IV
confirm bug on trusty x64 . If the window Libre office is not in full-
screen mode, the header of the browser window closes top panel unity.

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

Title:
  Window hide headers for the top panel Ubuntu and it is not possible to
  reset compiz

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

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


[Bug 1290611] Re: [Clevo W65_67SZ, Intel Haswell HDMI, Digital Out, HDMI] crackling sound and audio up a note

2014-03-20 Thread iv
Hi Raymond

I couldn't find out hot to check the speaker allocation, can you drive
me through with the commands?

I also find out that last kernel working properly is 3.10.33 then
something changed from kernel 3.11 and the audio start to have problems!

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

Title:
  [Clevo W65_67SZ, Intel Haswell HDMI, Digital Out, HDMI] crackling
  sound and audio up a note

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

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


[Bug 1290611] Re: [Clevo W65_67SZ, Intel Haswell HDMI, Digital Out, HDMI] crackling sound and audio up a note

2014-03-13 Thread iv
Hi Raymond

How can i check the speaker allocation in system log ?

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

Title:
  [Clevo W65_67SZ, Intel Haswell HDMI, Digital Out, HDMI] crackling
  sound and audio up a note

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

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


[Bug 1288182] Re: Cyrillic not displayed in the input field

2014-03-12 Thread IV
Confirm this bug, Ubuntu 14.04 (Unity) x64 with the latest updates.
Forward solutions.

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

Title:
  Cyrillic not displayed in the input field

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

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


[Bug 1290611] Re: [Clevo W65_67SZ, Intel Haswell HDMI, Digital Out, HDMI] crackling sound and audio up a note

2014-03-12 Thread iv
Sorry Raymond but i don't really know how to use this info!!

Do you mean this is a kernel bug and i should log in a different place?

Is the edid-decode.c a patch for my kernel?

Thanks

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

Title:
  [Clevo W65_67SZ, Intel Haswell HDMI, Digital Out, HDMI] crackling
  sound and audio up a note

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

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


[Bug 1290611] Re: [Clevo W65_67SZ, Intel Haswell HDMI, Digital Out, HDMI] crackling sound and audio up a note

2014-03-11 Thread iv
Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 32767 x 32767
eDP1 connected primary 1920x1080+0+0 (0x48) normal (normal left inverted right 
x axis y axis) 345mm x 194mm
Identifier: 0x43
Timestamp:  311573
Subpixel:   unknown
Gamma:  1.0:1.0:1.0
Brightness: 1.0
Clones:
CRTC:   0
CRTCs:  1 0 2
Transform:  1.00 0.00 0.00
0.00 1.00 0.00
0.00 0.00 1.00
   filter: 
EDID: 
000030e42303
00160104952313780a25b5a159599d27
1c50540001010101010101010101
010101010101e83580a8703816402024
550059c21018
00fe004c
4720446973706c61790a202000fe
004c503135365746342d535042310069
BACKLIGHT: 100 
range: (0, 100)
Backlight: 100 
range: (0, 100)
scaling mode: Full aspect 
supported: None, Full, Center, Full aspect
Broadcast RGB: Automatic 
supported: Automatic, Full, Limited 16:235
audio: auto 
supported: force-dvi, off, auto, on
  1920x1080 (0x48)  138.0MHz -HSync -VSync *current +preferred
h: width  1920 start 1952 end 1988 total 2088 skew0 clock   66.1KHz
v: height 1080 start 1085 end 1090 total 1102   clock   60.0Hz
  1920x1080 (0xab)  138.5MHz +HSync -VSync
h: width  1920 start 1968 end 2000 total 2080 skew0 clock   66.6KHz
v: height 1080 start 1083 end 1088 total    clock   59.9Hz
  1680x1050 (0xac)  146.2MHz -HSync +VSync
h: width  1680 start 1784 end 1960 total 2240 skew0 clock   65.3KHz
v: height 1050 start 1053 end 1059 total 1089   clock   60.0Hz
  1680x1050 (0xad)  119.0MHz +HSync -VSync
h: width  1680 start 1728 end 1760 total 1840 skew0 clock   64.7KHz
v: height 1050 start 1053 end 1059 total 1080   clock   59.9Hz
  1600x1024 (0xae)  103.1MHz +HSync +VSync
h: width  1600 start 1600 end 1656 total 1664 skew0 clock   62.0KHz
v: height 1024 start 1024 end 1029 total 1030   clock   60.2Hz
  1400x1050 (0xaf)  122.0MHz +HSync +VSync
h: width  1400 start 1488 end 1640 total 1880 skew0 clock   64.9KHz
v: height 1050 start 1052 end 1064 total 1082   clock   60.0Hz
  1280x1024 (0xb0)  108.0MHz +HSync +VSync
h: width  1280 start 1328 end 1440 total 1688 skew0 clock   64.0KHz
v: height 1024 start 1025 end 1028 total 1066   clock   60.0Hz
  1440x900 (0xb1)  106.5MHz -HSync +VSync
h: width  1440 start 1520 end 1672 total 1904 skew0 clock   55.9KHz
v: height  900 start  903 end  909 total  934   clock   59.9Hz
  1280x960 (0xb2)  108.0MHz +HSync +VSync
h: width  1280 start 1376 end 1488 total 1800 skew0 clock   60.0KHz
v: height  960 start  961 end  964 total 1000   clock   60.0Hz
  1360x768 (0xb3)   84.8MHz -HSync +VSync
h: width  1360 start 1432 end 1568 total 1776 skew0 clock   47.7KHz
v: height  768 start  771 end  781 total  798   clock   59.8Hz
  1360x768 (0xb4)   72.0MHz +HSync -VSync
h: width  1360 start 1408 end 1440 total 1520 skew0 clock   47.4KHz
v: height  768 start  771 end  781 total  790   clock   60.0Hz
  1152x864 (0xb5)   81.6MHz -HSync +VSync
h: width  1152 start 1216 end 1336 total 1520 skew0 clock   53.7KHz
v: height  864 start  865 end  868 total  895   clock   60.0Hz
  1024x768 (0xb6)   65.0MHz -HSync -VSync
h: width  1024 start 1048 end 1184 total 1344 skew0 clock   48.4KHz
v: height  768 start  771 end  777 total  806   clock   60.0Hz
  800x600 (0xb7)   40.0MHz +HSync +VSync
h: width   800 start  840 end  968 total 1056 skew0 clock   37.9KHz
v: height  600 start  601 end  605 total  628   clock   60.3Hz
  800x600 (0xb8)   36.0MHz +HSync +VSync
h: width   800 start  824 end  896 total 1024 skew0 clock   35.2KHz
v: height  600 start  601 end  603 total  625   clock   56.2Hz
  640x480 (0xb9)   25.2MHz -HSync -VSync
h: width   640 start  656 end  752 total  800 skew0 clock   31.5KHz
v: height  480 start  490 end  492 total  525   clock   59.9Hz
VGA1 disconnected (normal left inverted right x axis y axis)
Identifier: 0x44
Timestamp:  311573
Subpixel:   unknown
Clones:
CRTCs:  1 0 2
Transform:  1.00 0.00 0.00
0.00 1.00 0.00
0.00 0.00 1.00
   filter: 
HDMI1 connected 1920x1080+0+0 (0xc1) normal (normal left inverted 

[Bug 1290611] Re: [Clevo W65_67SZ, Intel Haswell HDMI, Digital Out, HDMI] crackling sound and audio up a note

2014-03-11 Thread iv
So why ELD  contained all the info using ubuntu 13.04 and from 13.10
those information are gone?

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

Title:
  [Clevo W65_67SZ, Intel Haswell HDMI, Digital Out, HDMI] crackling
  sound and audio up a note

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

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


[Bug 1256655] Re: [Gazelle Professional, Intel Haswell HDMI, Digital Out, HDMI] Playback problem, built in speakers work but no audio over HDMI

2014-03-10 Thread iv
Hi Raymond

just an updatei installed ubuntu 13.04 and HDMI works like a charm
out of the box!

Is there any command i can run to compere with 14.04??

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

Title:
  [Gazelle Professional, Intel Haswell HDMI, Digital Out, HDMI] Playback
  problem, built in speakers work but no audio over HDMI

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

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


[Bug 1256655] Re: [Gazelle Professional, Intel Haswell HDMI, Digital Out, HDMI] Playback problem, built in speakers work but no audio over HDMI

2014-03-10 Thread iv
here the info from 13.04

http://www.alsa-
project.org/db/?f=c70bff7cbf3bed460faa334f8e988a85cd92fc94


xrandr --verbose
Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 32767 x 32767
eDP1 connected 1920x1080+0+0 (0x47) normal (normal left inverted right x axis y 
axis) 345mm x 194mm
Identifier: 0x42
Timestamp:  3262720
Subpixel:   unknown
Gamma:  1.0:1.0:1.0
Brightness: 1.0
Clones:
CRTC:   0
CRTCs:  0 1 2
Transform:  1.00 0.00 0.00
0.00 1.00 0.00
0.00 0.00 1.00
   filter: 
EDID:
000030e42303
00160104952313780a25b5a159599d27
1c50540001010101010101010101
010101010101e83580a8703816402024
550059c21018
00fe004c
4720446973706c61790a202000fe
004c503135365746342d535042310069
BACKLIGHT: 40 (0x0028)  range:  (0,100)
Backlight: 40 (0x0028)  range:  (0,100)
scaling mode:   Full aspect
supported: None Full Center   Full aspect 
Broadcast RGB:  Full
supported: Full Limited 16:2
audio:  auto
supported: force-dvioff  auto on  
  1920x1080 (0x47)  138.0MHz -HSync -VSync *current +preferred
h: width  1920 start 1952 end 1988 total 2088 skew0 clock   66.1KHz
v: height 1080 start 1085 end 1090 total 1102   clock   60.0Hz
  1920x1080 (0x48)  138.5MHz +HSync -VSync
h: width  1920 start 1968 end 2000 total 2080 skew0 clock   66.6KHz
v: height 1080 start 1083 end 1088 total    clock   59.9Hz
  1680x1050 (0x49)  146.2MHz -HSync +VSync
h: width  1680 start 1784 end 1960 total 2240 skew0 clock   65.3KHz
v: height 1050 start 1053 end 1059 total 1089   clock   60.0Hz
  1680x1050 (0x4a)  119.0MHz +HSync -VSync
h: width  1680 start 1728 end 1760 total 1840 skew0 clock   64.7KHz
v: height 1050 start 1053 end 1059 total 1080   clock   59.9Hz
  1600x1024 (0x4b)  103.1MHz +HSync +VSync
h: width  1600 start 1600 end 1656 total 1664 skew0 clock   62.0KHz
v: height 1024 start 1024 end 1029 total 1030   clock   60.2Hz
  1400x1050 (0x4c)  122.0MHz +HSync +VSync
h: width  1400 start 1488 end 1640 total 1880 skew0 clock   64.9KHz
v: height 1050 start 1052 end 1064 total 1082   clock   60.0Hz
  1280x1024 (0x4d)  108.0MHz +HSync +VSync
h: width  1280 start 1328 end 1440 total 1688 skew0 clock   64.0KHz
v: height 1024 start 1025 end 1028 total 1066   clock   60.0Hz
  1440x900 (0x4e)  106.5MHz -HSync +VSync
h: width  1440 start 1520 end 1672 total 1904 skew0 clock   55.9KHz
v: height  900 start  903 end  909 total  934   clock   59.9Hz
  1280x960 (0x4f)  108.0MHz +HSync +VSync
h: width  1280 start 1376 end 1488 total 1800 skew0 clock   60.0KHz
v: height  960 start  961 end  964 total 1000   clock   60.0Hz
  1360x768 (0x50)   84.8MHz -HSync +VSync
h: width  1360 start 1432 end 1568 total 1776 skew0 clock   47.7KHz
v: height  768 start  771 end  781 total  798   clock   59.8Hz
  1360x768 (0x51)   72.0MHz +HSync -VSync
h: width  1360 start 1408 end 1440 total 1520 skew0 clock   47.4KHz
v: height  768 start  771 end  781 total  790   clock   60.0Hz
  1152x864 (0x52)   81.6MHz -HSync +VSync
h: width  1152 start 1216 end 1336 total 1520 skew0 clock   53.7KHz
v: height  864 start  865 end  868 total  895   clock   60.0Hz
  1024x768 (0x53)   65.0MHz -HSync -VSync
h: width  1024 start 1048 end 1184 total 1344 skew0 clock   48.4KHz
v: height  768 start  771 end  777 total  806   clock   60.0Hz
  800x600 (0x54)   40.0MHz +HSync +VSync
h: width   800 start  840 end  968 total 1056 skew0 clock   37.9KHz
v: height  600 start  601 end  605 total  628   clock   60.3Hz
  800x600 (0x55)   36.0MHz +HSync +VSync
h: width   800 start  824 end  896 total 1024 skew0 clock   35.2KHz
v: height  600 start  601 end  603 total  625   clock   56.2Hz
  640x480 (0x56)   25.2MHz -HSync -VSync
h: width   640 start  656 end  752 total  800 skew0 clock   31.5KHz
v: height  480 start  490 end  492 total  525   clock   59.9Hz
VGA1 disconnected (normal left inverted right x axis y axis)
Identifier: 0x43
Timestamp:  3262720
Subpixel:   unknown
Clones:
CRTCs:  0 1 2
Transform:  1.00 0.00 0.00
0.00 1.00 

[Bug 1290611] [NEW] [Clevo W65_67SZ, Intel Haswell HDMI, Digital Out, HDMI] crackling sound and audio up a note

2014-03-10 Thread iv
Public bug reported:

installed pavucontrol to get the sound from HDMI but the result is
crackle sound and audio is up a note.

This problem exists on 13.10 and 14.04 not on 13.04. I noticed the


alsa info from 13.4 shows the soundcard: 
00:03.0 Audio device: Intel Corporation Haswell HD Audio Controller (rev 06)
00:1b.0 Audio device: Intel Corporation Lynx Point High Definition Audio 
Controller (rev 05)

while from 14.04
00:03.0 Audio device: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor 
HD Audio Controller (rev 06)
00:1b.0 Audio device: Intel Corporation 8 Series/C220 Series Chipset High 
Definition Audio Controller (rev 05)

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: alsa-base 1.0.25+dfsg-0ubuntu4
ProcVersionSignature: Ubuntu 3.13.0-16.36-generic 3.13.5
Uname: Linux 3.13.0-16-generic x86_64
ApportVersion: 2.13.3-0ubuntu1
Architecture: amd64
CurrentDesktop: Unity
Date: Mon Mar 10 23:55:20 2014
InstallationDate: Installed on 2014-03-04 (6 days ago)
InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Alpha amd64 (20140302)
PackageArchitecture: all
SourcePackage: alsa-driver
Symptom: audio
Symptom_AlsaPlaybackTest: ALSA playback test through plughw:HDMI failed
Symptom_Card: Built-in Audio - HDA Intel HDMI
Symptom_Jack: Digital Out, HDMI
Symptom_Type: Underruns, dropouts, or crackling sound
Title: [W65_67SZ, Intel Haswell HDMI, Digital Out, HDMI] Underruns, dropouts or 
crackling sound
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 12/05/2013
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 1.03.03RTO
dmi.board.asset.tag: Tag 12345
dmi.board.name: W65_67SZ
dmi.board.vendor: Notebook
dmi.board.version: Not Applicable
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 9
dmi.chassis.vendor: Notebook
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.03.03RTO:bd12/05/2013:svnNotebook:pnW65_67SZ:pvrNotApplicable:rvnNotebook:rnW65_67SZ:rvrNotApplicable:cvnNotebook:ct9:cvrN/A:
dmi.product.name: W65_67SZ
dmi.product.version: Not Applicable
dmi.sys.vendor: Notebook

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


** Tags: amd64 apport-bug trusty

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

Title:
  [Clevo W65_67SZ, Intel Haswell HDMI, Digital Out, HDMI] crackling
  sound and audio up a note

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

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


[Bug 1290611] Re: [W65_67SZ, Intel Haswell HDMI, Digital Out, HDMI] crackling sound and audio up a note

2014-03-10 Thread iv
** Summary changed:

- [W65_67SZ, Intel Haswell HDMI, Digital Out, HDMI] Underruns, dropouts or 
crackling sound
+ [W65_67SZ, Intel Haswell HDMI, Digital Out, HDMI] crackling sound and audio 
up a note

** Summary changed:

- [W65_67SZ, Intel Haswell HDMI, Digital Out, HDMI] crackling sound and audio 
up a note
+ [Clevo W65_67SZ, Intel Haswell HDMI, Digital Out, HDMI] crackling sound and 
audio up a note

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

Title:
  [Clevo W65_67SZ, Intel Haswell HDMI, Digital Out, HDMI] crackling
  sound and audio up a note

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

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


[Bug 1256655] Re: [Gazelle Professional, Intel Haswell HDMI, Digital Out, HDMI] Playback problem, built in speakers work but no audio over HDMI

2014-03-07 Thread iv
Hi Raymond

Here an update with hdmi cable connected:

Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 32767 x 32767
eDP1 connected primary 1920x1080+0+0 (0x48) normal (normal left inverted right 
x axis y axis) 345mm x 194mm
Identifier: 0x43
Timestamp:  212170
Subpixel:   unknown
Gamma:  1.0:1.0:1.0
Brightness: 1.0
Clones:
CRTC:   0
CRTCs:  0 1 2
Transform:  1.00 0.00 0.00
0.00 1.00 0.00
0.00 0.00 1.00
   filter: 
EDID: 
000030e42303
00160104952313780a25b5a159599d27
1c50540001010101010101010101
010101010101e83580a8703816402024
550059c21018
00fe004c
4720446973706c61790a202000fe
004c503135365746342d535042310069
BACKLIGHT: 100 
range: (0, 100)
Backlight: 100 
range: (0, 100)
scaling mode: Full aspect 
supported: None, Full, Center, Full aspect
Broadcast RGB: Automatic 
supported: Automatic, Full, Limited 16:235
audio: auto 
supported: force-dvi, off, auto, on
  1920x1080 (0x48)  138.0MHz -HSync -VSync *current +preferred
h: width  1920 start 1952 end 1988 total 2088 skew0 clock   66.1KHz
v: height 1080 start 1085 end 1090 total 1102   clock   60.0Hz
  1920x1080 (0xab)  138.5MHz +HSync -VSync
h: width  1920 start 1968 end 2000 total 2080 skew0 clock   66.6KHz
v: height 1080 start 1083 end 1088 total    clock   59.9Hz
  1680x1050 (0xac)  146.2MHz -HSync +VSync
h: width  1680 start 1784 end 1960 total 2240 skew0 clock   65.3KHz
v: height 1050 start 1053 end 1059 total 1089   clock   60.0Hz
  1680x1050 (0xad)  119.0MHz +HSync -VSync
h: width  1680 start 1728 end 1760 total 1840 skew0 clock   64.7KHz
v: height 1050 start 1053 end 1059 total 1080   clock   59.9Hz
  1600x1024 (0xae)  103.1MHz +HSync +VSync
h: width  1600 start 1600 end 1656 total 1664 skew0 clock   62.0KHz
v: height 1024 start 1024 end 1029 total 1030   clock   60.2Hz
  1400x1050 (0xaf)  122.0MHz +HSync +VSync
h: width  1400 start 1488 end 1640 total 1880 skew0 clock   64.9KHz
v: height 1050 start 1052 end 1064 total 1082   clock   60.0Hz
  1280x1024 (0xb0)  108.0MHz +HSync +VSync
h: width  1280 start 1328 end 1440 total 1688 skew0 clock   64.0KHz
v: height 1024 start 1025 end 1028 total 1066   clock   60.0Hz
  1440x900 (0xb1)  106.5MHz -HSync +VSync
h: width  1440 start 1520 end 1672 total 1904 skew0 clock   55.9KHz
v: height  900 start  903 end  909 total  934   clock   59.9Hz
  1280x960 (0xb2)  108.0MHz +HSync +VSync
h: width  1280 start 1376 end 1488 total 1800 skew0 clock   60.0KHz
v: height  960 start  961 end  964 total 1000   clock   60.0Hz
  1360x768 (0xb3)   84.8MHz -HSync +VSync
h: width  1360 start 1432 end 1568 total 1776 skew0 clock   47.7KHz
v: height  768 start  771 end  781 total  798   clock   59.8Hz
  1360x768 (0xb4)   72.0MHz +HSync -VSync
h: width  1360 start 1408 end 1440 total 1520 skew0 clock   47.4KHz
v: height  768 start  771 end  781 total  790   clock   60.0Hz
  1152x864 (0xb5)   81.6MHz -HSync +VSync
h: width  1152 start 1216 end 1336 total 1520 skew0 clock   53.7KHz
v: height  864 start  865 end  868 total  895   clock   60.0Hz
  1024x768 (0xb6)   65.0MHz -HSync -VSync
h: width  1024 start 1048 end 1184 total 1344 skew0 clock   48.4KHz
v: height  768 start  771 end  777 total  806   clock   60.0Hz
  800x600 (0xb7)   40.0MHz +HSync +VSync
h: width   800 start  840 end  968 total 1056 skew0 clock   37.9KHz
v: height  600 start  601 end  605 total  628   clock   60.3Hz
  800x600 (0xb8)   36.0MHz +HSync +VSync
h: width   800 start  824 end  896 total 1024 skew0 clock   35.2KHz
v: height  600 start  601 end  603 total  625   clock   56.2Hz
  640x480 (0xb9)   25.2MHz -HSync -VSync
h: width   640 start  656 end  752 total  800 skew0 clock   31.5KHz
v: height  480 start  490 end  492 total  525   clock   59.9Hz
VGA1 disconnected (normal left inverted right x axis y axis)
Identifier: 0x44
Timestamp:  212170
Subpixel:   unknown
Clones:
CRTCs:  0 1 2
Transform:  1.00 0.00 0.00
0.00 1.00 0.00
0.00 0.00 1.00
   filter: 
HDMI1 

[Bug 1256655] Re: [Gazelle Professional, Intel Haswell HDMI, Digital Out, HDMI] Playback problem, built in speakers work but no audio over HDMI

2014-03-07 Thread iv
Hi Raymond

In the logs i see this message

 [ 1889.257286] HDMI: Unknown ELD version 1

How/where should i change the audio setting from auto to  on ??

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

Title:
  [Gazelle Professional, Intel Haswell HDMI, Digital Out, HDMI] Playback
  problem, built in speakers work but no audio over HDMI

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

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


[Bug 1256655] Re: [Gazelle Professional, Intel Haswell HDMI, Digital Out, HDMI] Playback problem, built in speakers work but no audio over HDMI

2014-03-06 Thread iv
Same problem on Clevo w650sz Intel Haswell HDMI  running ubuntu 14.04
Kernel  3.13.0-15-generic. I installed pavucontrol to get the sound from
HDMI but the result is crackle soud and audio up a note and play faster!

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

Title:
  [Gazelle Professional, Intel Haswell HDMI, Digital Out, HDMI] Playback
  problem, built in speakers work but no audio over HDMI

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

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


[Bug 1256655] Re: [Gazelle Professional, Intel Haswell HDMI, Digital Out, HDMI] Playback problem, built in speakers work but no audio over HDMI

2014-03-06 Thread iv
Hi Raymond

here the details:

xrandr --verbose
Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 32767 x 32767
eDP1 connected primary 1920x1080+0+0 (0x48) normal (normal left inverted right 
x axis y axis) 345mm x 194mm
Identifier: 0x43
Timestamp:  23518
Subpixel:   unknown
Gamma:  1.0:1.0:1.0
Brightness: 1.0
Clones:
CRTC:   0
CRTCs:  0 1 2
Transform:  1.00 0.00 0.00
0.00 1.00 0.00
0.00 0.00 1.00
   filter: 
EDID: 
000030e42303
00160104952313780a25b5a159599d27
1c50540001010101010101010101
010101010101e83580a8703816402024
550059c21018
00fe004c
4720446973706c61790a202000fe
004c503135365746342d535042310069
BACKLIGHT: 16 
range: (0, 100)
Backlight: 16 
range: (0, 100)
scaling mode: Full aspect 
supported: None, Full, Center, Full aspect
Broadcast RGB: Automatic 
supported: Automatic, Full, Limited 16:235
audio: auto 
supported: force-dvi, off, auto, on
  1920x1080 (0x48)  138.0MHz -HSync -VSync *current +preferred
h: width  1920 start 1952 end 1988 total 2088 skew0 clock   66.1KHz
v: height 1080 start 1085 end 1090 total 1102   clock   60.0Hz
  1920x1080 (0xab)  138.5MHz +HSync -VSync
h: width  1920 start 1968 end 2000 total 2080 skew0 clock   66.6KHz
v: height 1080 start 1083 end 1088 total    clock   59.9Hz
  1680x1050 (0xac)  146.2MHz -HSync +VSync
h: width  1680 start 1784 end 1960 total 2240 skew0 clock   65.3KHz
v: height 1050 start 1053 end 1059 total 1089   clock   60.0Hz
  1680x1050 (0xad)  119.0MHz +HSync -VSync
h: width  1680 start 1728 end 1760 total 1840 skew0 clock   64.7KHz
v: height 1050 start 1053 end 1059 total 1080   clock   59.9Hz
  1600x1024 (0xae)  103.1MHz +HSync +VSync
h: width  1600 start 1600 end 1656 total 1664 skew0 clock   62.0KHz
v: height 1024 start 1024 end 1029 total 1030   clock   60.2Hz
  1400x1050 (0xaf)  122.0MHz +HSync +VSync
h: width  1400 start 1488 end 1640 total 1880 skew0 clock   64.9KHz
v: height 1050 start 1052 end 1064 total 1082   clock   60.0Hz
  1280x1024 (0xb0)  108.0MHz +HSync +VSync
h: width  1280 start 1328 end 1440 total 1688 skew0 clock   64.0KHz
v: height 1024 start 1025 end 1028 total 1066   clock   60.0Hz
  1440x900 (0xb1)  106.5MHz -HSync +VSync
h: width  1440 start 1520 end 1672 total 1904 skew0 clock   55.9KHz
v: height  900 start  903 end  909 total  934   clock   59.9Hz
  1280x960 (0xb2)  108.0MHz +HSync +VSync
h: width  1280 start 1376 end 1488 total 1800 skew0 clock   60.0KHz
v: height  960 start  961 end  964 total 1000   clock   60.0Hz
  1360x768 (0xb3)   84.8MHz -HSync +VSync
h: width  1360 start 1432 end 1568 total 1776 skew0 clock   47.7KHz
v: height  768 start  771 end  781 total  798   clock   59.8Hz
  1360x768 (0xb4)   72.0MHz +HSync -VSync
h: width  1360 start 1408 end 1440 total 1520 skew0 clock   47.4KHz
v: height  768 start  771 end  781 total  790   clock   60.0Hz
  1152x864 (0xb5)   81.6MHz -HSync +VSync
h: width  1152 start 1216 end 1336 total 1520 skew0 clock   53.7KHz
v: height  864 start  865 end  868 total  895   clock   60.0Hz
  1024x768 (0xb6)   65.0MHz -HSync -VSync
h: width  1024 start 1048 end 1184 total 1344 skew0 clock   48.4KHz
v: height  768 start  771 end  777 total  806   clock   60.0Hz
  800x600 (0xb7)   40.0MHz +HSync +VSync
h: width   800 start  840 end  968 total 1056 skew0 clock   37.9KHz
v: height  600 start  601 end  605 total  628   clock   60.3Hz
  800x600 (0xb8)   36.0MHz +HSync +VSync
h: width   800 start  824 end  896 total 1024 skew0 clock   35.2KHz
v: height  600 start  601 end  603 total  625   clock   56.2Hz
  640x480 (0xb9)   25.2MHz -HSync -VSync
h: width   640 start  656 end  752 total  800 skew0 clock   31.5KHz
v: height  480 start  490 end  492 total  525   clock   59.9Hz
VGA1 disconnected (normal left inverted right x axis y axis)
Identifier: 0x44
Timestamp:  23518
Subpixel:   unknown
Clones:
CRTCs:  0 1 2
Transform:  1.00 0.00 0.00
0.00 1.00 0.00
0.00 0.00 1.00
   filter: 
HDMI1 disconnected 

[Bug 1252993] [NEW] installing saucy kernel on ubuntu 12.04 nvidia-319 failed to build the module via dkms

2013-11-19 Thread Niki Iv
Public bug reported:

After invoking sudo apt-get install --install-recommends --install-suggests 
linux-generic-lts-saucy the update procedure failed to build nvidia-319 module
The error was 
DKMS make.log for nvidia-319-updates-319.32 for kernel 3.11.0-13-generic 
(x86_64)
Wed Nov 20 09:42:32 EET 2013
NVIDIA: calling KBUILD...
test -e include/generated/autoconf.h -a -e include/config/auto.conf || (
\
echo 2;   \
echo 2   ERROR: Kernel configuration is invalid.;   \
echo 2  include/generated/autoconf.h or 
include/config/auto.conf are missing.;\
echo 2  Run 'make oldconfig  make prepare' on kernel src 
to fix it.;  \
echo 2 ;  \
/bin/false)
mkdir -p /var/lib/dkms/nvidia-319-updates/319.32/build/.tmp_versions ; rm -f 
/var/lib/dkms/nvidia-319-updates/319.32/build/.tmp_versions/*
make -f scripts/Makefile.build obj=/var/lib/dkms/nvidia-319-updates/319.32/build

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: nvidia-319-updates 319.32-0ubuntu0.0.1
ProcVersionSignature: Ubuntu 3.8.0-33.48~precise1-generic 3.8.13.11
Uname: Linux 3.8.0-33-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.0.1-0ubuntu17.6
Architecture: amd64
DKMSKernelVersion: 3.11.0-13-generic
Date: Wed Nov 20 09:41:44 2013
InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
MarkForUpload: True
PackageVersion: 319.32-0ubuntu0.0.1
SourcePackage: nvidia-graphics-drivers-319-updates
Title: nvidia-319-updates 319.32-0ubuntu0.0.1: nvidia-319-updates kernel module 
failed to build
UpgradeStatus: Upgraded to precise on 2012-05-02 (566 days ago)

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


** Tags: amd64 apport-package precise

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

Title:
  installing saucy kernel on ubuntu 12.04 nvidia-319 failed to build the
  module via dkms

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

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


[Bug 1216366] Re: /dev/lcd* device name is not predictable between boots

2013-11-17 Thread Niki Iv
I am experiencing the exact same problem
Kernel is 3.8.0-33-generic from Ubuntu 12.04.04

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

Title:
  /dev/lcd* device name is not predictable between boots

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

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


[Bug 1157643] Re: procps fail to start

2013-10-23 Thread William L. DeRieux IV
francois1: 
note that the workaround does not fix the problem of procps failing to start 
via upstart,etc
It only allows the dpgk process to complete the install/upgrade process with 
out 'hoseing' the system.
if you rename procps.conf.old back to procps.conf it will still fail.

2nd workaround:
 I downloaded (procps  libprocps0) [1:3.3.3-2ubuntu7] from
 http://packages.ubuntu.com/saucy/procps
 http://packages.ubuntu.com/saucy/libprocps0
 and manually installed the updated version
** this correct the underlying problem, and you can rename procps.conf.old 
propps.conf

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

Title:
  procps fail to start

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

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


[Bug 1239158] Re: package procps 1:3.2.8-11ubuntu6.1 failed to install/upgrade: le sous-processus script post-installation installé a retourné une erreur de sortie d'état 1

2013-10-19 Thread William L. DeRieux IV
*** This bug is a duplicate of bug 1157643 ***
https://bugs.launchpad.net/bugs/1157643

A work around:
  sudo mv /etc/init/procps.conf /etc/init/procps.conf.old
procps  1:3.2.8-11ubuntu6.2 .. after renaming procps.conf the install finished 
without error

Now, I realize this is still a bug (but at least it can be worked-
around)

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

Title:
  package procps 1:3.2.8-11ubuntu6.1 failed to install/upgrade: le sous-
  processus script post-installation installé a retourné une erreur de
  sortie d'état 1

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

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

[Bug 1239158] Re: package procps 1:3.2.8-11ubuntu6.1 failed to install/upgrade: le sous-processus script post-installation installé a retourné une erreur de sortie d'état 1

2013-10-19 Thread William L. DeRieux IV
*** This bug is a duplicate of bug 1157643 ***
https://bugs.launchpad.net/bugs/1157643

I did not pay enough attention: (ie a duplicate of 
https://bugs.launchpad.net/ubuntu/+source/procps/+bug/1157643)
It was fixed in:  1:3.3.3-2ubuntu8 (saucy)
* however I am on: Ubuntu 12.04.3 LTS (Precise) ... and did not wish to upgrade 
by distribution to saucy
Will post in the other bug page

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

Title:
  package procps 1:3.2.8-11ubuntu6.1 failed to install/upgrade: le sous-
  processus script post-installation installé a retourné une erreur de
  sortie d'état 1

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

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

[Bug 1157643] Re: procps fail to start

2013-10-19 Thread William L. DeRieux IV
A work around: (on  Ubuntu 12.04.3 LTS (Precise))

 sudo mv /etc/init/procps.conf /etc/init/procps.conf.old
procps 1:3.2.8-11ubuntu6.2 .. after renaming procps.conf the install finished 
without error

I realize this was reported fixed in: 1:3.3.3-2ubuntu8 (saucy)
But I don't want to upgrade (right now)

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

Title:
  procps fail to start

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

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


[Bug 1023380] [NEW] aMule won't start minimized (most of the times)

2012-07-11 Thread Frederick IV Barbarossa
Public bug reported:

In a Xubuntu 12.04 desktop, and using aMule version 2.3.1, although I
have the Start minimized option selected (and after having confirmed
that it is indeed selected, as it shows an =1 option in the amule.conf
file), most of the times it won't start minimized, opening an aMule
window instead, that I have to close manually.

** Affects: amule (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/1023380

Title:
  aMule won't start minimized (most of the times)

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

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


[Bug 754618] Re: Failed to open encrypted home directory

2012-07-11 Thread Frederick IV Barbarossa
I have the same bug. (Using encrypted home directories, and a separate root 
partition, with Thunar 1.2.3 in Xubuntu 12.04.)
Once it happens in one account, all the other accounts in the same computer 
start having the same problem.
The problem is rather frequent. And it's quite annoying, having to always 
reboot the computer in order to solve it...

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

Title:
  Failed to open encrypted home directory

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

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


[Bug 993938] [NEW] package zentyal-core 2.3.4 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 8

2012-05-03 Thread James E Mangrum IV
Public bug reported:

10.04 Upgrade to 12.04

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: zentyal-core 2.3.4
ProcVersionSignature: Ubuntu 3.2.0-24.37-generic 3.2.14
Uname: Linux 3.2.0-24-generic i686
ApportVersion: 2.0.1-0ubuntu7
Architecture: i386
Date: Thu May  3 06:45:46 2012
ErrorMessage: ErrorMessage: subprocess installed post-installation script 
returned error exit status 8
PackageArchitecture: all
SourcePackage: zentyal-core
Title: package zentyal-core 2.3.4 failed to install/upgrade: ErrorMessage: 
subprocess installed post-installation script returned error exit status 8
UpgradeStatus: Upgraded to precise on 2012-05-03 (0 days ago)

** Affects: zentyal-core (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 precise

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

Title:
  package zentyal-core 2.3.4 failed to install/upgrade: ErrorMessage:
  subprocess installed post-installation script returned error exit
  status 8

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

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


[Bug 993938] Re: package zentyal-core 2.3.4 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 8

2012-05-03 Thread James E Mangrum IV
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/993938

Title:
  package zentyal-core 2.3.4 failed to install/upgrade: ErrorMessage:
  subprocess installed post-installation script returned error exit
  status 8

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

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


[Bug 587498] Re: [eeepc 1005ha] wifi device not ready in nm-applet

2011-11-09 Thread Iv
I also have this problem. Is anyone working on this? Is this the same as
Bug #854712 ?

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

Title:
  [eeepc 1005ha] wifi device not ready in nm-applet

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

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


[Bug 854712] Re: Wireless device not ready network manager eeepc

2011-11-09 Thread Iv
I also have this problem. Is anyone working on this? Is this the same as
Bug #587498?

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

Title:
  Wireless device not ready network manager eeepc

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

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


[Bug 306425] Re: [needs-packaging] KonsolScript interpreter (quixie)

2011-08-26 Thread Mj Mendoza IV
** Description changed:

  Package request for Quixie.
  
  Quixie is an interpreter for KonsolScript, a game scripting language,
  suitable for teaching 2D game programming.
  
- Source code is available through CVS 
http://konsolscript.cvs.sourceforge.net/konsolscript/quixie
+ Source code is available through SVN  
https://konsolscript.svn.sourceforge.net/svnroot/konsolscript/quixie
  There's a DEB file available from 
http://sourceforge.net/project/platformdownload.php?group_id=164830sel_platform=5776
  
- URL: http://konsolscript.sourceforge.net | https://edge.launchpad.net/quixie
+ URL: http://www.konsolscript.org | https://edge.launchpad.net/quixie
  License: GPL

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

Title:
  [needs-packaging] KonsolScript interpreter (quixie)

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

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


[Bug 758585] [NEW] thinkpad_acpi: WARNING: sysfs attribute hotkey_enable is deprecated and will be removed. Hotkey reporting is always enabled

2011-04-12 Thread Charles P. Collins IV
Public bug reported:

After updating to the latest Ubuntu 11.04 beta release at 0900 GMT with
kernel 2.6.38-8-generic I got a serious kernel warning / stability
message.

This message occurred every time I ran the Ubuntu System Test
application. I am running this on a Lenovo X120e with AMD e-350

I have not tried the upstream / mainline kernel (will research how to
test that)

ProblemType: KernelOops
DistroRelease: Ubuntu 11.04
Package: linux-image-2.6.38-8-generic 2.6.38-8.42
Regression: Yes
Reproducible: Yes
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic x86_64
NonfreeKernelModules: fglrx
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
Annotation: Your system might become unstable now and might need to be 
restarted.
Architecture: amd64
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 1: SB [HDA ATI SB], device 0: CONEXANT Analog [CONEXANT Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  scott  1746 F pulseaudio
CRDA: Error: [Errno 2] No such file or directory
Card0.Amixer.info:
 Card hw:0 'Generic'/'HD-Audio Generic at 0xf0244000 irq 44'
   Mixer name   : 'ATI R6xx HDMI'
   Components   : 'HDA:1002aa01,00aa0100,00100200'
   Controls  : 4
   Simple ctrls  : 1
Card0.Amixer.values:
 Simple mixer control 'IEC958',0
   Capabilities: pswitch pswitch-joined penum
   Playback channels: Mono
   Mono: Playback [on]
Card1.Amixer.info:
 Card hw:1 'SB'/'HDA ATI SB at 0xf024 irq 16'
   Mixer name   : 'Conexant CX20582 (Pebble)'
   Components   : 'HDA:14f15066,17aa21df,00100302'
   Controls  : 8
   Simple ctrls  : 5
Card29.Amixer.info:
 Card hw:29 'ThinkPadEC'/'ThinkPad Console Audio Control at EC reg 0x30, fw 
unknown'
   Mixer name   : 'ThinkPad EC (unknown)'
   Components   : ''
   Controls  : 1
   Simple ctrls  : 1
Card29.Amixer.values:
 Simple mixer control 'Console',0
   Capabilities: pswitch pswitch-joined penum
   Playback channels: Mono
   Mono: Playback [on]
Date: Tue Apr 12 18:04:32 2011
Failure: oops
HibernationDevice: RESUME=UUID=f0b767a5-09fb-4c3e-92fe-c35ea0b70d5c
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Alpha amd64 (20110329.1)
MachineType: LENOVO 0596CTO
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.38-8-generic 
root=UUID=4ec50129-c5fb-4b89-a7f7-a0e40975bba2 ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-2.6.38-8-generic N/A
 linux-backports-modules-2.6.38-8-generic  N/A
 linux-firmware1.50
RfKill:
 0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
SourcePackage: linux
Title: thinkpad_acpi: WARNING: sysfs attribute hotkey_enable is deprecated and 
will be removed. Hotkey reporting is always enabled
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 03/09/2011
dmi.bios.vendor: LENOVO
dmi.bios.version: 8FET26WW (1.10 )
dmi.board.asset.tag: Not Available
dmi.board.name: 0596CTO
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvr8FET26WW(1.10):bd03/09/2011:svnLENOVO:pn0596CTO:pvrThinkPadX120e:rvnLENOVO:rn0596CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 0596CTO
dmi.product.version: ThinkPad X120e
dmi.sys.vendor: LENOVO

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


** Tags: amd64 apport-kerneloops kernel-config kernel-oops natty 
needs-upstream-testing regression-release

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

Title:
  thinkpad_acpi: WARNING: sysfs attribute hotkey_enable is deprecated
  and will be removed. Hotkey reporting is always enabled

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


[Bug 758585] Re: thinkpad_acpi: WARNING: sysfs attribute hotkey_enable is deprecated and will be removed. Hotkey reporting is always enabled

2011-04-12 Thread Charles P. Collins IV
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/758585

Title:
  thinkpad_acpi: WARNING: sysfs attribute hotkey_enable is deprecated
  and will be removed. Hotkey reporting is always enabled

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


[Bug 753054] Re: compiz crashed with SIGSEGV in free()

2011-04-06 Thread Charles P. Collins IV
Same for me, alt-tabbing was slow, then crashed, then works, but is
always slow.

I was switching between nautilus and firefox.

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

Title:
  compiz crashed with SIGSEGV in free()

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


[Bug 746630] Re: fglrx 2:8.840-0ubuntu1 breaks unity

2011-04-06 Thread Charles P. Collins IV
Thank you Alex. It seems like this has been fixed.

I still experience lag and crashes when switching between applications
via alt-tab and lag when activating unity via the super key.

I'm happy to help test any AMD e-350 issues, please email me if any
testing is needed. I'm on GMT +9.

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

Title:
  fglrx 2:8.840-0ubuntu1 breaks unity

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


[Bug 746630] [NEW] fglrx 2:8.840-0ubuntu1 breaks unity

2011-03-31 Thread Charles P. Collins IV
Public bug reported:

Binary package hint: unity

Unity worked on a Lenovo x120e with an AMD Zacate e-350 cpu/gpu/apu
after installing the daily of 11.04 x64 on 2011/03/30

After installing fglrx 2:8.840-0ubuntu1 through the software center and
rebooting, the panels reverted to the normal gnome panels with panels at
the top and bottom, unity stopped working.

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

Title:
  fglrx 2:8.840-0ubuntu1 breaks unity

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


[Bug 746630] Re: fglrx 2:8.840-0ubuntu1 breaks unity

2011-03-31 Thread Charles P. Collins IV
I do not know if
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/740298 will fix
this.

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

Title:
  fglrx 2:8.840-0ubuntu1 breaks unity

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


[Bug 667881] [NEW] package wine1.2 (not installed) failed to install/upgrade: trying to overwrite '/usr/bin/wine-preloader', which is also in package wine 0:1.2~winehq0~ubuntu~8.04-0ubuntu1

2010-10-28 Thread James E Mangrum IV
Public bug reported:

Binary package hint: wine1.2

When perform package upgrade, installed crashed.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: wine1.2 (not installed)
ProcVersionSignature: Ubuntu 2.6.32-25.45-generic 2.6.32.21+drm33.7
Uname: Linux 2.6.32-25-generic i686
Architecture: i386
Date: Thu Oct 28 10:29:08 2010
ErrorMessage: trying to overwrite '/usr/bin/wine-preloader', which is also in 
package wine 0:1.2~winehq0~ubuntu~8.04-0ubuntu1
SourcePackage: wine1.2
Title: package wine1.2 (not installed) failed to install/upgrade: trying to 
overwrite '/usr/bin/wine-preloader', which is also in package wine 
0:1.2~winehq0~ubuntu~8.04-0ubuntu1

** Affects: wine1.2 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

-- 
package wine1.2 (not installed) failed to install/upgrade: trying to overwrite 
'/usr/bin/wine-preloader', which is also in package wine 
0:1.2~winehq0~ubuntu~8.04-0ubuntu1
https://bugs.launchpad.net/bugs/667881
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 667881] Re: package wine1.2 (not installed) failed to install/upgrade: trying to overwrite '/usr/bin/wine-preloader', which is also in package wine 0:1.2~winehq0~ubuntu~8.04-0ubuntu1

2010-10-28 Thread James E Mangrum IV


-- 
package wine1.2 (not installed) failed to install/upgrade: trying to overwrite 
'/usr/bin/wine-preloader', which is also in package wine 
0:1.2~winehq0~ubuntu~8.04-0ubuntu1
https://bugs.launchpad.net/bugs/667881
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 572918] Re: Can't launch untrusted app-launchers (.desktop) in GNOME

2010-08-25 Thread John H Ring IV
i am new to linux and i need help i have follow what you guys have said
and nothing happens can anyone help me?

-- 
Can't launch untrusted app-launchers (.desktop) in GNOME
https://bugs.launchpad.net/bugs/572918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 572918] Re: Can't launch untrusted app-launchers (.desktop) in GNOME

2010-08-25 Thread John H Ring IV
i have been loving Ubuntu but this is ridiculous I'm not great at
computers but I am above average and I cant even launch a program I hate
to say this but if i can figure this out I'm going back to windows

-- 
Can't launch untrusted app-launchers (.desktop) in GNOME
https://bugs.launchpad.net/bugs/572918
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 496681] Re: Rhythmbox does not save playlist on iPod

2010-08-09 Thread Charles P. Collins IV
This is still broken in Rhythmbox 0.13.

There is a new Sync feature, which allows you to select Rhythmbox
playlists and sync them with the ipod, but it does not work. One  time
it worked with one playlist, in subsequent attempts it corrupted the
ipod and it needed to be restored using itunes.

Aside from the sync feature, there is still not a way to right click on
the ipod, create a new playlist, and then copy songs into the playlist.

-- 
Rhythmbox does not save playlist on iPod
https://bugs.launchpad.net/bugs/496681
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 117925] Re: cannot create playlist on ipod

2010-08-03 Thread Charles P. Collins IV
Another strange thing is that songs that were already on the ipod (from
iTunes on Windows) can be added to a playlist. New songs transferred via
Rhythmbox will not write to any playlists on the ipod.

-- 
cannot create playlist on ipod
https://bugs.launchpad.net/bugs/117925
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 299956] Re: Iso's don't mount correctly through 'archive mounter'

2010-07-26 Thread Charles P. Collins IV
Confirmed. Still broken.

Someone needs to attach a small iso to reproduce this error.

-- 
Iso's don't mount correctly through 'archive mounter' 
https://bugs.launchpad.net/bugs/299956
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 288797] Re: [Intrepid] Synaptic unusable - Can not find packages

2010-06-20 Thread shelton william dotson iv
** This bug has been flagged as a security vulnerability

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

** Changed in: synaptic (Ubuntu Jaunty)
   Status: Fix Released = Incomplete

** Changed in: synaptic (Ubuntu Jaunty)
   Status: Incomplete = Confirmed

** Changed in: synaptic (Ubuntu)
 Assignee: Michael Vogt (mvo) = shelton william dotson iv (sheltondotso)

-- 
[Intrepid] Synaptic unusable - Can not find packages
https://bugs.launchpad.net/bugs/288797
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 218156] Re: No Entry in Applications Menu

2010-05-29 Thread Iv
This bug is still- or perhaps again - evident in Lucid. When I figured
out the workaround, I found miro checked, but it wasn't showing anyway.
I unchecked and then re-checked it, and it popped up in the menu.

-- 
No Entry in Applications Menu
https://bugs.launchpad.net/bugs/218156
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 577727] Re: Ubuntu 10.04 sound lag with enemy territory quake wars

2010-05-16 Thread Charles P. Collins IV
I am experiencing this same problem. ETQW+ 10.04 x86_64

-- 
Ubuntu 10.04 sound lag with enemy territory quake wars
https://bugs.launchpad.net/bugs/577727
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 560571] [NEW] BUG: using smp_processor_id() in preemptible [00000000] code: Xorg/1157

2010-04-11 Thread mm-iv
Public bug reported:

Sorry, I do not know.

ProblemType: KernelOops
DistroRelease: Ubuntu 10.04
Package: linux-image-2.6.32-19-preempt 2.6.32-19.28
Regression: No
Reproducible: No
ProcVersionSignature: Ubuntu 2.6.32-19.28-preempt 2.6.32.10+drm33.1
Uname: Linux 2.6.32-19-preempt x86_64
NonfreeKernelModules: fglrx
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
Annotation: Your system might become unstable now and might need to be 
restarted.
Architecture: amd64
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: Intel [HDA Intel], device 0: STAC92xx Analog [STAC92xx Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  iv 1294 F pulseaudio
 /dev/snd/pcmC0D0p:   iv 1294 F...m pulseaudio
CRDA: Error: [Errno 2] No such file or directory
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xfc50 irq 22'
   Mixer name   : 'IDT 92HD73C1X5'
   Components   : 'HDA:111d7675,1028029f,00100103'
   Controls  : 16
   Simple ctrls  : 10
Card1.Amixer.info:
 Card hw:1 'HDMI'/'HDA ATI HDMI at 0xfc01 irq 17'
   Mixer name   : 'ATI R6xx HDMI'
   Components   : 'HDA:1002aa01,00aa0100,0010'
   Controls  : 4
   Simple ctrls  : 1
Card1.Amixer.values:
 Simple mixer control 'IEC958',0
   Capabilities: pswitch pswitch-joined penum
   Playback channels: Mono
   Mono: Playback [on]
Date: Fri Apr  9 22:14:26 2010
Failure: oops
Frequency: Once a day.
InstallationMedia: Ubuntu 10.04 Lucid Lynx - Beta amd64 (20100318)
MachineType: Dell Inc. Studio 1537
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-19-preempt 
root=UUID=41966431-d8b1-4025-8d7d-6ab3f465760e ro vga=771 quiet splash
RelatedPackageVersions: linux-firmware 1.33
RfKill:
 0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
SourcePackage: linux
Title: BUG: using smp_processor_id() in preemptible [] code: Xorg/1157
dmi.bios.date: 05/27/2009
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A09
dmi.board.name: 0P132H
dmi.board.vendor: Dell Inc.
dmi.board.version: A09
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.chassis.version: A09
dmi.modalias: 
dmi:bvnDellInc.:bvrA09:bd05/27/2009:svnDellInc.:pnStudio1537:pvrA09:rvnDellInc.:rn0P132H:rvrA09:cvnDellInc.:ct8:cvrA09:
dmi.product.name: Studio 1537
dmi.product.version: A09
dmi.sys.vendor: Dell Inc.

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


** Tags: amd64 apport-kerneloops kernel-oops lucid needs-upstream-testing

-- 
BUG: using smp_processor_id() in preemptible [] code: Xorg/1157
https://bugs.launchpad.net/bugs/560571
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 560571] Re: BUG: using smp_processor_id() in preemptible [00000000] code: Xorg/1157

2010-04-11 Thread mm-iv

** Attachment added: AlsaDevices.txt
   http://launchpadlibrarian.net/43764342/AlsaDevices.txt

** Attachment added: AplayDevices.txt
   http://launchpadlibrarian.net/43764343/AplayDevices.txt

** Attachment added: BootDmesg.txt
   http://launchpadlibrarian.net/43764344/BootDmesg.txt

** Attachment added: Card0.Amixer.values.txt
   http://launchpadlibrarian.net/43764345/Card0.Amixer.values.txt

** Attachment added: Card0.Codecs.codec.0.txt
   http://launchpadlibrarian.net/43764346/Card0.Codecs.codec.0.txt

** Attachment added: Card1.Codecs.codec.0.txt
   http://launchpadlibrarian.net/43764347/Card1.Codecs.codec.0.txt

** Attachment added: CurrentDmesg.txt
   http://launchpadlibrarian.net/43764348/CurrentDmesg.txt

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

** Attachment added: IwConfig.txt
   http://launchpadlibrarian.net/43764350/IwConfig.txt

** Attachment added: Lspci.txt
   http://launchpadlibrarian.net/43764351/Lspci.txt

** Attachment added: Lsusb.txt
   http://launchpadlibrarian.net/43764352/Lsusb.txt

** Attachment added: OopsText.txt
   http://launchpadlibrarian.net/43764353/OopsText.txt

** Attachment added: PciMultimedia.txt
   http://launchpadlibrarian.net/43764354/PciMultimedia.txt

** Attachment added: ProcCpuinfo.txt
   http://launchpadlibrarian.net/43764355/ProcCpuinfo.txt

** Attachment added: ProcInterrupts.txt
   http://launchpadlibrarian.net/43764356/ProcInterrupts.txt

** Attachment added: ProcModules.txt
   http://launchpadlibrarian.net/43764357/ProcModules.txt

** Attachment added: UdevDb.txt
   http://launchpadlibrarian.net/43764358/UdevDb.txt

** Attachment added: UdevLog.txt
   http://launchpadlibrarian.net/43764359/UdevLog.txt

** Attachment added: WifiSyslog.txt
   http://launchpadlibrarian.net/43764360/WifiSyslog.txt

-- 
BUG: using smp_processor_id() in preemptible [] code: Xorg/1157
https://bugs.launchpad.net/bugs/560571
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 494671] [NEW] no sound with my laptop, with external sound system or not...

2009-12-09 Thread Rolf IV
Public bug reported:

Description:Ubuntu 9.10
Release:9.10

Since I've upgraded to Karmic, no sound at all on my laptop, whether
with external sound system or not...

ProblemType: Bug
AlsaDevices:
 total 0
 drwxr-xr-x 2 root root 60 2009-12-09 19:58 by-path
AplayDevices: aplay: device_list:223: no soundcards found...
Architecture: i386
ArecordDevices: arecord: device_list:223: no soundcards found...
AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/dsp', 
'/dev/snd/by-path', '/dev/sequencer2', '/dev/sequencer', '/dev/seq'] failed 
with exit code 1:
CheckboxSubmission: 241e3165cc0bc5ede85eab6f67ee7fd9
CheckboxSystem: d00f84de8a555815fa1c4660280da308
Date: Wed Dec  9 20:05:04 2009
DistroRelease: Ubuntu 9.10
NonfreeKernelModules: nvidia wl
Package: alsa-base 1.0.20+dfsg-1ubuntu5
PackageArchitecture: all
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.28-15.52-generic
SourcePackage: alsa-driver
Uname: Linux 2.6.28-15-generic i686
XsessionErrors:
 (gnome-settings-daemon:2250): GLib-CRITICAL **: g_propagate_error: assertion 
`src != NULL' failed
 (gnome-settings-daemon:2250): GLib-CRITICAL **: g_propagate_error: assertion 
`src != NULL' failed
 (nautilus:2337): Eel-CRITICAL **: eel_preferences_get_boolean: assertion 
`preferences_is_initialized ()' failed
 (polkit-gnome-authentication-agent-1:2361): GLib-CRITICAL **: 
g_once_init_leave: assertion `initialization_value != 0' failed
 (nautilus:2462): Eel-CRITICAL **: eel_preferences_get_boolean: assertion 
`preferences_is_initialized ()' failed

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


** Tags: apport-bug i386

-- 
no sound with my laptop, with external sound system or not...
https://bugs.launchpad.net/bugs/494671
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 494671] Re: no sound with my laptop, with external sound system or not...

2009-12-09 Thread Rolf IV

** Attachment added: BootDmesg.txt
   http://launchpadlibrarian.net/36634911/BootDmesg.txt

** Attachment added: Card0.Amixer.info.txt
   http://launchpadlibrarian.net/36634912/Card0.Amixer.info.txt

** Attachment added: Card0.Amixer.values.txt
   http://launchpadlibrarian.net/36634913/Card0.Amixer.values.txt

** Attachment added: Card0.Codecs.codec.2.txt
   http://launchpadlibrarian.net/36634914/Card0.Codecs.codec.2.txt

** Attachment added: CurrentDmesg.txt
   http://launchpadlibrarian.net/36634915/CurrentDmesg.txt

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

** Attachment added: PciMultimedia.txt
   http://launchpadlibrarian.net/36634917/PciMultimedia.txt

-- 
no sound with my laptop, with external sound system or not...
https://bugs.launchpad.net/bugs/494671
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 411084] Re: Can't put values bigger than 13h49m in Alarm plugin in Audacious

2009-10-31 Thread Frederick IV Barbarossa
I've just upgraded Ubuntu to version 9.10 and Audacious does not have this 
problem anymore. It has been solved with the most recent version of this 
program that is now included in Ubuntu.
I guess the moderator(s) of this report can mark the bug as fixed.

-- 
Can't put values bigger than 13h49m in Alarm plugin in Audacious
https://bugs.launchpad.net/bugs/411084
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 450935] [NEW] package phatch-cli (not installed) failed to install/upgrade: trying to overwrite '/usr/share/phatch/data/geek.txt', which is also in package phatch 0:0.2.1.bzr1489-0ubuntu1~9.04~pp

2009-10-13 Thread Charles P. Collins IV
Public bug reported:

Binary package hint: phatch

package phatch-cli (not installed) failed to install/upgrade: trying to
overwrite '/usr/share/phatch/data/geek.txt', which is also in package
phatch 0:0.2.1.bzr1489-0ubuntu1~9.04~ppa1

ProblemType: Package
Architecture: amd64
Date: Wed Oct 14 12:20:07 2009
DistroRelease: Ubuntu 9.10
ErrorMessage: trying to overwrite '/usr/share/phatch/data/geek.txt', which is 
also in package phatch 0:0.2.1.bzr1489-0ubuntu1~9.04~ppa1
NonfreeKernelModules: nvidia
Package: phatch-cli (not installed)
ProcVersionSignature: Ubuntu 2.6.31-11.38-generic
SourcePackage: phatch
Title: package phatch-cli (not installed) failed to install/upgrade: trying to 
overwrite '/usr/share/phatch/data/geek.txt', which is also in package phatch 
0:0.2.1.bzr1489-0ubuntu1~9.04~ppa1
Uname: Linux 2.6.31-11-generic x86_64

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


** Tags: amd64 apport-package

-- 
package phatch-cli (not installed) failed to install/upgrade: trying to 
overwrite '/usr/share/phatch/data/geek.txt', which is also in package phatch 
0:0.2.1.bzr1489-0ubuntu1~9.04~ppa1
https://bugs.launchpad.net/bugs/450935
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 450935] Re: package phatch-cli (not installed) failed to install/upgrade: trying to overwrite '/usr/share/phatch/data/geek.txt', which is also in package phatch 0:0.2.1.bzr1489-0ubuntu1~9.04~ppa1

2009-10-13 Thread Charles P. Collins IV

** Attachment added: AptOrdering.txt
   http://launchpadlibrarian.net/33636375/AptOrdering.txt

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

** Attachment added: DpkgTerminalLog.gz
   http://launchpadlibrarian.net/33636380/DpkgTerminalLog.gz

-- 
package phatch-cli (not installed) failed to install/upgrade: trying to 
overwrite '/usr/share/phatch/data/geek.txt', which is also in package phatch 
0:0.2.1.bzr1489-0ubuntu1~9.04~ppa1
https://bugs.launchpad.net/bugs/450935
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 274760] Re: NetworkManager crashed with SIGSEGV in g_object_unref()

2009-10-09 Thread Frederick F. Kautz IV
Does karmic contain a debugging version of either network manager or glib?
This error seems to occur more often during alpha/betas. At full release on
9.04 the problem appeared to go away on my system.
--
Frederick F. Kautz IV


On Fri, Oct 9, 2009 at 8:29 AM, Tony Espy e...@canonical.com wrote:

 It was marked Incomplete because there weren't any updates to the bug in
 over 9 months during which many, many updates of network-manager have
 been released.  As this was reported against an old release, we wanted
 to see if this was still an issue with Karmic.

 amano, if you're getting the *same* crash as aaronjlynch with Karmic
 Beta + the latest updates, then by please run the following command:

 apport-collect 274760

 ...to add information to the bug that'll help us figure out what's going
 on.

 If you're getting a *different* crash, then please report a new bug
 using the command:

 ubuntu-bug network-manager

 Moving back to Incomplete until the requested information is supplied...


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

 --
 NetworkManager crashed with SIGSEGV in g_object_unref()
 https://bugs.launchpad.net/bugs/274760
 You received this bug notification because you are a direct subscriber
 of the bug.

 Status in “network-manager” package in Ubuntu: Incomplete

 Bug description:
 Binary package hint: network-manager

 Fresh boot, connected to wired connection.

 ProblemType: Crash
 Architecture: i386
 DistroRelease: Ubuntu 8.10
 ExecutablePath: /usr/sbin/NetworkManager
 Gconf:

 IfupdownConfig:
  auto lo
  iface lo inet loopback
 InterestingModules: b 4 4
 NonfreeKernelModules: nvidia
 Package: network-manager 0.7~~svn20080908t183521+eni0-0ubuntu4
 ProcAttrCurrent: unconfined
 ProcCmdline: /usr/sbin/NetworkManager
 ProcEnviron:
 PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
 Signal: 11
 SourcePackage: network-manager
 StacktraceTop:
  ?? () from /usr/lib/libglib-2.0.so.0
  ?? () from /usr/lib/libdbus-glib-1.so.2
  g_object_unref () from /usr/lib/libgobject-2.0.so.0
  g_slist_foreach () from /usr/lib/libglib-2.0.so.0
  ?? ()
 Title: NetworkManager crashed with SIGSEGV in g_object_unref()
 Uname: Linux 2.6.27-3-generic i686
 UserGroups:


-- 
NetworkManager crashed with SIGSEGV in g_object_unref()
https://bugs.launchpad.net/bugs/274760
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 370754] Re: Gnome Scheduler - hours minutes fields limited to max of 14 49

2009-08-09 Thread Frederick IV Barbarossa
Nope. I still have this problem in the Alarm plugin in Audacious. Can't set it 
to times later than 13h49m.
I suspect this is the same bug.
I found a patch, but it's not for the distribution or package version I'm 
using.
http://bugs.gentoo.org/272016

-- 
Gnome Scheduler - hours  minutes fields limited to max of 14  49
https://bugs.launchpad.net/bugs/370754
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 370754] Re: Gnome Scheduler - hours minutes fields limited to max of 14 49

2009-08-09 Thread Frederick IV Barbarossa
OK.
Because it is the same problem and it appeared at the same time, I thought it 
was not a problem in gnome-schedule itself, but a common one between 
gnome-schedule and audacious, and that it was being caused by some common 
library, or so, that both used.
I'll try to search better in here for my bug, and if I can't find it I'll make 
a report myself.

-- 
Gnome Scheduler - hours  minutes fields limited to max of 14  49
https://bugs.launchpad.net/bugs/370754
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 411084] [NEW] Can't put values bigger than 13h49m in Alarm plugin in Audacious

2009-08-09 Thread Frederick IV Barbarossa
Public bug reported:

Since I upgraded to Jaunty (Ubuntu 9.04), I can't set the Alarm plugin in the 
Audacious Audio Player to times bigger than 13 hours and 49 minutes.
The problem seems to be in the package audacious-plugins-extra 
1.5.1-2ubuntu3, where the Alarm plugin (version 1.5.1) is located.
I thought my problem was the same that was being reported here: 
https://bugs.launchpad.net/ubuntu/+source/gnome-schedule/+bug/370754, but it 
appears not. The new package doesn't solve it. And indeed, in my case the limit 
is 13h and not 14h.
I also seem to have found a patch for it, but it seems to be for Gentoo 64 
bits, and version 2.0.1 of the Alarm: http://bugs.gentoo.org/272016

** Affects: audacious-plugins (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Can't put values bigger than 13h49m in Alarm plugin in Audacious
https://bugs.launchpad.net/bugs/411084
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 340936] Re: Add option to override system status for each account

2009-06-17 Thread Charles P. Collins IV
This is the one crucial feature keeping from using Empathy.  It is
necessary to be able to set a different status and status message for
each account.

I.E. -

My Play account status is - I'm not here.
My Work account status is - I'm not here, call 555-555- if you need me, 
back @ 1700h

This is a critical feature for users who work remotely and have active
mobile work and social routines.

Pidgin has the capability of setting different status messages for each
account.

-- 
Add option to override system status for each account
https://bugs.launchpad.net/bugs/340936
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 385931] [NEW] Update to hal breaks wireless, need to reboot

2009-06-11 Thread Charles P. Collins IV
Public bug reported:

Binary package hint: update-manager

Whenever there are updates to hal, the wireless connection drops, and
nm-applet will not show any networks to reconnect to. There may be
commands to 'reset' wireless via the command line, but I do not know
how. I need to reboot my computer to get any of the wireless networks to
show up again.

The update manager (or hal) should either automatically 'reset' /
'reload' the wireless hardware after updates (at least show the
available networks) or prompt for reboot.

Please contact me if you need more information, or if this should be
reported to nm-applet or hal

from lspci:

03:06.0 Network controller: RaLink RT2561/RT61 802.11g PCI

ProblemType: Bug
Architecture: amd64
DistroRelease: Ubuntu 9.04
NonfreeKernelModules: fglrx
Package: update-manager 1:0.111.9
PackageArchitecture: all
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: update-manager
Uname: Linux 2.6.28-11-generic x86_64

** Affects: update-manager (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug

-- 
Update to hal breaks wireless, need to reboot
https://bugs.launchpad.net/bugs/385931
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 385931] Re: Update to hal breaks wireless, need to reboot

2009-06-11 Thread Charles P. Collins IV

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

-- 
Update to hal breaks wireless, need to reboot
https://bugs.launchpad.net/bugs/385931
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 321740] Re: Regression: Multimedia keys on LX710 stopped working

2009-06-02 Thread Charles P. Collins IV
Here it is from Jaunty amd64.

** Attachment added: udev
   http://launchpadlibrarian.net/27412304/udev

-- 
Regression: Multimedia keys on LX710 stopped working
https://bugs.launchpad.net/bugs/321740
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 278807] Re: package cmake 2.6.0-4ubuntu2 failed to install/upgrade: subprocess post-installation script returned error exit status 2

2009-05-26 Thread Frederick F. Kautz IV
I should of posted the workaround on my original post for other readers.

Install emacs, then as a separate install transaction install cmake.

e.g. 
apt-get install emacs
apt-get install cmake
OR
apt-get install cmake

DON'T apt-get install emacs cmake

A suboptimal solution is to make cmake depend on emacs. However, cmake
does not require emacs to work and emacs is a fairly large dependency.

My proposed solution is as follows:
separate cmake into two packages:
cmake (with emacs specific files removed)
emacs-cmake which depends on emacsen-common

-- 
package cmake 2.6.0-4ubuntu2 failed to install/upgrade: subprocess 
post-installation script returned error exit status 2
https://bugs.launchpad.net/bugs/278807
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 370754] Re: Gnome Scheduler - hours minutes fields limited to max of 14 49

2009-05-22 Thread Frederick IV Barbarossa
(I don't use the Gnome Scheduler, but I suspect this might be the same bug.)
I have the same problem, but in the Alarm plugin in the Audacious Audio Player.
I can't set the alarm to bigger times than 13h and 49m.
(I'm using Ubuntu 9.04.)

-- 
Gnome Scheduler - hours  minutes fields limited to max of 14  49
https://bugs.launchpad.net/bugs/370754
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 354140] Re: Installation problem with installation of digikam under Kubuntu Jaunty Beta

2009-04-15 Thread Edward Hughes IV
I also confirm this bug.  I can also confirm that using Adept will
successfully install Digikam and retain Amarok with functionality.

-- 
Installation problem with installation of digikam under Kubuntu Jaunty Beta
https://bugs.launchpad.net/bugs/354140
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 299956] Re: Iso's don't mount correctly through 'archive mounter'

2009-03-31 Thread Charles P. Collins IV
This is a terrible error. I experience this with every iso.

-- 
Iso's don't mount correctly through 'archive mounter' 
https://bugs.launchpad.net/bugs/299956
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 335948] [NEW] ffmpeg crashed with SIGSEGV

2009-02-28 Thread Mj Mendoza IV
Public bug reported:

I was trying to create an OGG from series of PNG files. It was working
well before but I have updated some libraries and not it's now. I think
it's related to the updated libc for intrepid. Below is the output.

ffmpeg -i tmp%03d.png test.ogg
FFmpeg version r11872+debian_3:0.svn20080206-12ubuntu3, Copyright (c) 2000-2008 
Fabrice Bellard, et al.
  configuration: --enable-gpl --enable-pp --enable-swscaler --enable-x11grab 
--prefix=/usr --enable-libgsm --enable-libtheora --enable-libvorbis 
--enable-pthreads --disable-strip --enable-libfaad --enable-libfaadbin 
--enable-liba52 --enable-liba52bin --enable-libdc1394 --disable-armv5te 
--disable-armv6 --disable-altivec --disable-vis --enable-shared --disable-static
  libavutil version: 49.6.0
  libavcodec version: 51.50.0
  libavformat version: 52.7.0
  libavdevice version: 52.0.0
  built on Oct  3 2008 22:40:31, gcc: 4.3.2
Input #0, image2, from 'tmp%03d.png':
  Duration: 00:00:00.4, start: 0.00, bitrate: N/A
Stream #0.0: Video: png, rgb32, 759x679 [PAR 0:1 DAR 0:1], 25.00 tb(r)
Output #0, ogg, to 'test.ogg':
Stream #0.0: Video: libtheora, yuv420p, 759x679 [PAR 0:1 DAR 0:1], q=2-31, 
200 kb/s, 25.00 tb(c)
Stream mapping:
  Stream #0.0 - #0.0
Press [q] to stop encoding
frame=   11 fps=  0 q=0.0 Lsize=  13kB time=0.4 bitrate= 233.3kbits/s
video:9kB audio:0kB global headers:3kB muxing overhead 3.458841%
*** glibc detected *** ffmpeg: double free or corruption (!prev): 0x08493b50 ***
=== Backtrace: =
/lib/tls/i686/cmov/libc.so.6[0xb77b0454]
/lib/tls/i686/cmov/libc.so.6(cfree+0x96)[0xb77b24b6]
/usr/lib/libtheora.so.0[0xb7594c26]
=== Memory map: 
08048000-0805a000 r-xp  07:00 50435  /usr/bin/ffmpeg
0805a000-0805b000 r--p 00011000 07:00 50435  /usr/bin/ffmpeg
0805b000-0805c000 rw-p 00012000 07:00 50435  /usr/bin/ffmpeg
08451000-086e5000 rw-p 08451000 00:00 0  [heap]
b53e9000-b6bfa000 rw-p b53e9000 00:00 0 
b700-b7021000 rw-p b700 00:00 0 
b7021000-b710 ---p b7021000 00:00 0 
b7155000-b7212000 rw-p b7155000 00:00 0 
b740b000-b740d000 rw-p b740b000 00:00 0 
b740d000-b7411000 r-xp  07:00 52873  /usr/lib/libXdmcp.so.6.0.0
b7411000-b7412000 rw-p 3000 07:00 52873  /usr/lib/libXdmcp.so.6.0.0
b7412000-b7416000 r-xp  07:00 53393  /usr/lib/libogg.so.0.5.3
b7416000-b7417000 r--p 3000 07:00 53393  /usr/lib/libogg.so.0.5.3
b7417000-b7418000 rw-p 4000 07:00 53393  /usr/lib/libogg.so.0.5.3
b7418000-b741a000 r-xp  07:00 52864  /usr/lib/libXau.so.6.0.0
b741a000-b741b000 rw-p 1000 07:00 52864  /usr/lib/libXau.so.6.0.0
b741b000-b7432000 r-xp  07:00 53650  /usr/lib/libxcb.so.1.0.0
b7432000-b7433000 r--p 00016000 07:00 53650  /usr/lib/libxcb.so.1.0.0
b7433000-b7434000 rw-p 00017000 07:00 53650  /usr/lib/libxcb.so.1.0.0
b7434000-b7435000 r-xp  07:00 53648  /usr/lib/libxcb-xlib.so.0.0.0
b7435000-b7436000 r--p  07:00 53648  /usr/lib/libxcb-xlib.so.0.0.0
b7436000-b7437000 rw-p 1000 07:00 53648  /usr/lib/libxcb-xlib.so.0.0.0
b7437000-b7438000 rw-p b7437000 00:00 0 
b7438000-b743d000 r-xp  07:00 53489  /usr/lib/libraw1394.so.8.2.0
b743d000-b743e000 r--p 4000 07:00 53489  /usr/lib/libraw1394.so.8.2.0
b743e000-b743f000 rw-p 5000 07:00 53489  /usr/lib/libraw1394.so.8.2.0
b743f000-b745a000 r-xp  07:00 53585  /usr/lib/libvorbis.so.0.4.0
b745a000-b745b000 r--p 0001a000 07:00 53585  /usr/lib/libvorbis.so.0.4.0
b745b000-b7469000 rw-p 0001b000 07:00 53585  /usr/lib/libvorbis.so.0.4.0
b7469000-b7474000 r-xp  07:00 53578  /usr/lib/libvorbisenc.so.2.0.3
b7474000-b7475000 r--p a000 07:00 53578  /usr/lib/libvorbisenc.so.2.0.3
b7475000-b7563000 rw-p b000 07:00 53578  /usr/lib/libvorbisenc.so.2.0.3
b7563000-b75ac000 r-xp  07:00 53558  /usr/lib/libtheora.so.0.3.3
b75ac000-b75ae000 rw-p 00049000 07:00 53558  /usr/lib/libtheora.so.0.3.3
b75ae000-b75ba000 r-xp  07:00 53212  /usr/lib/libgsm.so.1.0.12
b75ba000-b75bb000 rw-p b000 07:00 53212  /usr/lib/libgsm.so.1.0.12
b75bb000-b75bc000 rw-p b75bb000 00:00 0 
b75bc000-b75be000 r-xp  07:00 96604  
/lib/tls/i686/cmov/libdl-2.8.90.so
b75be000-b75bf000 r--p 1000 07:00 96604  
/lib/tls/i686/cmov/libdl-2.8.90.so
b75bf000-b75c rw-p 2000 07:00 96604  
/lib/tls/i686/cmov/libdl-2.8.90.so
b75c-b75d4000 r-xp  07:00 53659  /usr/lib/libz.so.1.2.3.3
b75d4000-b75d6000 rw-p 00013000 07:00 53659  /usr/lib/libz.so.1.2.3.3
b75d6000-b75e3000 r-xp  07:00 52876  /usr/lib/libXext.so.6.4.0
b75e3000-b75e5000 rw-p c000 07:00 52876  /usr/lib/libXext.so.6.4.0
b75e5000-b76d r-xp  07:00 52045  /usr/lib/libX11.so.6.2.0
b76d-b76d1000 r--p 000ea000 07:00 52045  /usr/lib/libX11.so.6.2.0
b76d1000-b76d3000 rw-p 000eb000 07:00 52045  /usr/lib/libX11.so.6.2.0

[Bug 323993] [NEW] Imposible instalar sun-java6-jdk y sun-java5-jdk

2009-02-01 Thread Guillermo IV
Public bug reported:

Binary package hint: sun-java6-jdk

Instalé Ubuntu 8.10. Al instalar java6, salieron errores y no pudo concluir, 
hubo crash en la instalación.
Borré todos los archivos recibidos y traté con java5, igual, no instala.

ProblemType: Package
Architecture: i386
Dependencies:
 
DistroRelease: Ubuntu 8.10
ErrorMessage: subprocess pre-installation script returned error exit status 1
Package: sun-java5-bin None [modified: /var/lib/dpkg/info/sun-java5-bin.list]
SourcePackage: sun-java5
Title: package sun-java5-bin None [modified: 
/var/lib/dpkg/info/sun-java5-bin.list] failed to install/upgrade: subprocess 
pre-installation script returned error exit status 1
Uname: Linux 2.6.27-11-generic i686

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


** Tags: apport-package

-- 
Imposible instalar sun-java6-jdk y sun-java5-jdk
https://bugs.launchpad.net/bugs/323993
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 323993] Re: Imposible instalar sun-java6-jdk y sun-java5-jdk

2009-02-01 Thread Guillermo IV

** Attachment added: DpkgTerminalLog.gz
   http://launchpadlibrarian.net/21879843/DpkgTerminalLog.gz

-- 
Imposible instalar sun-java6-jdk y sun-java5-jdk
https://bugs.launchpad.net/bugs/323993
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306425] Re: [needs-packaging] KonsolScript interpreter (quixie)

2009-01-14 Thread Mj Mendoza IV
** Changed in: ubuntu
   Status: Incomplete = Confirmed

-- 
[needs-packaging] KonsolScript interpreter (quixie)
https://bugs.launchpad.net/bugs/306425
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306425] Re: [needs-packaging] KonsolScript interpreter (quixie)

2008-12-23 Thread Mj Mendoza IV
The source code for quixie is being transfered from SourceForg to
LaunchPad. Although, the VCS import has not yet been made by the
LaunchPad administrators.

URL: https://edge.launchpad.net/quixie

-- 
[needs-packaging] KonsolScript interpreter (quixie)
https://bugs.launchpad.net/bugs/306425
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 306425] Re: [needs-packaging] KonsolScript interpreter (quixie)

2008-12-23 Thread Mj Mendoza IV
** Description changed:

  Package request for Quixie.
  
  Quixie is an interpreter for KonsolScript, a game scripting language,
  suitable for teaching 2D game programming.
  
  Source code is available through CVS 
http://konsolscript.cvs.sourceforge.net/konsolscript/quixie
  There's a DEB file available from 
http://sourceforge.net/project/platformdownload.php?group_id=164830sel_platform=5776
  
- URL: http://konsolscript.sourceforge.net
+ URL: http://konsolscript.sourceforge.net | https://edge.launchpad.net/quixie
  License: GPL

-- 
[needs-packaging] KonsolScript interpreter (quixie)
https://bugs.launchpad.net/bugs/306425
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 97720] Re: Internet Radio Audio Freezes in Rythmbox Music Player

2008-12-18 Thread Charles P. Collins IV
I have the same problem as era; every time WKNC 88,1 FM (NC State)
(Broadband) changes tracks, it throws the data flow error.

Running 0.11.6 on Ubuntu Intrepid amd64 8.10

-- 
Internet Radio Audio Freezes in Rythmbox Music Player
https://bugs.launchpad.net/bugs/97720
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 284299] Re: icedtea-gcjwebplugin broken dependency on icedtea6-plugin

2008-11-25 Thread Charles P. Collins IV
This problem affects me as well, no open solution for Java web applets.
No open solution for using the Gallery2 web upload applet feature for
my sites.  Also on amd64 main repositories.

-- 
icedtea-gcjwebplugin broken dependency on icedtea6-plugin 
https://bugs.launchpad.net/bugs/284299
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 149389] Re: Some internet radio stations don't work with crossfading backend in Rhythmbox

2008-11-12 Thread Charles P. Collins IV
This problem still occurs in Intrepid Ibex.  With crossfade enabled, the
m3u stream from my local college station does not work most of the time.
With crossfade disabled it works without problem.

-- 
Some internet radio stations don't work with crossfading backend in Rhythmbox
https://bugs.launchpad.net/bugs/149389
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 127315] Re: F-Spot puts photos in Photos folder not Pictures folder

2008-11-06 Thread Charles P. Collins IV
I think that mimicing Rhythmbox is a good way to handle it.

I agree with Ralf, as this is a serious Low priority bug. Ubuntu sets
up a default Pictures directory and then the default photo manager
does not use it but defaults to copying pictures to another directory.
This is very confusing to new users.

-- 
F-Spot puts photos in Photos folder not Pictures folder
https://bugs.launchpad.net/bugs/127315
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 12637] Re: LCD Brightness on Laptop Always Set Very Low at Boot

2008-10-30 Thread Johnny Jelinek IV
Well this one must be quite a bugger because it's taken this long to
tackle.

On Thu, Oct 30, 2008 at 3:15 AM, Bertilo [EMAIL PROTECTED] wrote:

 Won't fix Why?

 --
 LCD Brightness on Laptop Always Set Very Low at Boot
 https://bugs.launchpad.net/bugs/12637
 You received this bug notification because you are a direct subscriber
 of a duplicate bug.


-- 
LCD Brightness on Laptop Always Set Very Low at Boot
https://bugs.launchpad.net/bugs/12637
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 274760] Re: NetworkManager crashed with SIGSEGV in g_object_unref()

2008-10-08 Thread Frederick F. Kautz IV
This bug affected my system while connected to a Wireless network. The
crash occured after approximately 2 hours of being on the network.

network-manager:
  Installed: 0.7~~svn20081004t225044-0ubuntu1
  Candidate: 0.7~~svn20081004t225044-0ubuntu1
  Version table:
 *** 0.7~~svn20081004t225044-0ubuntu1 0
500 http://us.archive.ubuntu.com intrepid/main Packages
100 /var/lib/dpkg/status

-- 
NetworkManager crashed with SIGSEGV in g_object_unref()
https://bugs.launchpad.net/bugs/274760
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 269651] Re: console-kit-daemon crashed with SIGSEGV in g_str_hash()

2008-10-06 Thread Frederick F. Kautz IV
I got this error as well with the following configuration profile:

The system was installed using wubi from http://wubi-
installer.org/devel/minefield/

Wubi-8.10-rev510.exe03-Oct-2008 08:35   959K

$ lsb_release -rd ; uname -a; apt-cache policy linux linux-image-generic
consolekit

Description:Ubuntu intrepid (development branch)
Release:8.10
Linux ubuntu 2.6.27-5-generic #1 SMP Fri Oct 3 00:38:23 UTC 2008 i686 GNU/Linux
linux:
  Installed: (none)
  Candidate: 2.6.27.5.5
  Version table:
 2.6.27.5.5 0
500 http://us.archive.ubuntu.com intrepid/restricted Packages
linux-image-generic:
  Installed: 2.6.27.5.5
  Candidate: 2.6.27.5.5
  Version table:
 *** 2.6.27.5.5 0
500 http://us.archive.ubuntu.com intrepid/main Packages
100 /var/lib/dpkg/status
consolekit:
  Installed: 0.2.10-1ubuntu7
  Candidate: 0.2.10-1ubuntu7
  Version table:
 *** 0.2.10-1ubuntu7 0
500 http://us.archive.ubuntu.com intrepid/main Packages
100 /var/lib/dpkg/status

-- 
console-kit-daemon crashed with SIGSEGV in g_str_hash()
https://bugs.launchpad.net/bugs/269651
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 278807] Re: package cmake 2.6.0-4ubuntu2 failed to install/upgrade: subprocess post-installation script returned error exit status 2

2008-10-06 Thread Frederick F. Kautz IV
This appears to be a race condition when emacsen-common and cmake are
installed simultaneously. If cmake is configured first, an error occurs.
if emacsen-common is configured first, it will probably work.

I believe that if we add emacsen-common to the list of dependencies for
the cmake package, it should solve the problem.

Assuming emacsen-common is an optional dependency, is not a missing
required dependency, and is being installed at the same time as cmake,
is there any way to force emacsen-common to run its post-installation
scripts first if emacsen-common is present and has not been configured?

-- 
package cmake 2.6.0-4ubuntu2 failed to install/upgrade: subprocess 
post-installation script returned error exit status 2
https://bugs.launchpad.net/bugs/278807
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   >