[Bug 1903782] Re: tclxml: dom::parse fails, cannot find dom::libxml2::adoptdocument

2020-11-10 Thread Wowbagger
change to package tclxml

** Package changed: ubuntu => tclxml (Ubuntu)

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

Title:
  tclxml: dom::parse fails, cannot find dom::libxml2::adoptdocument

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

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

[Bug 1903782] [NEW] tclxml: dom::parse fails, cannot find dom::libxml2::adoptdocument

2020-11-10 Thread Wowbagger
Public bug reported:

The TclXML package's DOM support is broken - when the libtclxml3.2.so is
loaded, it does not export the commands in the libxml2 namespace, so the
parse function fails.

Demonstration:
run the following tcl commands.

package require dom
set dom [dom::parse {}]

Expected results:
Creation of a simple DOM with a single root node.

Actual results:
tclsh
% package require dom
3.2
% set dom [dom::parse {}]   
invalid command name "dom::libxml2::adoptdocument"
% 

lsb_release -rd
Description:Ubuntu 20.10
Release:20.10


apt-cache policy  tclxml
tclxml:
  Installed: 1:3.2.7-5
  Candidate: 1:3.2.7-5
  Version table:
 *** 1:3.2.7-5 500
500 http://us.archive.ubuntu.com/ubuntu groovy/universe amd64 Packages
100 /var/lib/dpkg/status

** Affects: ubuntu
 Importance: Undecided
 Status: New

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

Title:
  tclxml: dom::parse fails, cannot find dom::libxml2::adoptdocument

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

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

[Bug 1853977] Re: nvidia-340 dpkg: error: version '-' has bad syntax: revision number is empty

2020-10-23 Thread Wowbagger
This is a stupid uninitialized variable error in the postinstall script:

case "$1" in
configure)
# Added manually, since we mangled the arguments, and 
dpkg-maintscript-helper
# won't work
if [ -n "$2" ] && `dpkg --compare-versions "$2" lt "340.106-0ubuntu5"`; 
then
rm -f /etc/modprobe.d/nvidia-340.conf
fi
CURRENT_KERNEL=$(uname -r)
NEWEST_KERNEL=$(get_newest_kernel "$KERNELS")

Variable "KERNELS" is not defined, so when get_newest_kernel tries to
use dpkg to look up the kernel version it fails.

Defining "KERNELS" to be CURRENT_KERNEL allows the configure to work:

case "$1" in
configure)
# Added manually, since we mangled the arguments, and 
dpkg-maintscript-helper
# won't work
if [ -n "$2" ] && `dpkg --compare-versions "$2" lt "340.106-0ubuntu5"`; 
then
rm -f /etc/modprobe.d/nvidia-340.conf
fi
CURRENT_KERNEL=$(uname -r)
KERNELS=$CURRENT_KERNEL
NEWEST_KERNEL=$(get_newest_kernel "$KERNELS")

Seriously - this has been an issue for over a year, and nobody bothered
to look into it?

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

Title:
  nvidia-340 dpkg: error: version '-' has bad syntax: revision number is
  empty

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

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

[Bug 1874343] Re: Thunar hangs for several seconds on first launch

2020-04-24 Thread Wowbagger
OK, I found the source of the problem - trash ibus files, some owned by
root, that was causing issues with Thunar's communications.

For others: If you see this, remove ~/.config/ibus, ~/.cache/ibus, and
~/.dbus and reboot.

Now, how those bogus files came into being... I have no idea.

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

Title:
  Thunar hangs for several seconds on first launch

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

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

[Bug 1874343] Re: Thunar hangs for several seconds on first launch

2020-04-24 Thread Wowbagger
This may be a layer under Thunar - I just notice I am getting the same
sort of delay when I have Firefox try to save something - a long delay
before the save dialog shows up.

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

Title:
  Thunar hangs for several seconds on first launch

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

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

[Bug 1874343] Re: Thunar hangs for several seconds on first launch

2020-04-24 Thread Wowbagger
I see a Thunar process for the directory in question:
ps ax | grep -i thun
 230091 ?Sl 0:00 /usr/bin/Thunar 
file:///home//Desktop/

Which is created immediately when I click on the icon. After the delay, the 
window appears (but is unresponsive). At that time I still only have the one 
Thunar process. After another delay, the window becomes responsive (still only 
one process).
At this point, I can click on other icons on the desktop and get a window 
immediately (still only one process), but the windows are unresponsive for the 
same delay.
Closing all windows, shutting down Thunar, and re-running puts me back to the 
beginning state of no window for a delay, and then unresponsive for a delay.

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

Title:
  Thunar hangs for several seconds on first launch

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

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

[Bug 1874343] Re: Thunar hangs for several seconds on first launch

2020-04-24 Thread Wowbagger
No broken links, remote locations are instantly reachable (confirmed by
doing an ls from a command line prior to the operations).

I am just trying to open a folder contained within the Desktop folder by 
double-clicking the icon. Thunar will start running instantly (the process will 
be created), but nothing will happen visually for ca. 15 seconds. As previously 
stated, during this time there is no unusual CPU load or network load.
Eventually, the window will show, but after that, Thunar will go back to being 
unresponsive for ca. 15 seconds more before anything within that window can be 
selected or opened. During that 15 seconds, again, there is no unusual CPU load 
or network traffic.

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

Title:
  Thunar hangs for several seconds on first launch

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

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

[Bug 1874343] [NEW] Thunar hangs for several seconds on first launch

2020-04-22 Thread Wowbagger
Public bug reported:

Unlike bug #775117, this hang is not accompanied by any error messages,
and once it gets launched, Thunar is fully functional.

During the hang, there are no CPU cores showing high activity, so this
isn't a fast spin loop. There is plenty of memory, and the local disks
are NVMe.

I've tried to attach gdb during these hangs, and it *seems* to always be
in transactions with D-Bus, but that could be a coincidence.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: thunar 1.8.14-0ubuntu1
ProcVersionSignature: Ubuntu 5.4.0-24.28-generic 5.4.30
Uname: Linux 5.4.0-24-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu27
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: XFCE
Date: Wed Apr 22 18:43:35 2020
ExecutablePath: /usr/bin/thunar
SourcePackage: thunar
UpgradeStatus: Upgraded to focal on 2020-04-04 (18 days ago)

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


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

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

Title:
  Thunar hangs for several seconds on first launch

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

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

[Bug 1608753] [NEW] Cannot build nvidia driver via dkms because compiler doesn't match kernel

2016-08-01 Thread Wowbagger
Public bug reported:

The kernel installed with 16.04 was built with gcc 5.3.1, but the
default compiler installed is 5.4.0 - as such, DKMS refuses to build the
nvidia video card driver due to the mismatch. Either build the kernel
with the shipping compiler or ship the compiler that was used to build
the kernel.

cat /proc/version
Linux version 4.4.0-34-lowlatency (buildd@lgw01-20) (gcc version 5.3.1 20160413 
(Ubuntu 5.3.1-14ubuntu2.1) ) #53-Ubuntu SMP PREEMPT Wed Jul 27 19:23:26 UTC 2016
gcc --version
gcc (Ubuntu 5.4.0-6ubuntu1~16.04.1) 5.4.0 20160609
lsb_release -rd
Description:Ubuntu 16.04.1 LTS
Release:16.04

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: dkms 2.2.0.3-2ubuntu11.1
ProcVersionSignature: Ubuntu 4.4.0-34.53-lowlatency 4.4.15
Uname: Linux 4.4.0-34-lowlatency x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
Date: Mon Aug  1 21:26:15 2016
PackageArchitecture: all
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: dkms
UpgradeStatus: Upgraded to xenial on 2016-07-23 (9 days ago)

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


** Tags: amd64 apport-bug xenial

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

Title:
  Cannot build nvidia driver via dkms because compiler doesn't match
  kernel

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

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


[Bug 1213751] [NEW] System startup delayed waiting for network if any auto interfaces specified in /etc/network/interfaces

2013-08-18 Thread Wowbagger
Public bug reported:

