[Bug 1681138] Re: silent file corruption with cp -ar file transfers to USB

2017-04-08 Thread Pádraig Brady
What's the nature of the corruption? For example is there too little data? How do you mean "flush of the write buffer"? 3 seconds sounds way too short to actually write the data. I presume you're unmounting the device before ejecting it? Note cp is just doing read/write so unlikely to be the

[Bug 1678262] Re: wish: config list of "preferred dirs" to control select

2017-03-31 Thread Pádraig Brady
** Bug watch added: github.com/pixelb/fslint/issues #24 http://github.com/pixelb/fslint/issues/24 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1678262 Title: wish: config list of "preferred

Re: [Bug 1678262] [NEW] wish: config list of "preferred dirs" to control select

2017-03-31 Thread Pádraig Brady
On 31/03/17 10:19, Rufus Laggren wrote: > Public bug reported: > > When dealing with 100k++ number of files it would GREATLY, HUGELY help > if one could build, on the fly, a list of "preferred dirs". When > activated (various ways possible) the "preferred dirs" feature would, > when a "preferred

[Bug 1345605] Re: error when searching bad symlinks

2017-01-30 Thread Pádraig Brady
That would be https://github.com/pixelb/fslint/commit/77bb8d455 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1345605 Title: error when searching bad symlinks To manage notifications about this

[Bug 1620139] Re: factor buffers output when run interactively

2016-09-07 Thread Pádraig Brady
Fixed _upstream_ with http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=v8.25-64-g6643842 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1620139 Title: factor buffers output when run

[Bug 1620139] Re: factor buffers output when run interactively

2016-09-05 Thread Pádraig Brady
Yes that operation was changed in 8.25 to ensure atomic output, thus allowing one to run multiple factor processes in parallel and collate the output. I'll look at disabling this internal buffering if the output is line buffered (which it will be if outputting to a terminal, or if stdbuf -oL is

[Bug 1553353] Re: tail'ing a file in a script session hangs

2016-03-04 Thread Pádraig Brady
Reproduced with script 2.27.1 which spins in this case continually doing: poll([{fd=4, events=POLLIN}], 1, 10)= 1 ([{fd=4, revents=POLLIN}]) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1553353

[Bug 1498973] Re: sort fails to order correctly on CSV files

2015-09-24 Thread Pádraig Brady
When comparing the full line it gets complicated as certain punctuation chars are ignored in some locales. Note also the --debug option to indicate the extent of the matches. ** Changed in: coreutils (Ubuntu) Status: New => Invalid -- You received this bug notification because you are

[Bug 1498973] Re: sort fails to order correctly on CSV files

2015-09-23 Thread Pádraig Brady
You probably want -k2,2 to restrict the comparison to just that field. What's the output from `locale` as a matter of interest -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1498973 Title: sort

[Bug 1496144] Re: Feature Request: enhance "select using wildcard" for directory match

2015-09-16 Thread Pádraig Brady
That's supported already. Just ensure that you start your wildcard with / For example to select everything in /usr/ use /usr/* ** Changed in: fslint (Ubuntu) Status: New => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to

Re: [Bug 1489473] [NEW] invoking fslint should give a hint to fslint-gui or fslint should be a link to it

2015-08-27 Thread Pádraig Brady
On 27/08/15 14:54, Karl-Philipp Richter wrote: Public bug reported: invoking `fslint` in `gnome-terminal` prints Der Befehl »fslint« wurde nicht gefunden, meinten Sie vielleicht: Befehl »nslint« aus dem Paket »nslint« (universe) Befehl »ftlint« aus dem Paket

[Bug 1385295] Re: use_syslog=True does not log to syslog via /dev/log anymore

2015-07-16 Thread Pádraig Brady
Fix proposed for nova Juno stable https://review.openstack.org/202573 ** Changed in: nova (Ubuntu) Status: New = In Progress -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1385295 Title:

[Bug 1385295] Re: use_syslog=True does not log to syslog via /dev/log anymore

