[Bug 1041014] [NEW] Patch to re-enable full screen mode

2012-08-23 Thread Nathan Valentine
Public bug reported:

About 9 years ago I submitted a patch to Debian to enable full screen
mode in Etherape. The code lives on in menu.c and menu.h but somehow the
glade code got dropped so that code has been dead all this time. I just
re-added the XML to glade to re-activate the dead code.

Patch against precise is attached.

** Affects: etherape (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/1041014

Title:
  Patch to re-enable full screen mode

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

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


[Bug 1041014] Re: Patch to re-enable full screen mode

2012-08-23 Thread Nathan Valentine
** Patch added: patch to etherape.glade for full screen
   
https://bugs.launchpad.net/bugs/1041014/+attachment/3274552/+files/fullscreen.diff

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

Title:
  Patch to re-enable full screen mode

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

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


[Bug 370173] Re: Ubuntu 9.04 laptop overheat and shutdown

2009-06-04 Thread Nathan Valentine
Just to confuse things even more...

Since I created the original bug report I've not witnessed the behavior
EXCEPT when I have the laptop plugged in w/ battery and connected to a
2nd monitor with Xinerma enabled. I have a feeling that, in that
situation, the temperature increase is probably more due to the video
card working extra hard for dual-monitor rather than any CPU freq
scaling issues.

-- 
Ubuntu 9.04 laptop overheat and shutdown
https://bugs.launchpad.net/bugs/370173
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 361123] Re: Lenovo T61p is running very hot after Jaunty upgrade

2009-05-11 Thread Nathan Valentine
CharleyS,

I didn't specifically do anything to fix the problem but, if memory
serves, it went away after an 'apt-get upgrade' about a week before
Jaunty hit release. I really only realized it had gone away when someone
else posted an update to this bug report.

-- 
Lenovo T61p is running very hot after Jaunty upgrade
https://bugs.launchpad.net/bugs/361123
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 361123] Re: Lenovo T61p is running very hot after Jaunty upgrade

2009-05-10 Thread Nathan Valentine
FWIW, I'm running Jaunty with the latest updates and have not seen this
problem for several weeks.

(I'm the original creator of this bug report.)

-- 
Lenovo T61p is running very hot after Jaunty upgrade
https://bugs.launchpad.net/bugs/361123
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 361123] [NEW] Lenovo T61p is running very hot after Jaunty upgrade

2009-04-14 Thread Nathan Valentine
Public bug reported:

Even when sitting on a hard flat surface that should provide adequate
ventilation, my Lenovo T61p is running very hot. The left side keyboard
is hot to the touch and the underside of the laptop is almost too hot to
touch with a bare hand.

I'm more than willing to assist with debugging this issue but I'm not
sure what information would be most useful to the devs. Please advise
and I will do my best to get the requested information.

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 9.04
NonfreeKernelModules: nvidia
Package: firefox-3.0 3.0.8+nobinonly-0ubuntu3
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: firefox-3.0
Uname: Linux 2.6.28-11-generic i686

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: apport-bug i386

-- 
Lenovo T61p is running very hot after Jaunty upgrade
https://bugs.launchpad.net/bugs/361123
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 361123] Re: Lenovo T61p is running very hot after Jaunty upgrade

2009-04-14 Thread Nathan Valentine

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

** Attachment added: ExtensionSummary.txt
   http://launchpadlibrarian.net/25454976/ExtensionSummary.txt

** Attachment added: pluginreg.dat.txt
   http://launchpadlibrarian.net/25454978/pluginreg.dat.txt

** Attachment added: profiles.ini.txt
   http://launchpadlibrarian.net/25454979/profiles.ini.txt

-- 
Lenovo T61p is running very hot after Jaunty upgrade
https://bugs.launchpad.net/bugs/361123
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 110880] Re: python-newt scripts crash

2008-12-10 Thread Nathan Valentine
I'm able to reproduce this on 32-bit Ibex with the following code lifted
from the tutorial at http://www.wanware.com/tsgdocs/snack.html:

import sys
import getopt

from snack import *

class Usage(Exception):
def __init__(self, msg):
self.msg = msg


def main(argv=None):
if argv is None:
argv = sys.argv
try:
try:
opts, args = getopt.getopt(argv[1:], h, [help])
except getopt.error, msg:
raise Usage(msg)
except Usage, err:
print sys.stderr, err.msg
print sys.stderr, for help use --help
return 2

screen = SnackScreen()

upperleft = Widget()
upperright = Widget()
lowerleft = Widget()
lowerright = Widget()