I want to have some especial configuration done on eth0 when it is
brought up (setting MTU, configuring what speed to run, etc.), so I have
added those commands to the eth0 stanza in /etc/network/interfaces.
However, upon upgrading to 13.04, this now causes the system to pause
during boot waiting for network configuration (NOTE: The network is
physically connected and ready to operate). Disabling the eth0 stanza
will allow boot to continue normally.

In other words, this hangs the boot for over a minute:

auto eth0
iface eth0 inet dhcp
up ethtool -K eth0 gso on
up ethtool -s eth0 advertise 0x3f
up ethtool -s  eth0 wol a
mtu 6000

Removing that from /etc/network/interfaces allows the boot to continue.

This is a new behavior in 13.04 - 12.10 worked just fine.

Steps to reproduce:
Insure the system has a working wired network connection that will be available 
at boot.
Add the following to /etc/network/interfaces
 auto eth0
 iface eth0 inet dhcp

reboot.

Expected results:
eth0 brought up during boot with no significant delay
Actual results:
Boot delayed over 60 seconds.

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: network-manager 0.9.8.0-0ubuntu6
Uname: Linux 3.11.0-rc5 x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.9.2-0ubuntu8.3
Architecture: amd64
Date: Sun Aug 18 19:35:10 2013
IpRoute:
 default via 10.0.0.1 dev eth0 
 10.0.0.0/8 dev eth0  proto kernel  scope link  src 10.16.0.66 
 224.0.0.0/24 dev eth0  scope link 
 239.0.0.0/8 dev eth0  scope link
MarkForUpload: True
NetworkManager.state:
 [main]
 NetworkingEnabled=true
 WirelessEnabled=true
 WWANEnabled=true
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
RfKill: Error: [Errno 2] No such file or directory: 'rfkill'
SourcePackage: network-manager
UpgradeStatus: No upgrade log present (probably fresh install)
nmcli-con:
 Error: command ['nmcli', '-f', 'all', 'con'] failed with exit code 9: 
 ** (process:5672): WARNING **: Could not initialize NMClient 
/org/freedesktop/NetworkManager: The name org.freedesktop.NetworkManager was 
not provided by any .service files
 Error: nmcli (0.9.8.0) and NetworkManager (unknown) versions don't match. 
Force execution using --nocheck, but the results are unpredictable.
nmcli-dev: Error: command ['nmcli', '-f', 'all', 'dev'] failed with exit code 
8: Error: NetworkManager is not running.
nmcli-nm:
 RUNNING VERSIONSTATE   NET-ENABLED   WIFI-HARDWARE   WIFI  
 WWAN-HARDWARE   WWAN  
 not running unknownunknown unknown   unknown 
unknownunknown unknown

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


** Tags: amd64 apport-bug raring

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

Title:
  System startup delayed waiting for network if any auto interfaces
  specified in /etc/network/interfaces

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

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


[Bug 1024954] Re: Cannot pair with device

2012-07-15 Thread Wowbagger
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1024954

Title:
  Cannot pair with device

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

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


[Bug 1024954] [NEW] Cannot pair with device

2012-07-15 Thread Wowbagger
Public bug reported:

Attempting to pair my Android phone with the computer fails. The phone
was previously paired, but I wanted to force the phone to rescan the
services offered by the computer, so I deleted the computer from the
phone and the phone from the computer.

Attempting to pair from the phone to the computer yields the following results:
Phone displays passkey entry dialog.
1 second later, dialog is cleared with canceled from device (i.e. computer).
No dialog or messages displayed on the computer

Attempting to pair from the computer yields:
Passkey dialog displayed on computer
one second later, dialog is closed.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: blueman 1.23-0ubuntu2
Uname: Linux 3.4.0+ x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.0.1-0ubuntu11
Architecture: amd64
Date: Sun Jul 15 08:01:37 2012
ProcEnviron:
 LANGUAGE=en_US:en
 TERM=xterm
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: blueman
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug precise

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

Title:
  Cannot pair with device

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

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


[Bug 991606] Re: System wakes up after few minutes on suspend

2012-05-20 Thread Wowbagger
My system (System76 Serval, a Clevo laptop) resumes instantly.

It looks like the hook is busted, and is incorrectly invoking Pulse, and
thus erroring, and thus preventing shutdown.

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

Title:
  System wakes up after few minutes on suspend

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

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


[Bug 991606] Re: System wakes up after few minutes on suspend

2012-05-20 Thread Wowbagger
Correction: I disabled the Pulseaudio script (mv  /usr/lib/pm-
utils/sleep.d/01PulseAudio  /usr/lib/pm-utils/sleep.d/.01PulseAudio) and
this still happens.

So while I think the Pulseaudio issue should be fixed, I don't think it
is what is preventing the system from sleeping.

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

Title:
  System wakes up after few minutes on suspend

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

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


[Bug 991606] Re: System wakes up after few minutes on suspend

2012-05-20 Thread Wowbagger
Additional info: I disabled the whole /usr/lib/pm-utils/sleep.d/
directory, and still see the problem.

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

Title:
  System wakes up after few minutes on suspend

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

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


[Bug 1001972] [NEW] No adapters shown

2012-05-20 Thread Wowbagger
Public bug reported:

Under 10.4, my laptop's built-in Cambridge Silicon Bluetooth worked.

However, under 12.4, it does not:
Activating the adapter causes /usr/sbin/bluetoothd to be launched, HOWEVER, 
none of the blueman- programs work:
blueman-adapters shows no adapters at all (indeed, all it shows is a tiny 
window, not even large enough to contain the window title, with a [X close] 
button, and that's it - not even a way to expand the window to show the 
title.)blueman
blueman-manager has both the Adapter and Device menu entries greyed out.
blueman-browse fails:
 blueman-browse 
Loading configuration plugins
_
SetAdapter (/usr/lib/python2.7/dist-packages/blueman/gui/DeviceList.py:301)
None 
_
SetAdapter (/usr/lib/python2.7/dist-packages/blueman/gui/DeviceList.py:301)
No such adapter 
Traceback (most recent call last):
  File /usr/bin/blueman-browse, line 99, in module
Browse()
  File /usr/bin/blueman-browse, line 54, in __init__
dev = self.select_device()
  File /usr/bin/blueman-browse, line 83, in select_device
d = DeviceSelectorDialog()
  File /usr/lib/python2.7/dist-packages/blueman/gui/DeviceSelectorDialog.py, 
line 56, in __init__
self.selector.List.DiscoverDevices()
  File /usr/lib/python2.7/dist-packages/blueman/gui/DeviceList.py, line 445, 
in DiscoverDevices
self.Adapter.StartDiscovery()
AttributeError: 'NoneType' object has no attribute 'StartDiscovery'

** Affects: blueman (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/1001972

Title:
  No adapters shown

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

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


[Bug 820897] [NEW] Hard lock up after boot

2011-08-04 Thread Wowbagger
Public bug reported:

Steps to reproduce:
1) Boot into 2.6.35-30
2) Log into X
3) Start Firefox
4) load some web pages
Expected results:
Pages load. System works
Actual results:
after a few seconds the machine hard locks. Mouse is unresponsive. Machine does 
not respond to pings from network. UI does not update. Machine does not respond 
to short press on power button - only a long press (hard power off) works. No 
meaningful data in syslog, boot.log, or dmesg.

Reproducibility: every time.

This does not happen with 2.6.35-28-generic.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: linux-image-2.6.35-30-generic 2.6.35-30.56
Regression: Yes
Reproducible: Yes
ProcVersionSignature: Ubuntu 2.6.35-28.50-generic 2.6.35.11
Uname: Linux 2.6.35-28-generic x86_64
NonfreeKernelModules: nvidia
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  wowbaggr   2467 F pulseaudio
 /dev/snd/controlC1:  wowbaggr   2467 F pulseaudio
CRDA: Error: [Errno 2] No such file or directory
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xf460 irq 48'
   Mixer name   : 'Realtek ALC662 rev1'
   Components   : 'HDA:10ec0662,15580860,00100101 
HDA:10573055,00305557,00100900'
   Controls  : 24
   Simple ctrls  : 14
Card1.Amixer.info:
 Card hw:1 'default'/'C-Media USB Audio Deviceat usb-:00:1d.7-1.4.3.2, 