2015-07-16 Thread Pádraig Brady
Fix proposed for nova Juno stable https://review.openstack.org/202573 ** Changed in: nova (Ubuntu) Status: New = In Progress -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to nova in Ubuntu.

[Bug 1474519] Re: realpath fails with inexplicable error message Not a directory

2015-07-15 Thread Pádraig Brady
http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=v8.24-6-g0b0d38b ** Also affects: coreutils Importance: Undecided Status: New ** Changed in: coreutils Status: New = Fix Released ** Changed in: coreutils (Ubuntu) Status: Invalid = Fix Committed -- You

[Bug 1474519] Re: realpath fails with inexplicable error message Not a directory

2015-07-15 Thread Pádraig Brady
You need the -m option to not pass the 'a' component down where it will be interpreted as a directory ** Changed in: coreutils (Ubuntu) Status: New = Invalid ** Changed in: coreutils (Ubuntu) Assignee: (unassigned) = Pádraig Brady (p-draigbrady) -- You received this bug

[Bug 1453009] Re: add option to get the md5 checksum only

2015-05-08 Thread Pádraig Brady
It was discussed at http://lists.gnu.org/archive/html/coreutils/2014-04/msg00025.html and thought simple enough already by doing: md5sum the_file | cut -b1-32 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 1450179] Re: manpage of cut should explain how to read from stdin

2015-04-30 Thread Pádraig Brady
It is described in the man page, though not at a standard or appropriate location. I'll fix this upstream ** Changed in: coreutils (Ubuntu) Status: New = In Progress ** Changed in: coreutils (Ubuntu) Assignee: (unassigned) = Pádraig Brady (p-draigbrady) -- You received this bug

[Bug 1450179] Re: manpage of cut should explain how to read from stdin

2015-04-30 Thread Pádraig Brady
Fixed upstream with http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=v8.23-182-ge981643 I don't know how to close this bug as fixed upstream? ** Changed in: coreutils (Ubuntu) Assignee: Pádraig Brady (p-draigbrady) = (unassigned) -- You received this bug notification because

[Bug 1345605] Re: error when searching bad symlinks

2014-12-19 Thread Pádraig Brady
https://code.google.com/p/fslint/source/detail?r=293 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1345605 Title: error when searching bad symlinks To manage notifications about this bug go to:

[Bug 1021375] Re: Nautilus says the USB stick is read only when it is not

2014-11-26 Thread Pádraig Brady
I wonder is this related to traversing symlinks to the mount point? https://bugzilla.redhat.com/show_bug.cgi?id=844713 ** Bug watch added: Red Hat Bugzilla #844713 https://bugzilla.redhat.com/show_bug.cgi?id=844713 -- You received this bug notification because you are a member of Ubuntu

[Bug 1384416] Re: coreutils 'info command' broken

2014-10-23 Thread Pádraig Brady
Downstream debian 8.23 package could rename the coreutils node to avoid that issue. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1384416 Title: coreutils 'info command' broken To manage

[Bug 846628] Re: gnu sort extremely slow in non C locale

2014-07-10 Thread Pádraig Brady
coreutils maintainer here. Honoring locale sorting rules takes lots of extra logic. POSIX and long time behavior dictates that remains the default. Only you know what your data is, so it's up to you to better describe it by passing LC_ALL=C to sort as above. Given that, GNU sort should perform

[Bug 1311895] [NEW] 0.18.3.1 can fail when tracing due to missing files