g = Grid(2,2)
g.setField(upperleft, 0, 0, (0,0,1,1))
g.setField(upperright, 1, 0)
g.setField(lowerleft, 0, 1)
g.setField(lowerright, 1, 1, growx = 1, growy = 1)

screen.gridWrappedWindow(g, This is a snack test)

f = Form()
f.add(g)

result = f.run()

screen.popWindow()
screen.finish()

if __name__ == __main__:
sys.exit(main())

-- 
python-newt scripts crash 
https://bugs.launchpad.net/bugs/110880
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 110880] Re: python-newt scripts crash

2008-12-10 Thread Nathan Valentine
As Roger pointed out to me in a private email, the crash in the code I
posted above is actually for a different problem. Verified via
stacktrace.

-- 
python-newt scripts crash 
https://bugs.launchpad.net/bugs/110880
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 193587] [NEW] gjay segfaults while reading mp3 metadata

2008-02-19 Thread Nathan Valentine
Public bug reported:

Binary package hint: gjay


I have a particular mp3 file that causes gjay to segfault while reading the 
file's metadata, specifically encoding rate, with 100% repro-ability. I've 
attached gdb and valgrind logs of a crash. 

DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=7.10
DISTRIB_CODENAME=gutsy
DISTRIB_DESCRIPTION=Ubuntu 7.10

ii  gjay   0.2.8.3-5
An automatic and learning DJ for xmms

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

-- 
gjay segfaults while reading mp3 metadata
https://bugs.launchpad.net/bugs/193587
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 193587] Re: gjay segfaults while reading mp3 metadata

2008-02-19 Thread Nathan Valentine

** Attachment added: Valgrind logs
   http://launchpadlibrarian.net/12095522/valgrind-gjay.tar.gz

-- 
gjay segfaults while reading mp3 metadata
https://bugs.launchpad.net/bugs/193587
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 193587] Re: gjay segfaults while reading mp3 metadata

2008-02-19 Thread Nathan Valentine

** Attachment added: gdb log
   http://launchpadlibrarian.net/12095523/gdb-gjay.txt

-- 
gjay segfaults while reading mp3 metadata
https://bugs.launchpad.net/bugs/193587
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 110880] Re: python-newt scripts crash

2008-01-08 Thread Nathan Valentine
I was, in fact, finally able to get the crash to go away by recompiling
the package with the patch mentioned above.

-- 
python-newt scripts crash 
https://bugs.launchpad.net/bugs/110880
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 110880] Re: python-newt scripts crash

2008-01-07 Thread Nathan Valentine
I'm also seeing this problem. I tried regenerating the package with the
patch above but I'm still seeing the crashes. It may be that the patch
is effective but isn't being applied due to my rather meager skills with
the Ubuntu package build process.

Is there an ETA on a fix? It seems fairly simple if that patch above is
correct.

Thanks.

-- 
python-newt scripts crash 
https://bugs.launchpad.net/bugs/110880
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 58030] Re: slurpd looks at /etc/ldap/slapd.conf for replication log.

2007-09-03 Thread Nathan Valentine
I'm sorry but I no longer have access to the servers in question. I
would guess that the version of slapd is the same as the version of
slurpd as they came from the same official Ubuntu packages. I think
those servers were running LTS.

-- 
slurpd looks at /etc/ldap/slapd.conf for replication log.
https://bugs.launchpad.net/bugs/58030
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 134094] Persistent naming of devices incremenents eth# name after every reboot.

2007-08-22 Thread Nathan Valentine
Public bug reported:

Binary package hint: udev

After a power outage that caused an unexpected cold restart, eth0 is now
eth# where #  0 and incremented after each reboot. This is 100%
reproducible.

Not sure how to manually fix this but I'm willing to help with
debugging.

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

-- 
Persistent naming of devices incremenents eth# name after every reboot.
https://bugs.launchpad.net/bugs/134094
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 134094] Re: Persistent naming of devices incremenents eth# name after every reboot.

2007-08-22 Thread Nathan Valentine

I don't see another way to mark this bug report as such but the behavior is 
with a gutsy box with the latest packages as of 2007.08.22. 

Thanks.

-- 
Persistent naming of devices incremenents eth# name after every reboot.
https://bugs.launchpad.net/bugs/134094
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 134094] Re: Persistent naming of devices incremenents eth# name after every reboot.

2007-08-22 Thread Nathan Valentine
Turns out that this was a problem with Xen. The host was a virtual host
and Xen was re-assigning the MAC address at each reboot thus triggering
the incremental interface names in udev.

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

-- 
Persistent naming of devices incremenents eth# name after every reboot.
https://bugs.launchpad.net/bugs/134094
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