full speed'
   Mixer name   : 'USB Mixer'
   Components   : 'USB0d8c:0008'
   Controls  : 7
   Simple ctrls  : 3
Date: Thu Aug  4 07:16:30 2011
HibernationDevice: RESUME=UUID=8447c61e-857c-4c79-8027-73514d5d2caa
MachineType: System76, Inc. Serval Professional
ProcCmdLine: root=UUID=e7728359-15b1-4eb6-a7c9-db1b40e7c807 ht=on ro quiet 
splash  crashkernel=384M-2G:64M,2G-:128M
ProcEnviron:
 LANGUAGE=en_US:en
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
RelatedPackageVersions: linux-firmware 1.38.6
RfKill:
 0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
SourcePackage: linux
UserAsoundrc:
 pcm.pulse { type pulse }
 ctl.pulse { type pulse }
 pcm.!default { type pulse }
 ctl.!default { type pulse }
dmi.bios.date: 05/13/2009
dmi.bios.vendor: Phoenix Technologies LTD
dmi.bios.version: 1.02.16S
dmi.board.asset.tag: Tag 12345
dmi.board.name: Serval Professional
dmi.board.vendor: System76, Inc.
dmi.board.version: serp5
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 9
dmi.chassis.vendor: No Enclosure
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnPhoenixTechnologiesLTD:bvr1.02.16S:bd05/13/2009:svnSystem76,Inc.:pnServalProfessional:pvrserp5:rvnSystem76,Inc.:rnServalProfessional:rvrserp5:cvnNoEnclosure:ct9:cvrN/A:
dmi.product.name: Serval Professional
dmi.product.version: serp5
dmi.sys.vendor: System76, Inc.

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


** Tags: amd64 apport-bug kernel-config maverick 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/820897

Title:
  Hard lock up after boot

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

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


[Bug 820897] Re: Hard lock up after boot

2011-08-04 Thread Wowbagger
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/820897

Title:
  Hard lock up after boot

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

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


[Bug 816197] [NEW] Cannot change city name font for gkt client- too small

2011-07-25 Thread Wowbagger
Public bug reported:

Changing the .freeciv-client.rc-2.2 font settings for city name fonts
does not change the size of the city name on the map, and that font is
too small on a 1920x1200 display.

Ubuntu 10.10
freeciv-client-gtk:
  Installed: 2.2.1-1ubuntu1
  Candidate: 2.2.1-1ubuntu1
  Version table:
 *** 2.2.1-1ubuntu1 0
500 http://mirror.anl.gov/pub/ubuntu/ maverick/universe amd64 Packages
100 /var/lib/dpkg/status

Steps to reproduce:
1) install and run freeciv gtk client to create ~/.freeciv-client.rc-2.2, then 
quit freeciv
2) gedit  ~/.freeciv-client.rc-2.2
3) increase all font sizes to at least 30
4) Save file
5) restart freeciv-gtk
6) enter game.

Expected results: city names on map are larger.
Actual results: city names are no bigger (other fonts, such as messages, are 
bigger).
Reproducibility: always

** Affects: freeciv (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/816197

Title:
  Cannot change city name font for gkt client- too small

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

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


[Bug 281580] Re: [Intrepid] New Bluetooth Wizard fails to pair with devices: reintroduce hidd

2010-09-11 Thread Wowbagger
Really, the RIGHT answer is:
1) get Bluez to actually DOCUMENT how the new Bluetooth stack is supposed to 
work:
1a) document the new configuration files in a meaningful fashion
1b) document how to accomplish basic functions, such as
1b1) using Bluetooth keyboard and mouse
1b2) using Bluetooth networking (PAN)
1b3) using Bluetooth modem (DUN)
1b4) using Bluetooth audio devices
2) Make proper GUIs and command line programs to configure the above use cases
3) REMOVE HIDD, and make any attempt to install it instead point the person to 
the new packages
4) Make a concerted effort to get people to update the web pages referring to 
the old methods.

And if Bluez will not or can not do this, then Canonical needs to step
up and do it. This is a piece of system infrastructure, not just some
random app. It not working really gives GNU/Linux a black eye.

-- 
[Intrepid] New Bluetooth Wizard fails to pair with devices: reintroduce hidd
https://bugs.launchpad.net/bugs/281580
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 609946] Re: leadtek dongle preventing shutdown

2010-07-28 Thread Wowbagger
I had asked about this sort of problem on the mailing list, and was told
that this is a problem in the whole DVB subsystem - it doesn't support
suspend. I have the same problem with a Hauppauge WinTV-HVR 950 - if
anything opens it, the system won't suspend. The device has to be
physically removed from the USB to allow suspend to work.

-- 
leadtek dongle preventing shutdown
https://bugs.launchpad.net/bugs/609946
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 421351] Re: [Karmic] - Digital outputs missing on sound cards

2009-10-11 Thread Wowbagger
By Fix released do you mean that the fix is in the main repositories,
or that it is wending its way through a release process - because I
updated today (11th Oct 2009) and I still get the unable to find
definition errors for my Intal HDA Realtek ALC662's SPDIF output.

-- 
[Karmic] - Digital outputs missing on sound cards
https://bugs.launchpad.net/bugs/421351
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 289391] Re: No way to configure a remote through Bluetooth Applet

2009-08-08 Thread Wowbagger
So, do I understand you to say that there is no way to configure an
external Bluetooth HID device (such as a keyboard or mouse) such that
when the device connects to the computer, *something* will actually take
the events from the device and route them to the user interface so that
they can be acted upon, save by installing an older, deprecated package
and MANUALLY, FROM THE COMMAND LINE launching the appropriate commands?

Do I understand that, due to the way the Bluetooth tools are shipped in
the latest versions of Ubuntu, all the the guides a user is likely to
find on the Web that instruct them to simply select the Bluetooth Icon
on the panel, and switch to the Services tab are now invalid, because
there is no Services tab, and there is now some new, undocumented way
to enable things like HID support?

Let me be clear here: this is something that should Just Work: I pair an
HID device to the machine, and when that device connects the appropriate
services/daemons/plugins/whatever should be launched WITHOUT having to
manually start them from the command line.

-- 
No way to configure a remote through Bluetooth Applet
https://bugs.launchpad.net/bugs/289391
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 346352] Re: folders.db gets out of sync with mail server

2009-07-16 Thread Wowbagger
May I ask why this has been marked Invalid - the bug still exists, and
is reproducible.

-- 
folders.db gets out of sync with mail server
https://bugs.launchpad.net/bugs/346352
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 346352] Re: folders.db gets out of sync with mail server

2009-07-16 Thread Wowbagger
I did - and if YOU had looked at the upstream bug, you would have seen that
a) the first bug was incorrectly marked as a dup of a bug having to do with 
search folders rather than actual IMAP folders.
and
b) the second bug is still not resolved

-- 
folders.db gets out of sync with mail server
https://bugs.launchpad.net/bugs/346352
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 388767] Re: Does not handle multiple ATSC multiplexes with the same name

2009-07-06 Thread Wowbagger
I'm sorry, but I don't agree this is an invalid - the channels are
distinct, as the multiplex numbers are different. The names may be be
the same, but that is indeed what the actual over-the-air data is.
Assume in the future that Me-TV gains the ability to scan for ATSC
channels itself - that is what it is going to get, and that means that
the next time you start Me-TV it will lose the channels. Are you REALLY
suggesting the work-around is to rescan the channels ever single time
you start Me-TV?

-- 
Does not handle multiple ATSC multiplexes with the same name
https://bugs.launchpad.net/bugs/388767
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 395830] [NEW] Bitpim crashes when communicating with phone

2009-07-05 Thread Wowbagger
Public bug reported:

Binary package hint: bitpim

BItpim crashes when attempting to import data from a phone. Phone is
connectable via Bluetooth and is configured properly in Bitpim.

Steps to reproduce:
Start Bitpim
Configure phone
Attempt to download from phone

Results:
Bitpim throws a Python error.

Expected results:

Bitpim should work

Reproducability: Every time.

Version information:
Description:Ubuntu 9.04
Release:9.04
bitpim:
  Installed: 1.0.6.dfsg.1-1ubuntu2
  Candidate: 1.0.6.dfsg.1-1ubuntu2
  Version table:
 *** 1.0.6.dfsg.1-1ubuntu2 0