2014-04-23 Thread Pádraig Brady
Public bug reported: This is fixed in the 0.18.3.2 release. For example when bootstrapping coreutils we get: ./bootstrap: autopoint --force sh: build-aux/git-version-gen: No such file or directory /usr/bin/m4:configure.ac:444: cannot open `m4/cu-progs.m4': \ No such file or

[Bug 1170236] Re: [PATCH] make FSLint launcher (fslint.desktop) easier to find and add Name or Comment lines to translation template (fslint.pot)

2014-02-10 Thread Pádraig Brady
Upstream commit: http://code.google.com/p/fslint/source/detail?r=290 ** Changed in: fslint (Ubuntu) Status: Confirmed = Fix Committed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1170236

[Bug 1183624] Re: Unable to select any path from encrypted drives

2013-05-30 Thread Pádraig Brady
I don't see how this could be an fslint issue. It just uses standard gtk dialogs to select paths, and then just passes those paths off to shell commands. Does it work if you eliminate the gtk dialogs by passing paths under the truecrypt mounts directly on the fslint-gui command line. I.E. does

[Bug 1184488] Re: next boot after using fslint X fails to start

2013-05-27 Thread Pádraig Brady
Did you clean those pictures by deletion? I suspect you selected a dotfile for deletion in error -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1184488 Title: next boot after using fslint X fails to

[Bug 1184488] Re: next boot after using fslint X fails to start

2013-05-27 Thread Pádraig Brady
Well if you wanted to compare dotfiles in 2 dirs you could: diff (ls -1d ~/.* | sort) (ls -1d backup/.* | sort) When fslint runs you can also auto deselect all files in /home/ using the selection functions. Or you could select those to and scan the list to see if fslint has

[Bug 1023755] Re: Precise kernel locks up while dd to /dev/mapper files 1Gb (was: Unable to delete volume)

2012-11-23 Thread Pádraig Brady
** Changed in: cinder Status: In Progress = Invalid ** Changed in: cinder Assignee: Pádraig Brady (p-draigbrady) = (unassigned) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1023755

[Bug 1078232] [NEW] os.waitpid() returns immediately

2012-11-13 Thread Pádraig Brady
Public bug reported: This was noticed in bug #1074257 against openstack-quantum The fix is a trivial one liner: https://bitbucket.org/which_linden/eventlet/pull-request/24/fix-waitpid-returning-0-0-and-add-test/diff The proposed workarounds in quantum seem too invasive, and a simple update to

[Bug 1062314] Re: do_refresh_security_group_rules in nova.virt.firewall is very slow

2012-10-12 Thread Pádraig Brady
To clarify, it's not in 2012.1.3 but will probably be added to the 2012.1.4 branch -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to nova in Ubuntu. https://bugs.launchpad.net/bugs/1062314 Title: do_refresh_security_group_rules in

[Bug 1062314] Re: do_refresh_security_group_rules in nova.virt.firewall is very slow

2012-10-12 Thread Pádraig Brady
To clarify, it's not in 2012.1.3 but will probably be added to the 2012.1.4 branch -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1062314 Title: do_refresh_security_group_rules in nova.virt.firewall

[Bug 1062314] Re: do_refresh_security_group_rules in nova.virt.firewall is very slow

2012-10-11 Thread Pádraig Brady
** Also affects: nova/essex Importance: Undecided Status: New ** Also affects: nova/folsom Importance: Undecided Status: New ** Changed in: nova/essex Milestone: None = 2012.1.3 -- You received this bug notification because you are a member of Ubuntu Server Team, which

[Bug 1062314] Re: do_refresh_security_group_rules in nova.virt.firewall is very slow

2012-10-11 Thread Pádraig Brady
** Also affects: nova/essex Importance: Undecided Status: New ** Also affects: nova/folsom Importance: Undecided Status: New ** Changed in: nova/essex Milestone: None = 2012.1.3 -- You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 1018586] Re: cleanup_file_locks does not remove stale sentinel files

2012-08-08 Thread Pádraig Brady
tl;dr The current code should be correct. old naming = blah-pid new naming = blah.pid That was changed upstream in: http://code.google.com/p/pylockfile/source/detail?r=102 That was released upstream in 0.9.1 But nova overrides lockfile naming since essex-1-2022-geb42e7f The new regexp is correct

[Bug 1018586] Re: cleanup_file_locks does not remove stale sentinel files

2012-07-12 Thread Pádraig Brady
shouldn't you just reopen 785955 and add the comment there? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1018586 Title: cleanup_file_locks does not remove stale sentinel files To manage

[Bug 954545] Re: If I open a file from fslint's display of duplicate file sets the file opens but my trackball buttons are immediately disabled. I have confirmed this on mpgs, wmvs, and jpegs. My poin

2012-03-13 Thread Pádraig Brady
fslint just calls xdg-open on your file. So it seems that has broken? Can you try this from a terminal: xdg-open yourfile.jpg -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/954545 Title: If I open

[Bug 896679] Re: Duplicates who are in fact different

2011-12-01 Thread Pádraig Brady
I immediately asked for info from Yves, but got no response. Note fslint, compares size, then md5sum, then sha1sum -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/896679 Title: Duplicates who are in

[Bug 896679] Re: Duplicates who are in fact different

2011-12-01 Thread Pádraig Brady
So what was in the zip files? Note sxc files are actually zip files, so they probably were copies. Did the zip files have perhaps the following structure? $ unzip '[016563].zip' Archive: [016563].zip extracting: mimetype inflating: content.xml inflating:

[Bug 896679] Re: Duplicates who are in fact different

2011-12-01 Thread Pádraig Brady
A single file in the zip would not concur with my guess. I'd really need to see the zip though -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/896679 Title: Duplicates who are in fact different To

[Bug 739109] Re: Please update fslint: stable upstream version is 2.42

2011-10-07 Thread Pádraig Brady
thanks! -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/739109 Title: Please update fslint: stable upstream version is 2.42 To manage notifications about this bug go to:

[Bug 426929] Re: [i945g] X11 black screen until vnc connection made

2010-11-15 Thread Pádraig Brady
Why was this closed. Because you hope it's fixed? Same issue on Fedora 12: # uname -a Linux 2.6.32.10-90.fc12.i686 #1 SMP Fri Aug 13 11:59:33 IST 2010 i686 i686 i386 GNU/Linux # rpm -qa *intel* xorg-x11-drv-intel-2.9.1-1.fc12.i686 # lspci | grep VGA 00:02.0 VGA compatible controller: Intel

[Bug 621648] Re: fslint should warn before deleting all instances of a file

2010-08-21 Thread Pádraig Brady
That's been implemented since 2.40 (21/07/2009) -- fslint should warn before deleting all instances of a file https://bugs.launchpad.net/bugs/621648 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list

[Bug 401776] Re: screen corruption

2009-07-27 Thread Pádraig Brady
** Changed in: fslint (Ubuntu) Status: New = Invalid -- screen corruption https://bugs.launchpad.net/bugs/401776 You received this bug notification because you are a member of Kubuntu Bugs, which is subscribed to qt-x11-free in ubuntu. -- kubuntu-bugs mailing list

[Bug 401776] Re: screen corruption

2009-07-27 Thread Pádraig Brady
Sorry Rolf. I assumed it was something lower that FSlint when other apps were affected. I can confirm that FSlint is a pygtk app. -- screen corruption https://bugs.launchpad.net/bugs/401776 You received this bug notification because you are a member of Kubuntu Bugs, which is subscribed to

[Bug 294968] Re: Should recurse when searching for empty directories

2009-07-21 Thread Pádraig Brady
Yes Rolf it's easy to delete them but not report empty branches. Anyway the just released 2.40 reports empty branches (the topmost only) -- Should recurse when searching for empty directories https://bugs.launchpad.net/bugs/294968 You received this bug notification because you are a member of

[Bug 221034] Re: merge_hardlinks crashed with ValueError in module()

2009-02-17 Thread Pádraig Brady
This was fixed 5 months ago (in 2.28), but I can't get the update into debian/ubuntu :( The mentoring process is very bad. Anyway you can always get the latest package directly from http://www.pixelbeat.org/fslint/ -- merge_hardlinks crashed with ValueError in module()

[Bug 294968] Re: Should recurse when searching for empty directories

2008-11-07 Thread Pádraig Brady
Good point. Also there is no point reporting all empty dirs in a hierarchy I think, just the topmost. ** Changed in: fslint (Ubuntu) Assignee: (unassigned) = Pádraig Brady (p-draigbrady) Status: New = In Progress -- Should recurse when searching for empty directories https

[Bug 87246] Re: fails on files with names ending in space

2008-10-02 Thread Pádraig Brady
** Changed in: fslint (Ubuntu) Status: In Progress = Fix Released ** Changed in: fslint Status: Fix Committed = Fix Released -- fails on files with names ending in space https://bugs.launchpad.net/bugs/87246 You received this bug notification because you are a member of Ubuntu

[Bug 249435] Re: Search for duplicates fails when an \ is in folder name

2008-07-18 Thread Pádraig Brady
No, current ubuntu version doesn't have that bug, so no point reporting. thanks! ** Changed in: fslint (Ubuntu) Assignee: (unassigned) = Pádraig Brady (p-draigbrady) Status: New = Fix Released -- Search for duplicates fails when an \ is in folder name https://bugs.launchpad.net

[Bug 249435] Re: Search for duplicates fails when an \ is in folder name

2008-07-17 Thread Pádraig Brady
That should be fixed in fslint-2.26 which is in ubuntu intrepid, but you can also install the package from: http://www.pixelbeat.org/fslint/ -- Search for duplicates fails when an \ is in folder name https://bugs.launchpad.net/bugs/249435 You received this bug notification because you are a

[Bug 239087] Re: fslint-gui does not report duplicates with big files list

2008-06-11 Thread Pádraig Brady
Can you try with the latest version 2.26 (which is in debian testing BTW). I fixed up a couple of issues in this area. You can download the ubuntu package from: http://www.pixelbeat.org/fslint/ Note if it does display the duplicate files but also reports errors, I would be interested in seeing

[Bug 239087] Re: fslint-gui does not report duplicates with big files list

2008-06-11 Thread Pádraig Brady
an int argument required error can only happen from printf format interpolation I think. I.E. you've get this error if you do this in python: %d % None There is only 1 possible place in the code I think that that could happen, though I can't see yet how this path could be triggered. To that end

[Bug 239087] Re: fslint-gui does not report duplicates with big files list

2008-06-11 Thread Pádraig Brady
Thanks a million. You're test was very helpful. It shows that there are issues formatting very large numbers using %d. This is in fact a python bug: http://bugs.python.org/issue1742669 I'll push out a work around asap. -- fslint-gui does not report duplicates with big files list

[Bug 239087] Re: fslint-gui does not report duplicates with big files list

2008-06-11 Thread Pádraig Brady
Fix committed upstream: http://code.google.com/p/fslint/source/detail?r=162 ** Changed in: fslint (Ubuntu) Assignee: (unassigned) = Pádraig Brady (p-draigbrady) Status: New = Fix Committed -- fslint-gui does not report duplicates with big files list https://bugs.launchpad.net/bugs

[Bug 237879] Re: fslint includes bash scripts which use /bin/sh

2008-06-06 Thread Pádraig Brady
Sigh. I meant that it's in debian _testing_ -- fslint includes bash scripts which use /bin/sh https://bugs.launchpad.net/bugs/237879 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list

[Bug 237879] Re: fslint includes bash scripts which use /bin/sh

2008-06-06 Thread Pádraig Brady
This was already reported debian bug 446326. This should already be fixed and released in fslint-2.26 which is in debian stable. ** Changed in: fslint (Ubuntu) Assignee: (unassigned) = Pádraig Brady (p-draigbrady) Status: New = Fix Committed -- fslint includes bash scripts which

[Bug 231235] Re: merge_hardlinks crashed with ValueError in module()

2008-05-19 Thread Pádraig Brady
*** This bug is a duplicate of bug 221034 *** https://bugs.launchpad.net/bugs/221034 Fixed upstream with http://code.google.com/p/fslint/source/detail?r=146 -- merge_hardlinks crashed with ValueError in module() https://bugs.launchpad.net/bugs/231235 You received this bug notification

[Bug 231235] Re: merge_hardlinks crashed with ValueError in module()

2008-05-17 Thread Pádraig Brady
*** This bug is a duplicate of bug 221034 *** https://bugs.launchpad.net/bugs/221034 I can't vire bug 221034 ? Anyway this bug has nothing to do with file content. If a file _name_ contains \f \v or \r not as the last character then this exception is thrown. Note on systems without apport,

[Bug 62511] Re: dumps core on SIGQUIT

2007-12-13 Thread Pádraig Brady
So you are saying fedora and debian are wrong in this regard? And you're saying with `ulimit -c 0` the crashdump helper should still be called, even though _by default_ it's a python program. Note the user (script) only has control over the ulimit setting in general, not the system wide kernel

[Bug 87246] Re: fails on files with names ending in space

2007-11-27 Thread Pádraig Brady
There was an issue in FSlint when dealing with filenames with trailing spaces. That has been fixed upstream. I've confirmed on 2.6.23.1-49.fc8 the separate vfat issue, where one can't create a file with a trailing space in the first place. $ touch t touch: setting times of `t ': No such file or