500 http://archive.ubuntu.com jaunty/universe Packages
100 /var/lib/dpkg/status

BitPim version: 1.0.6-Debian
An unexpected exception has occurred.
Please see the help for details on what to do.

Traceback (most recent call last):
  File /usr/share/bitpim/code/gui.py, line 284, in run
res=call()
  File /usr/share/bitpim/code/gui.py, line 159, in __call__
return apply(self.method, self.args+args, d)
  File /usr/share/bitpim/code/gui.py, line 1884, in getdata
results=self.getfundamentals()
  File /usr/share/bitpim/code/gui.py, line 1878, in getfundamentals
self.commphone.getfundamentals(results)
  File /usr/share/bitpim/code/phones/com_lgvx4400.py, line 96, in 
getfundamentals
results['uniqueserial']=sha.new(self.get_esn()).hexdigest()
  File /usr/share/bitpim/code/phones/com_lgvx8300.py, line 85, in get_esn
return self.get_brew_esn()
  File /usr/share/bitpim/code/phones/com_brew.py, line 335, in get_brew_esn
p_brew.ESN_resp).esn
  File /usr/share/bitpim/code/phones/com_lg.py, line 1711, in _sendbrewcommand
return func(*args, **kwargs)
  File /usr/share/bitpim/code/phones/com_brew.py, line 755, in sendbrewcommand
self.setmode(self.MODEBREW)
  File /usr/share/bitpim/code/phones/com_phone.py, line 114, in setmode
res=getattr(self, func)()
  File /usr/share/bitpim/code/phones/com_brew.py, line 693, in _setmodebrew
self.sendbrewcommand(req, respc, callsetmode=False)
  File /usr/share/bitpim/code/phones/com_lg.py, line 1711, in _sendbrewcommand
return func(*args, **kwargs)
  File /usr/share/bitpim/code/phones/com_brew.py, line 757, in sendbrewcommand
request.writetobuffer(buffer, logtitle=sendbrewcommand)
  File /usr/share/bitpim/code/phones/p_brew.py, line 2536, in writetobuffer
self.__field_header=requestheader(**{'command': 0x0c})
  File /usr/share/bitpim/code/phones/p_brew.py, line 42, in __init__
super(requestheader,self).__init__(**dict)
TypeError: object.__init__() takes no parameters

Variables by last 8 frames, innermost last

Frame _sendbrewcommand in /usr/share/bitpim/code/phones/com_lg.py at line 1714
   self =  phones.com_lgvx8300.Phone object at 0x4bf1d50
   args =  (phones.p_brew.ESN_req object at 0x4c0ce10, class 
'phones.p_brew.ESN_resp')
   func =  bound method Phone.sendbrewcommand of 
phones.com_lgvx8300.Phone object at 0x4b
 kwargs =  Keys []
   {}

Frame sendbrewcommand in /usr/share/bitpim/code/phones/com_brew.py at line 755
callsetmode =  True
request =  phones.p_brew.ESN_req object at 0x4c0ce10
   self =  phones.com_lgvx8300.Phone object at 0x4bf1d50
  responseclass =  class 'phones.p_brew.ESN_resp'

Frame setmode in /usr/share/bitpim/code/phones/com_phone.py at line 116
desiredmode =  'modebrew'
   self =  phones.com_lgvx8300.Phone object at 0x4bf1d50
strmode =  'none'
 strdesiredmode =  'brew'
   func =  '_setmodebrew'
  v =  'writeobject'

Frame _setmodebrew in /usr/share/bitpim/code/phones/com_brew.py at line 696
   self =  phones.com_lgvx8300.Phone object at 0x4bf1d50
req =  phones.p_brew.memoryconfigrequest object at 0x4c0cf90
  respc =  class 'phones.p_brew.memoryconfigresponse'

Frame _sendbrewcommand in /usr/share/bitpim/code/phones/com_lg.py at line 1714
   self =  phones.com_lgvx8300.Phone object at 0x4bf1d50
   args =  (phones.p_brew.memoryconfigrequest object at 0x4c0cf90, 
class 'phones.p_brew.
   func =  bound method Phone.sendbrewcommand of 
phones.com_lgvx8300.Phone object at 0x4b
 kwargs =  Keys ['callsetmode']
   {'callsetmode': False}

Frame sendbrewcommand in /usr/share/bitpim/code/phones/com_brew.py at line 757
 buffer =  prototypes.buffer object at 0x4c0cfd0
callsetmode =  False
request =  phones.p_brew.memoryconfigrequest object at 0x4c0cf90
   self =  phones.com_lgvx8300.Phone object at 0x4bf1d50
  responseclass =  class 'phones.p_brew.memoryconfigresponse'

Frame writetobuffer in /usr/share/bitpim/code/phones/p_brew.py at line 2536
buf =  prototypes.buffer object at 0x4c0cfd0
autolog =  True
   logtitle =  'sendbrewcommand'
   self =  phones.p_brew.memoryconfigrequest object at 0x4c0cf90

Frame __init__ in /usr/share/bitpim/code/phones/p_brew.py at line 42
   self =  

[Bug 391077] [NEW] Filter out dovecot Logged out messages

2009-06-23 Thread Wowbagger
Public bug reported:

Binary package hint: logwatch

The current parsing scripts for Dovecot don't filter out the routine
Logged out messages - as a result the Logwatch report gets full of
chaff messages.

The messages that need to be filtered out are all of the form

Jun  8 12:15:23 host dovecot: IMAP(user): Disconnected: Logged out
bytes=132/934

Description:Ubuntu 9.04
Release:9.04

logwatch:
  Installed: 7.3.6.cvs20080702-2ubuntu1
  Candidate: 7.3.6.cvs20080702-2ubuntu1
  Version table:
 *** 7.3.6.cvs20080702-2ubuntu1 0
500 http://archive.ubuntu.com jaunty/main Packages
100 /var/lib/dpkg/status

dovecot-common:
  Installed: 1:1.1.11-0ubuntu4
  Candidate: 1:1.1.11-0ubuntu4
  Version table:
 *** 1:1.1.11-0ubuntu4 0
500 http://archive.ubuntu.com jaunty/main Packages
100 /var/lib/dpkg/status

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

-- 
Filter out dovecot Logged out messages
https://bugs.launchpad.net/bugs/391077
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to logwatch in ubuntu.

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


[Bug 391077] [NEW] Filter out dovecot Logged out messages

2009-06-23 Thread Wowbagger
Public bug reported:

Binary package hint: logwatch

The current parsing scripts for Dovecot don't filter out the routine
Logged out messages - as a result the Logwatch report gets full of
chaff messages.

The messages that need to be filtered out are all of the form

Jun  8 12:15:23 host dovecot: IMAP(user): Disconnected: Logged out
bytes=132/934

Description:Ubuntu 9.04
Release:9.04

logwatch:
  Installed: 7.3.6.cvs20080702-2ubuntu1
  Candidate: 7.3.6.cvs20080702-2ubuntu1
  Version table:
 *** 7.3.6.cvs20080702-2ubuntu1 0
500 http://archive.ubuntu.com jaunty/main Packages
100 /var/lib/dpkg/status

dovecot-common:
  Installed: 1:1.1.11-0ubuntu4
  Candidate: 1:1.1.11-0ubuntu4
  Version table:
 *** 1:1.1.11-0ubuntu4 0
500 http://archive.ubuntu.com jaunty/main Packages
100 /var/lib/dpkg/status

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

-- 
Filter out dovecot Logged out messages
https://bugs.launchpad.net/bugs/391077
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 388931] [NEW] Cannot change the volume - it starts at 0 and stays there

2009-06-18 Thread Wowbagger
Public bug reported:

Binary package hint: me-tv

When playing an ATSC stream, the initial volume is set to zero, and
there is no way to change the volume that I can find - no menu entry, no
context menu entry, no obvious keybinding.

As such no audio is generated.

Steps to reproduce:
Start me-tv.
Tune to an ATSC stream.
Expected results: audio is heard through the speakers
Actual results: no audio is heard.
Additional data: other programs do play audio - e.g. xine will play the same 
stream with audio after turning the volume on xine up.


System information:
 lsb_release -rd
Description: Ubuntu 9.04
Release: 9.04
apt-cache policy me-tv
me-tv:
  Installed: 0.7.16-1
  Candidate: 0.7.16-1
  Version table:
 *** 0.7.16-1 0
500 http://us.archive.ubuntu.com jaunty/universe Packages
100 /var/lib/dpkg/status

** Affects: me-tv (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Cannot change the volume - it starts at 0 and stays there
https://bugs.launchpad.net/bugs/388931
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 388767] Re: Does not handle multiple ATSC multiplexes with the same name

2009-06-18 Thread Wowbagger
How are you supposed to know which one of those channels you are using?
How are other applications dealing with this? 

Other programs show the name and the channel number + multiplex number
(e.g. KGPT-49.1)

I think that listing the same channel multiple times is a bad
solution.

But not allow the user to access the channels is a WORSE solution.

I think that the channel names should be unique.

Hence using the channel # and multiplex # which are guaranteed to be
unique.

Where did you get that channels.conf file from?

From the output of w-scan, which is the recommended way to get the data.
Indeed, since me-tv does not support ATSC scanning itself, it is the
ONLY way.

I think that it's used the broadcasters/network/transponder name rather
than the service name.

Look more closely at the data, specifically the data for KPTS and KWCH.
The data in the file IS the service name, as sent by the broadcaster
over the air - it's just that KGPT isn't sending anything but the
callsign.

-- 
Does not handle multiple ATSC multiplexes with the same name
https://bugs.launchpad.net/bugs/388767
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 388767] [NEW] Does not handle multiple ATSC multiplexes with the same name

2009-06-17 Thread Wowbagger
Public bug reported:

Binary package hint: me-tv

Me-TV does not handle cases where an ATSC stream has multiple
multiplexes with the same name. Instead, the first time the channel.conf
is imported, the multiple multiplexes will show up, but upon restarting
Me-TV, the multiplexes will be collapsed into one listing.

e.g. this channels.conf file, captured in Wichita, KS:

KPTS Digital Television:18300:8VSB:49:52:3
KPTS Explore:18300:8VSB:65:68:4
KPTS Create:18300:8VSB:81:84:5
KAKE-DT:19500:8VSB:49:52:3
KSCW-DT:50300:8VSB:81:83:3
KSAS Wichita, KS:54500:8VSB:49:52:3
KMTW Wichita, KS:59900:8VSB:49:52:3
KCTU:64700:8VSB:49:50:1
KCTU:64700:8VSB:65:66:2
KCTU:64700:8VSB:81:82:3
KCTU:64700:8VSB:97:98:4
KSNW-DT:65900:8VSB:49:52:3
KGPT:68300:8VSB:49:50:1
KGPT:68300:8VSB:65:66:2
KGPT:68300:8VSB:81:82:3
KGPT:68300:8VSB:97:98:4

Note that both KGPT and KCTU have 4 multiplexes (different programs
within the same over-the-air stream) but do not assign different names
to the channels.

Steps to reproduce:

Save the above channel list as /tmp/channels.conf
Start Me-TV, import the channels.
Expected results: All channels listed. KGPT and KCTU are listed multiple times
Actual results: As expected.
Restart Me-TV (including shutting down the task bar icon).
Expected results: All channels listed. KGPT and KCTU are listed multiple times
Actual results: KGPT and KCTU are listed once each.

Repeatbility: every time

System information:
 lsb_release -rd
Description:Ubuntu 9.04
Release:9.04
apt-cache policy me-tv
me-tv:
  Installed: 0.7.16-1
  Candidate: 0.7.16-1
  Version table:
 *** 0.7.16-1 0
500 http://us.archive.ubuntu.com jaunty/universe Packages
100 /var/lib/dpkg/status

** Affects: me-tv (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Does not handle multiple ATSC multiplexes with the same name
https://bugs.launchpad.net/bugs/388767
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 367339] [NEW] Errors from Scrollkeeper and gnobots

2009-04-26 Thread Wowbagger
Public bug reported:

Binary package hint: scrollkeeper

I am getting an error from the monthly Scrollkeeper cron job:

/etc/cron.monthly/scrollkeeper:
I/O warning : failed to load external entity 
/usr/share/gnome/help/gnobots2/da/legal.xml
/usr/share/gnome/help/gnobots2/da/gnobots2.xml:26: parser error : Failure to 
process entity legal
legal;
   ^
/usr/share/gnome/help/gnobots2/da/gnobots2.xml:26: parser error : Entity 
'legal' not defined
legal;
   ^

System info:
x86-32
Description:Ubuntu 8.10
Release:8.10

scrollkeeper:
  Installed: 0.3.14-16ubuntu1
  Candidate: 0.3.14-16ubuntu1
  Version table:
 *** 0.3.14-16ubuntu1 0
500 http://us.archive.ubuntu.com intrepid/main Packages
100 /var/lib/dpkg/status
gnome-games-data:
  Installed: 1:2.24.1.1-0ubuntu1
  Candidate: 1:2.24.1.1-0ubuntu1
  Version table:
 *** 1:2.24.1.1-0ubuntu1 0
500 http://us.archive.ubuntu.com intrepid-updates/main Packages
100 /var/lib/dpkg/status
 1:2.24.1-0ubuntu2 0
500 http://us.archive.ubuntu.com intrepid/main Packages

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

-- 
Errors from Scrollkeeper and gnobots
https://bugs.launchpad.net/bugs/367339
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 360037] Re: Network Manager doesn't support demand PPP

2009-04-15 Thread Wowbagger
As I stated, when PPP drops the connection, Network manager terminates
PPPD - PPPD logs that is it being killed by a SIGTERM from the parent
process.

-- 
Network Manager doesn't support demand PPP
https://bugs.launchpad.net/bugs/360037
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 360037] Re: Network Manager doesn't support demand PPP

2009-04-15 Thread Wowbagger
1) I don't have the system ready to hand - I would have to remote debug
it now, which is kind of hard to do when the item being debugged is the
very communications link you are using to do the debugging.

2) I had already confirmed the PPPD was being killed - that there WAS no
PPPD anymore. I had done the ps myself, that, among other things, is how
I knew that PPPD was being killed.

-- 
Network Manager doesn't support demand PPP
https://bugs.launchpad.net/bugs/360037
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 360037] [NEW] Network Manager doesn't support demand PPP

2009-04-12 Thread Wowbagger
Public bug reported:

Binary package hint: network-manager

Use case 1: Dial up networking
User is using dial up networking over a conventional phone line. User wants PPP 
to use the demand setting, where the connection will be dropped after a 
period of inactivity (freeing the phone line for normal use).
User wants to use Network Manager to support the connection.

Use case 2: CDMA network.
User is using dial up networking over a dedicated CDMA modem. User wants PPP to 
use the demand setting, where the connection will be dropped after a period 
of inactivity, as maintaining the PPP connection continuously will cause 
eventual problems with the CDMA modem and network
User wants to use Network Manager to support the connection.

Problem 1: No ability to configure demand option within Network Manager.
There is no option to select demand mode within Network manager. The User 
either has to configure this manually in /etc/ppp/options or it is not 
available to the User.

Steps to reproduce:
1) Create an appropriate PPP connection within Network manager.
2) Edit properties on connection.

Expected results:
Either
a) demand is on by default and requires no user action
OR
b) demand mode available from the NM configuration properties dialog.

Actual results:
Demand not set on connection by default. No ability to set demand mode on 
connection via Network manager.

Problem 2: NM will consider the connection gone when PPP terminates the 
connection.
If the User sets demand in /etc/ppp/options, then when PPPD terminates the 
actual connection (leaving the PPP interface configured) NM will consider the 
connection terminated and will kill PPPD.

Steps to reproduce:
1) Create appropriate connection in NM.
2) Manually configure demand in /etc/ppp/options. Set for a reasonable idle 
time, such as 1 minute.
3) Wait the idle time.

Expected results:
PPP terminates the physical link but leaves the interface configured.
NM takes no especial action (possibly shows connection as dormant or idle).
PPP restarts connection on outbound packet.