[Bug 87246] Re: fails on files with names ending in space

2007-11-27 Thread Pádraig Brady
I contacted OGAWA Hirofumi the linux VFAT maintainer, who said trailing spaces are not allowed in FAT :) -- fails on files with names ending in space https://bugs.launchpad.net/bugs/87246 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for

[Bug 62511] Re: dumps core on SIGQUIT

2007-11-15 Thread Pádraig Brady
The system wouldn't be cluttered with core files surely if the core_pattern is a pipe? Also I confirmed 2.6.23.1-42.fc8 does not run the pipe when `ulimit -c 0` I'm not sure if SIGQUIT should generate a core, but it's probably mandated in some POSIX spec somewhere. I certainly would be surprised

[Bug 137244] Re: less-pager does not update when window is resized

2007-11-14 Thread Pádraig Brady
same problem on fedora 8 -- less-pager does not update when window is resized https://bugs.launchpad.net/bugs/137244 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

[Bug 151798] Re: [Gutsy] IPW2200 driver 100% CPU usage

2007-11-09 Thread Pádraig Brady
I notice this with ipw2200 on Fedora 7 also. If you unload the ipw2200 module and reload it, the cpu spinning stops. -- [Gutsy] IPW2200 driver 100% CPU usage https://bugs.launchpad.net/bugs/151798 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug

[Bug 67989] Re: IPW2200/0 process hogging CPU cycles

2007-11-09 Thread Pádraig Brady
*** This bug is a duplicate of bug 151798 *** https://bugs.launchpad.net/bugs/151798 ** This bug has been marked a duplicate of bug 151798 [Gutsy] IPW2200 driver 100% CPU usage -- IPW2200/0 process hogging CPU cycles https://bugs.launchpad.net/bugs/67989 You received this bug

[Bug 151798] Re: [Gutsy] IPW2200 driver 100% CPU usage

2007-11-09 Thread Pádraig Brady
Looks like an upstream issue alright. See also: https://bugzilla.novell.com/show_bug.cgi?id=220790 -- [Gutsy] IPW2200 driver 100% CPU usage https://bugs.launchpad.net/bugs/151798 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for Ubuntu. --

[Bug 151604] Re: Maximize window vertically makes the window too large

2007-11-02 Thread Pádraig Brady
** Changed in: metacity (Ubuntu) Status: New = Confirmed -- Maximize window vertically makes the window too large https://bugs.launchpad.net/bugs/151604 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for Ubuntu. -- ubuntu-bugs

[Bug 62511] Re: Apport generates a report on SIGQUIT

2007-10-19 Thread Pádraig Brady
Yes still a problem on gutsy with standard kernel: 2.6.22-14-generic #1 SMP Sun Oct 14 23:05:12 GMT 2007 i686 GNU/Linux -- Apport generates a report on SIGQUIT https://bugs.launchpad.net/bugs/62511 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug

[Bug 73259] Re: hard-to-find or non-existant development meta packages

2007-10-17 Thread Pádraig Brady
I still can't find relevant info in the wiki. Perhaps you could provide a link? Where does one ask for enhancements? -- hard-to-find or non-existant development meta packages https://bugs.launchpad.net/bugs/73259 You received this bug notification because you are a member of Ubuntu Bugs, which

[Bug 151604] maxmize vertically ignores bottom panel

2007-10-11 Thread Pádraig Brady
Public bug reported: Binary package hint: metacity Note compiz (desktop effects) is not on (there are too many bugs to mention with that). Bind a key to maximize vertically. Just after boot it does work, but after a while, windows maximized vertically go the whole way to the bottom of the

[Bug 151604] Re: maxmize vertically ignores bottom panel

2007-10-11 Thread Pádraig Brady
Sorry, I thought I'd get prompted for version info. This is with gutsy tribe 4 I think with no updates. metacity version is 1:2.19.55-0ubuntu1 -- maxmize vertically ignores bottom panel https://bugs.launchpad.net/bugs/151604 You received this bug notification because you are a member of Ubuntu

[Bug 151604] Re: maxmize vertically ignores bottom panel

2007-10-11 Thread Pádraig Brady
I have a single screen. Note maximize and toggle maximize are fine for me. Just maximize vertically exhibits this behaviour. -- maxmize vertically ignores bottom panel https://bugs.launchpad.net/bugs/151604 You received this bug notification because you are a member of Ubuntu Bugs, which is the

[Bug 137244] Re: less-pager does not update when window is resized

2007-10-05 Thread Pádraig Brady
** Changed in: less (Ubuntu) Status: New = Confirmed -- less-pager does not update when window is resized https://bugs.launchpad.net/bugs/137244 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for Ubuntu. -- ubuntu-bugs mailing list

[Bug 73259] Re: hard-to-find or non-existant development meta packages

2007-09-27 Thread Pádraig Brady
Wow that is hard to find! A bug comment should not be the first mention of this I've found after googling for 10 mins. I first tried to `apt-cache search --names-only developer` Then looked in the list of virtual packages at: http://packages.ubuntu.com/gutsy/virtual/ Also one still needs to copy

[Bug 127956] Re: [Sync Request] Please sync fslint 2.22-2 from Debian unstable

2007-09-20 Thread Pádraig Brady
OK fslint-2.24-1 has been released to debian unstable. This fixes the above packaging bug and also ubuntu bug #87246 among other things. -- [Sync Request] Please sync fslint 2.22-2 from Debian unstable https://bugs.launchpad.net/bugs/127956 You received this bug notification because you are a

[Bug 135788] Re: fslint - something missing in gutsy 7.10

2007-09-20 Thread Pádraig Brady
This was due to a mismatch between the glade file and the python loader, and was specific to the reporters system ** Changed in: fslint (Ubuntu) Status: In Progress = Invalid -- fslint - something missing in gutsy 7.10 https://bugs.launchpad.net/bugs/135788 You received this bug

[Bug 127956] Re: [Sync Request] Please sync fslint 2.24-1 from Debian unstable

2007-09-20 Thread Pádraig Brady
subject change -- [Sync Request] Please sync fslint 2.22-2 from Debian unstable https://bugs.launchpad.net/bugs/127956 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

[Bug 127956] Re: [Sync Request] Please sync fslint 2.22-2 from Debian unstable

2007-09-20 Thread Pádraig Brady
** Changed in: fslint (Ubuntu) Status: Incomplete = New -- [Sync Request] Please sync fslint 2.22-2 from Debian unstable https://bugs.launchpad.net/bugs/127956 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for Ubuntu. -- ubuntu-bugs

[Bug 127956] Re: [Sync Request] Please sync fslint 2.24-1 from Debian unstable

2007-09-20 Thread Pádraig Brady
Hmm I realise I've missed the upstream version freeze, so I'm not sure if it's possible to release for gutsy. If you need reasons, the details of all changes between 2.16 2.24 are here: http://fslint.googlecode.com/svn/trunk/doc/NEWS cheers, Pádraig. -- [Sync Request] Please sync fslint 2.22-2