Actual results:
PPP terminates the connection but leaves the interface configured.
NM detects termination of the physical connection and terminates PPPD
PPP interface is de-configured. No default route exists for packets. Automatic 
reconnect cannot happen.

Frequency of occurrence: every time.

This under Ubuntu 8.10

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

-- 
Network Manager doesn't support demand PPP
https://bugs.launchpad.net/bugs/360037
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 340383] Re: dhcpd sends 127.0.1.1 as DNS server

2009-03-29 Thread Wowbagger
I have seen this as well.

In my case what is happening is this:

1) I have one interface which is dynamically assigned via DHCP (upstream to my 
ISP)
2) I have a second interface which is statically assigned (my local LAN 
interface).
3) I have a local name server (for caching and for local name resolution).
4) I have /etc/network/interfaces configured to statically assign the local 
interface, and to set the name server for the local interface to 127.0.0.1, so 
that when %#@()*$ network manager OVERWRITES THE /etc/resolv.conf file I SET 
UP it will at least overwrite it correctly for the local machine.
5) HOWEVER, the same entity that is overwriting /etc/resolv.conf is also 
overwriting /etc/dhcp3/dhcpd.conf  and setting the nameserver to 127.0.0.1, 
which is then served out to the network clients.

FIRST OF ALL: There should be a way I can tell the network manager
scripts I have configured these files - LEAVE THEM THE HELL ALONE!

Second of all, the scripts should be smart enough to detect a
nameserver of 127.0.0.1 and NOT set DHCPD to do that.

-- 
dhcpd sends 127.0.1.1 as DNS server
https://bugs.launchpad.net/bugs/340383
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dhcp3 in ubuntu.

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


[Bug 340383] Re: dhcpd sends 127.0.1.1 as DNS server

2009-03-29 Thread Wowbagger
I have seen this as well.

In my case what is happening is this:

1) I have one interface which is dynamically assigned via DHCP (upstream to my 
ISP)
2) I have a second interface which is statically assigned (my local LAN 
interface).
3) I have a local name server (for caching and for local name resolution).
4) I have /etc/network/interfaces configured to statically assign the local 
interface, and to set the name server for the local interface to 127.0.0.1, so 
that when %#@()*$ network manager OVERWRITES THE /etc/resolv.conf file I SET 
UP it will at least overwrite it correctly for the local machine.
5) HOWEVER, the same entity that is overwriting /etc/resolv.conf is also 
overwriting /etc/dhcp3/dhcpd.conf  and setting the nameserver to 127.0.0.1, 
which is then served out to the network clients.

FIRST OF ALL: There should be a way I can tell the network manager
scripts I have configured these files - LEAVE THEM THE HELL ALONE!

Second of all, the scripts should be smart enough to detect a
nameserver of 127.0.0.1 and NOT set DHCPD to do that.

-- 
dhcpd sends 127.0.1.1 as DNS server
https://bugs.launchpad.net/bugs/340383
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 116095] Re: pppd ip-up.d scripts not executing

2009-03-29 Thread Wowbagger
This problem is most definitely occurring in 8.10 - I am seeing it on a
system I administer.


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

-- 
pppd ip-up.d scripts not executing
https://bugs.launchpad.net/bugs/116095
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 346356] Re: gq segfaults on 64 bit machine

2009-03-24 Thread Wowbagger
Just a suggestion: it might be nice if those repos were listed (but
commented out) in the default sources.list file, so that folks could
find them as needed.

Given that, here's the updated stack trace:

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x7fd8f4167770 (LWP 1937)]
0x7fd8f0d1d7b0 in strlen () from /lib/libc.so.6
(gdb) bt
#0  0x7fd8f0d1d7b0 in strlen () from /lib/libc.so.6
#1  0x7fd8f0ce647e in vfprintf () from /lib/libc.so.6
#2  0x7fd8f0d97d18 in __vsnprintf_chk () from /lib/libc.so.6
#3  0x0041b347 in error_push_production_v (context=2, 
fmt=0x44f554 Additional error: %s, ap=0x7c198930) at errorchain.c:99
#4  0x0041b50e in error_push_debug (file=0x44f52d errorchain.c, 
line=170, context=2, fmt=0x44f554 Additional error: %s)
at errorchain.c:153
#5  0x0041b59a in push_ldap_addl_error (ld=value optimized out, 
context=2) at errorchain.c:170
#6  0x00447acb in do_ldap_connect (ld_out=0x7c198b10, 
server=0xda9040, open_context=2, flags=value optimized out) at util.c:300
#7  0x00447cfd in open_connection_ex (open_context=2, server=0xda9040, 
ldap_errno=0x0) at util.c:622
#8  0x00421f20 in server_browse_entry_selected (be=0xf97520, 
error_context=2, ctree=0xd951f0, node=0xf96ba0, tab=0xf6ea90)
at gq-browser-node-server.c:138
#9  0x00425f32 in tree_row_selected (ctree=0xd951f0, node=0xf96ba0, 
column=value optimized out, tab=0xf6ea90) at gq-tab-browse.c:271
#10 0x7fd8f22fe25d in IA__g_closure_invoke (closure=0xf96e50, 
return_value=0x0, n_param_values=3, param_values=0xf9c6d0, 
invocation_hint=0x7c198e80)
at /build/buildd/glib2.0-2.18.2/gobject/gclosure.c:767
---Type return to continue, or q return to quit---
#11 0x7fd8f2313f5d in signal_emit_unlocked_R (node=0xf94df0, detail=0, 
instance=0xd951f0, emission_return=0x0, instance_and_params=0xf9c6d0)
at /build/buildd/glib2.0-2.18.2/gobject/gsignal.c:3244
#12 0x7fd8f2315608 in IA__g_signal_emit_valist (instance=0xd951f0, 
signal_id=value optimized out, detail=0, var_args=0x7c199060)
at /build/buildd/glib2.0-2.18.2/gobject/gsignal.c:2977
#13 0x7fd8f37fff55 in IA__gtk_signal_emit (object=0xd951f0, signal_id=194)
at /build/buildd/gtk+2.0-2.14.4/gtk/gtksignal.c:360
#14 0x7fd8f22fe25d in IA__g_closure_invoke (closure=0xf88f30, 
return_value=0x0, n_param_values=4, param_values=0xf94700, 
invocation_hint=0x7c199290)
at /build/buildd/glib2.0-2.18.2/gobject/gclosure.c:767
#15 0x7fd8f2313878 in signal_emit_unlocked_R (node=0xf88fa0, detail=0, 
instance=0xd951f0, emission_return=0x0, instance_and_params=0xf94700)
at /build/buildd/glib2.0-2.18.2/gobject/gsignal.c:3174
#16 0x7fd8f2315608 in IA__g_signal_emit_valist (instance=0xd951f0, 
signal_id=value optimized out, detail=0, var_args=0x7c199470)
at /build/buildd/glib2.0-2.18.2/gobject/gsignal.c:2977
#17 0x7fd8f37fff55 in IA__gtk_signal_emit (object=0xd951f0, signal_id=172)
at /build/buildd/gtk+2.0-2.14.4/gtk/gtksignal.c:360
#18 0x7fd8f37dc1d5 in gtk_clist_button_press (widget=0xd951f0, 
event=0xdb1a60) at /build/buildd/gtk+2.0-2.14.4/gtk/gtkclist.c:4977
#19 0x7fd8f37e71d9 in gtk_ctree_button_press (widget=0xd951f0, 
---Type return to continue, or q return to quit---
event=0xdb1a60) at /build/buildd/gtk+2.0-2.14.4/gtk/gtkctree.c:840
#20 0x7fd8f369c888 in _gtk_marshal_BOOLEAN__BOXED (closure=0xda5ed0, 
return_value=0x7c1997a0, n_param_values=value optimized out, 
param_values=0xf9f430, invocation_hint=value optimized out, 
marshal_data=0x7fd8f37e7110)
at /build/buildd/gtk+2.0-2.14.4/gtk/gtkmarshalers.c:84
#21 0x7fd8f22fe25d in IA__g_closure_invoke (closure=0xda5ed0, 
return_value=0x7c1997a0, n_param_values=2, param_values=0xf9f430, 
invocation_hint=0x7c199760)
at /build/buildd/glib2.0-2.18.2/gobject/gclosure.c:767
#22 0x7fd8f2313c3b in signal_emit_unlocked_R (node=0xdac840, detail=0, 
instance=0xd951f0, emission_return=0x7c1998e0, 
instance_and_params=0xf9f430)
at /build/buildd/glib2.0-2.18.2/gobject/gsignal.c:3282
#23 0x7fd8f231548a in IA__g_signal_emit_valist (instance=0xd951f0, 
signal_id=value optimized out, detail=0, var_args=0x7c199940)
at /build/buildd/glib2.0-2.18.2/gobject/gsignal.c:2987
#24 0x7fd8f2315b33 in IA__g_signal_emit (instance=0x1, signal_id=16529488, 
detail=4229532024) at /build/buildd/glib2.0-2.18.2/gobject/gsignal.c:3034
#25 0x7fd8f379f6be in gtk_widget_event_internal (widget=0xd951f0, 
event=0xdb1a60) at /build/buildd/gtk+2.0-2.14.4/gtk/gtkwidget.c:4745
#26 0x7fd8f36951f3 in IA__gtk_propagate_event (widget=0xd951f0, 
event=0xdb1a60) at /build/buildd/gtk+2.0-2.14.4/gtk/gtkmain.c:2391
---Type return to continue, or q return to quit---
#27 0x7fd8f3696313 in IA__gtk_main_do_event (event=0xdb1a60)
at 