[Bug 141225] [Sync Request] Please sync fslint 2.24-1 from Debian unstable

2007-09-20 Thread Pádraig Brady
Public bug reported: Binary package hint: fslint Ubuntu is still using 2.16. 2.24 has just been released with many improvments and fixes ** Affects: fslint (Ubuntu) Importance: Undecided Status: New -- [Sync Request] Please sync fslint 2.24-1 from Debian unstable

[Bug 141225] Re: [Sync Request] Please sync fslint 2.24-1 from Debian unstable

2007-09-20 Thread Pádraig Brady
** Attachment added: diffstat http://launchpadlibrarian.net/9412159/diffstat.txt -- [Sync Request] Please sync fslint 2.24-1 from Debian unstable https://bugs.launchpad.net/bugs/141225 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for

[Bug 141225] Re: [Sync Request] Please sync fslint 2.24-1 from Debian unstable

2007-09-20 Thread Pádraig Brady
** Attachment added: NEWS http://launchpadlibrarian.net/9412155/changelog.diff -- [Sync Request] Please sync fslint 2.24-1 from Debian unstable https://bugs.launchpad.net/bugs/141225 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for

[Bug 141225] Re: [Sync Request] Please sync fslint 2.24-1 from Debian unstable

2007-09-20 Thread Pádraig Brady
** Attachment added: buildlog http://launchpadlibrarian.net/9412160/build.log -- [Sync Request] Please sync fslint 2.24-1 from Debian unstable https://bugs.launchpad.net/bugs/141225 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for

[Bug 135788] Re: fslint - something missing in gutsy 7.10

2007-08-30 Thread Pádraig Brady
** Changed in: fslint (Ubuntu) Assignee: (unassigned) = Pádraig Brady Status: New = In Progress -- fslint - something missing in gutsy 7.10 https://bugs.launchpad.net/bugs/135788 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact

[Bug 62511] Re: Apport generates a report on SIGQUIT

2007-08-01 Thread Pádraig Brady
** Also affects: linux-source-2.6.20 (Ubuntu) Importance: Undecided Status: New -- Apport generates a report on SIGQUIT https://bugs.launchpad.net/bugs/62511 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for Ubuntu. --

[Bug 62511] Re: Apport generates a report on SIGQUIT

2007-08-01 Thread Pádraig Brady
wrt the kernel ignoring the crashdump helper for SIGQUIT, it should be ignoring anyway as `ulimit -c 0` was set! I.E. there seems to be an ubuntu specific bug here in that the apport helper (or whatever is in /proc/sys/kernel/core_pattern) is called even when one does `ulimit -c 0` I tested

[Bug 62511] Re: Apport generates a report on SIGQUIT

2007-08-01 Thread Pádraig Brady
On a debian sarge system with updated kernel to 2.6.20-1 I see the expected good behaviour also: [EMAIL PROTECTED] echo |/bin/true /proc/sys/kernel/core_pattern [EMAIL PROTECTED] ulimit -c 0 [EMAIL PROTECTED] cat #hit Ctrl-\ now Quit -- Apport generates a report on SIGQUIT

[Bug 87246] Re: fails on files with names ending in space

2007-07-24 Thread Pádraig Brady
** Also affects: fslint (upstream) Importance: Undecided Status: New ** Changed in: fslint (upstream) Importance: Undecided = Medium Assignee: (unassigned) = Pádraig Brady Status: New = Fix Committed ** Changed in: fslint (Ubuntu) Assignee: (unassigned) = Pádraig

[Bug 127956] [Sync Request] Please sync fslint 2.22-2 from Debian unstable

2007-07-24 Thread Pádraig Brady
Public bug reported: Binary package hint: fslint It would be great to update feisty and gutsy from version 2.16 ** Affects: fslint (Ubuntu) Importance: Undecided Status: New -- [Sync Request] Please sync fslint 2.22-2 from Debian unstable https://bugs.launchpad.net/bugs/127956