[Bug 346356] Re: gq segfaults on 64 bit machine

2009-03-23 Thread Wowbagger
Well, there ARE no debug packages for gq itself on the servers. I have
installed the debug packages for gtk, but the stack trace isn't any more
detailed.

I do have an additional piece of information: the segfault only happens
when the attempt to browse the server would fail due to a lack of
authentication

-- 
gq segfaults on 64 bit machine
https://bugs.launchpad.net/bugs/346356
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 347709] [NEW] gq won't use stored password for binding

2009-03-23 Thread Wowbagger
Public bug reported:

Binary package hint: gq

gq won't use a stored password to bind to a server which requires
binding.

Steps to reproduce:
1) Set up an LDAP server with one or more items which require a simple 
authentication bind to be accessed.
2) Set up GQ to access that server. Set the server binding in 
File-Preferences-Servers-Edit-server-Details-Bind DN and password (simple 
authentication).
3) Browse the items that require the bind.
4) Quit GQ.
5) Restart GQ.
6) Attempt to browse the same items as #3 above
Expected results: Items are visible.
Actual results: GQ errors: Server is unwilling to do an unauthenticated bind.
7) Quit GQ
8) Restart GQ
9) File-Preferences-Servers-Edit-server-Details - verify server bind and 
password are set.
10)  Attempt to browse the same items as #3 above
Expected results: Items are visible.
Actual results: As expected.

NOTE: all you did was VIEW the settings on the server in step 9 - NOT
set them. Yet step 10 succeeds where step 6 fails.

Description:Ubuntu 8.10
Release:8.10
ii  gq 1.2.1-2build1  GTK-based LDAP client

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

-- 
gq won't use stored password for binding
https://bugs.launchpad.net/bugs/347709
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 346352] [NEW] folders.db gets out of sync with mail server

2009-03-21 Thread Wowbagger
Public bug reported:

Binary package hint: evolution

Evolution stores local information about IMAP server directories in
~/.evolution/mail/imap/server name/folders.db

This file will frequently get corrupted and out of sync with the real
number of messages in the folders on the server. Doing a Send/Receive
does NOT correct the problem, nor does actually viewing the contents of
the folder - e.g. the folder count will show 2 unread messages, when
opening the folder shows no messages at all, and even after opening the
folder the count will show 2 unread messages.

Again: neither expunging the directory, closing and restarting
Evolution, nor doing a send and receive will clear the erroneous counts.

Shutting down Evolution, deleting the folders.db file, and restarting
Evolution will clear the problem.

NOTE: Unlike some of the other bug reports, no error messages are
presented to the user in this case.

Steps to reproduce:
Given a working IMAP setup with Evolution, update all folders, then kill 
evolution (e.g. killall -KILL evolution).

Expected results:
Upon restart Evolution should rebuild the counts in all the folders.

Actual results
Evolution shows bogus counts on many (but not all) folders.

Reproducibility: High, if not every time.

Description:Ubuntu 8.10
Release:8.10

Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name   VersionDescription
+++-==-==-
ii  evolution  2.24.3-0ubuntu groupware suite with mail client and organiz
ii  evolution-comm 2.24.3-0ubuntu architecture independent files for Evolution
ii  evolution-data 2.24.3-0ubuntu evolution database backend server
ii  evolution-data 2.24.3-0ubuntu architecture independent files for Evolution
un  evolution-data none (no description available)
un  evolution-data none (no description available)
ii  evolution-dbg  2.24.3-0ubuntu debugging symbols for Evolution
pn  evolution-exch none (no description available)
un  evolution-exch none (no description available)
ii  evolution-plug 2.24.3-0ubuntu standard plugins for Evolution
un  evolution-plug none (no description available)
ii  evolution-webc 2.24.0-0ubuntu webcal: URL handler for GNOME and Evolution

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

-- 
folders.db gets out of sync with mail server
https://bugs.launchpad.net/bugs/346352
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 346356] [NEW] gq segfaults on 64 bit machine

2009-03-21 Thread Wowbagger
Public bug reported:

Binary package hint: gq

Description:Ubuntu 8.10
Release:8.10

ii  gq 1.2.1-2build1  GTK-based LDAP client

Steps t o reproduce.
Launch gq
Select Browse
Select server

Expected results
GQ should show the server data

Actual results
GQ crashes

Reproducibility:
every time

Additional information
 gdb `which gq`
GNU gdb 6.8-debian
Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show copying
and show warranty for details.
This GDB was configured as x86_64-linux-gnu...
(no debugging symbols found)
(gdb) run
Starting program: /usr/bin/gq 
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
---Type return to continue, or q return to quit---
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
---Type return to continue, or q return to quit---
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
[Thread debugging using libthread_db enabled]
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
[New Thread 0x7fb542c0 (LWP 5278)]
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x7fb542c0 (LWP 5278)]
0x7fb53f82d7b0 in strlen () from /lib/libc.so.6
(gdb) bt
#0  0x7fb53f82d7b0 in strlen () from /lib/libc.so.6
#1  0x7fb53f7f647e in vfprintf () from /lib/libc.so.6
#2  0x7fb53f8a7d18 in __vsnprintf_chk () from /lib/libc.so.6
#3  0x0041b347 in ?? ()
#4  0x0041b50e in ?? ()
#5  0x0041b59a in ?? ()
#6  0x00447acb in ?? ()
#7  0x00447cfd in ?? ()
#8  0x00421f20 in ?? ()
#9  0x00425f32 in ?? ()
#10 0x7fb540e0e25d in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
#11 0x7fb540e23f5d in ?? () from /usr/lib/libgobject-2.0.so.0
#12 0x7fb540e25608 in g_signal_emit_valist ()
   from /usr/lib/libgobject-2.0.so.0
#13 0x7fb54230ff55 in gtk_signal_emit () from /usr/lib/libgtk-x11-2.0.so.0
#14 0x7fb540e0e25d in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
#15 0x7fb540e23878 in ?? () from /usr/lib/libgobject-2.0.so.0
#16 0x7fb540e25608 in g_signal_emit_valist ()
   from /usr/lib/libgobject-2.0.so.0
#17 0x7fb54230ff55 in gtk_signal_emit () from /usr/lib/libgtk-x11-2.0.so.0
#18 0x7fb5422ec1d5 in ?? () from /usr/lib/libgtk-x11-2.0.so.0
#19 0x7fb5422f71d9 in ?? () from /usr/lib/libgtk-x11-2.0.so.0
#20 0x7fb5421ac888 in ?? () from /usr/lib/libgtk-x11-2.0.so.0
---Type return to continue, or q return to quit---
#21 0x7fb540e0e25d in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
#22 0x7fb540e23c3b in ?? () from /usr/lib/libgobject-2.0.so.0
#23 0x7fb540e2548a in g_signal_emit_valist ()
   from /usr/lib/libgobject-2.0.so.0
#24 0x7fb540e25b33 in g_signal_emit () from /usr/lib/libgobject-2.0.so.0
#25 0x7fb5422af6be in ?? () from /usr/lib/libgtk-x11-2.0.so.0
#26 0x7fb5421a51f3 in gtk_propagate_event ()
   from /usr/lib/libgtk-x11-2.0.so.0
#27 0x7fb5421a6313 in gtk_main_do_event ()
   from /usr/lib/libgtk-x11-2.0.so.0
#28 0x7fb541e2909c in ?? () from /usr/lib/libgdk-x11-2.0.so.0
#29 0x7fb54076dd5b in g_main_context_dispatch ()
   from /usr/lib/libglib-2.0.so.0
#30 0x7fb54077152d in ?? () from /usr/lib/libglib-2.0.so.0
#31 

[Bug 344796] [NEW] Remote printers showing up twice in local printer menu

2009-03-18 Thread Wowbagger
Public bug reported:

Binary package hint: cups

Given:
A workstation running Intrepid
A server running Intrepid, with 4 shared printers.

The workstation is showing all printers shared from the server twice.
The first time the name shown in e.g. system-config-printers is just the
name of the printer (e.g. Lexmark), but the printer's device file is
file:/dev/null.

The second printer shows the fully qualified name of the printer (e.g.
lexm...@server.example.com) with the correct device node (e.g.
ipp://server.example.com:631/printers/Lexmark).

Printing to the first device (which, BTW, is the one that seems to
always be selected) doesn't work (indeed, the job hangs forever until
canceled).

Printing to the second device works.

These printers are NOT in the workstation's local configuration files.

Versions:

Server: 
cat /etc/lsb-release 
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=8.10
DISTRIB_CODENAME=intrepid
DISTRIB_DESCRIPTION=Ubuntu 8.10
dpkg -l cups
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name   VersionDescription
+++-==-==-
ii  cups   1.3.9-2ubuntu8 Common UNIX Printing System(tm) - server

Workstation:
cat /etc/lsb-release 
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=8.10
DISTRIB_CODENAME=intrepid
DISTRIB_DESCRIPTION=Ubuntu 8.10
dpkg -l cups
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name   VersionDescription
+++-==-==-
ii  cups   1.3.9-2ubuntu8 Common UNIX Printing System(tm) - server

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

-- 
Remote printers showing up twice in local printer menu
https://bugs.launchpad.net/bugs/344796
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 335517] [NEW] Entity 'legal' not defined

2009-02-27 Thread Wowbagger
Public bug reported:

During the execution of /etc/cron.monthly/scrollkeeper, I am getting
the following errors:

I/O warning : failed to load external entity
/usr/share/gnome/help/gnobots2/da/legal.xml
/usr/share/gnome/help/gnobots2/da/gnobots2.xml:26: parser error : Failure to 
process
entity legal
legal;
   ^
Per bug #277794, I have rarian-compat installed, and I am still getting these 
errors.

Description:Ubuntu 8.10
Release:8.10 

2.6.27-11-generic #1 SMP Thu Jan 29 19:28:32 UTC 2009 x86_64 GNU/Linux


rarian-compat:
  Installed: 0.8.1-1ubuntu2
  Candidate: 0.8.1-1ubuntu2
  Version table:
 *** 0.8.1-1ubuntu2 0
500 http://us.archive.ubuntu.com intrepid/main Packages
100 /var/lib/dpkg/status

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

-- 
 Entity 'legal' not defined
https://bugs.launchpad.net/bugs/335517
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 139317] Re: USB printer not re-enabled when it is turned on

2009-01-04 Thread Wowbagger
This is NOT fixed in Intrepid: I have 2 HP printers on USB (one laser
printer, one ink jet), and in both cases if the printer is turned off
when CUPS starts, the printer is marked Disabled and is not re-enabled
when the printer is turned on.

-- 
USB printer not re-enabled when it is turned on
https://bugs.launchpad.net/bugs/139317
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 178558] Re: Firefox 3.0 makes everything annoyingly huge

2008-03-10 Thread Wowbagger
You cannot scale images except by 2, 4, etc.

That is not correct, as a simple look at The Gimp/Eye of
Gnome/gThumb/etc. will show. You might make the argument that you
cannot scale images *quickly* except for integer scaling, but that is
really not an issue save for very old machines (which are unlikely to be
running high DPI displays) or for animated images (but there you can
scale the individual frames once then just loop them).

It isn't even correct to say Firefox lacks the ability to scale images
by a non-integer amount, as it *HAS* to do that if an image's native
size does not match what the HTML IMG tag specifies.

-- 
Firefox 3.0 makes everything annoyingly huge
https://bugs.launchpad.net/bugs/178558
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 178558] Re: Firefox 3.0 makes everything annoyingly huge

2008-03-01 Thread Wowbagger
A few more data points:

I am having problems with images: many of them appear as black
rectangles. Scaling them down (using the Image zoom extension) to what
should be the correct size causes them to be visible. As they are scaled
down, the actual image content moves into the black rectangle from the
bottom - as though the image has an offset that is being scaled as the
image is scaled.

-- 
Firefox 3.0 makes everything annoyingly huge
https://bugs.launchpad.net/bugs/178558
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 192138] Re: dom-inspector doesn't work with ff beta3

2008-02-16 Thread Wowbagger
I see this as well. I then tried the following:

1) Removed the DOM inspector from within Synaptic.
2) edited extensions.rdf and removed the entry for DOM inspectors
3) Started FF, confirmed that DOM inspector was no longer listed.
4) Shut down FF
5) Installed DOM inspector via Synaptic
6) Started FF.

At this point, DOM inspector does NOT show up in the extensions list,
nor does it launch with any combination of shift and alt + ctrl-I.

Looking at the installed file list, nothing is installed into any of the 
Firefox directories, only the Xul_runner directories. Could it be that
FF 3.03b is NOT looking in the Xul_runner directories?

-- 
dom-inspector doesn't work with ff beta3
https://bugs.launchpad.net/bugs/192138
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 189911] Re: Gnome zeroconf applet not correctly configured to open VNC sessions

2008-02-10 Thread Wowbagger
Step 2: select VNC server

** Attachment added: 2.png
   http://launchpadlibrarian.net/11859424/2.png

-- 
Gnome zeroconf applet not correctly configured to open VNC sessions
https://bugs.launchpad.net/bugs/189911
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 189911] Re: Gnome zeroconf applet not correctly configured to open VNC sessions

2008-02-10 Thread Wowbagger
Step by step reproduction:
Step 1: Select zeroconf applet.


** Attachment added: 1.png
   http://launchpadlibrarian.net/11859420/1.png

-- 
Gnome zeroconf applet not correctly configured to open VNC sessions
https://bugs.launchpad.net/bugs/189911
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 189911] Re: Gnome zeroconf applet not correctly configured to open VNC sessions

2008-02-10 Thread Wowbagger
Step 3: error

** Attachment added: 3.png
   http://launchpadlibrarian.net/11859432/3.png

-- 
Gnome zeroconf applet not correctly configured to open VNC sessions
https://bugs.launchpad.net/bugs/189911
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 189911] [NEW] Gnome zeroconf applet not correctly configured to open VNC sessions

2008-02-07 Thread Wowbagger
Public bug reported:

Binary package hint: gnome-applets

Given:
1) a workstation on the local network which is advertising a VNC session via 
Zeroconf
2) A second workstation on the local network running Gnome and the Zeroconf 
applet

Selecting the first workstation's exported VNC session in the applet of
the second workstation does not correctly launch vncview - instead the
following error message appears.

VNC Viewer Free Edition 4.1.1 for X - built Sep 10 2007 17:17:04
Copyright (C) 2002-2005 RealVNC Ltd.
See http://www.realvnc.com for information on VNC.

usage: xvncviewer [parameters] [host:displayNum] [parameters]
   xvncviewer [parameters] -listen [port] [parameters]

(rest of help message omitted).

Analysis:
It looks like the vnc program is NOT being invoked with any parameters.

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

-- 
Gnome zeroconf applet not correctly configured to open VNC sessions
https://bugs.launchpad.net/bugs/189911
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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