Re: md5sum lots of files

2006-10-20 Thread Dave Carrigan
md5sum /tmp/source.sums cd /dest/dir find . -type f -print0 | xargs -0 md5sum /tmp/dest.sums diff -u /tmp/source.sums /tmp/dest.sums -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudeog.org PGP.sig Description: This is a digitally signed message part

Re: md5sum lots of files

2006-10-20 Thread Dave Carrigan
-oriented. Instead, you should sort the output: find . -type f -print0 | xargs -0 md5sum | sort -k 2 /tmp/source.sums -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudeog.org PGP.sig Description: This is a digitally signed message part

Re: find by year

2006-10-04 Thread Dave Carrigan
-a ! -newer /tmp/end - -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudeog.org -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (Darwin) iD8DBQFFI76bf1psBSgxx0sRAvyMAKCXpcWlb37WYRsAtw+GtiTf4hpOSwCfVDif kDbRso6N1T0OnLdj5H8ZnbY= =AgJn -END PGP SIGNATURE

Re: OT: Some advice on perl: read byte to hex string

2006-09-20 Thread Dave Carrigan
= sprintf(%02x, ord($c) 0x0f); -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL-Postfix Dave is currently listening to John Doe - She's Not (Forever Hasn't Happened Yet) pgp7is9FeX2un.pgp Description

Re: Flatbed Scanner

2006-06-30 Thread Dave Carrigan
with scanning negatives (although I haven't tried lately, so maybe the scanning software has improved). -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL-Postfix Dave is currently listening to Crash Vegas

Re: repetitive apt-get upgrade

2006-05-30 Thread Dave Carrigan
/bugreport.cgi?bug=366438 -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL-Postfix Dave is currently listening to Jason Ringenberg - Bible And A Gun (All Over Creation) pgpvzFLw0vvYU.pgp

Apt keeps wanting to upgrade mailman

2006-05-08 Thread Dave Carrigan
dependency tree... Done The following packages will be upgraded: mailman 1 upgraded, 0 newly installed, 0 to remove and 1 not upgraded. Inst mailman [2.1.8-1] (0:2.1.8-1 Debian:unstable) Conf mailman (0:2.1.8-1 Debian:unstable) It's getting very annoying. -- Dave Carrigan Seattle, WA, USA [EMAIL

Re: default group ownership of a file

2006-04-07 Thread Dave Carrigan
is nearly identical to the basic su command, but for groups. The id command will tell you what your uid and gid is, and also what groups you are a member of. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL

Re: What filesystems does LVM (lvm2?) support?

2006-02-17 Thread Dave Carrigan
. Reiserfs can grow and shrink, but again it has to be unmounted to do so. All that is mostly from memory so YMMV. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL-Postfix signature.asc Description

Re: virtual machine

2006-01-20 Thread Dave Carrigan
is an a64 with 2G of memory), you will find the performance of the virtual machine to be more than adequate without adversely affecting the performance of the host machine. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS

Re: IMAP Server Requirement

2006-01-19 Thread Dave Carrigan
local user accounts. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL-Postfix Dave is currently listening to Camper Van Beethoven - A. C. Cover (Camper Vantiquities) signature.asc Description

Re: .ape files

2006-01-10 Thread Dave Carrigan
://www.rarewares.org/. I would recommend decoding them and re-encoding them in something that is free. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL-Postfix signature.asc Description: Digital

Re: Why is 2.95 still around?

2005-11-09 Thread Dave Carrigan
legacy source code that requires one of those versions to build, and they aren't yet ready to port that code to a newer compiler. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL-Postfix

Re: Tape Backup advice needed - dump, tar etc.

2005-09-20 Thread Dave Carrigan
about data integrity issues. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL-Postfix signature.asc Description: Digital signature

Re: OT - Unwanted mail

2005-08-08 Thread Dave Carrigan
the archives first. I did a search for ebay and paypal and found dozens of on-topic posts containing those keywords. So blocking emails containing those words would be censoring legitimate debian-user email. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX

Re: Why has find ... -exec rm -i '{}' ';' stopped working?

2005-07-05 Thread Dave Carrigan
On Tue, Jul 05, 2005 at 05:51:07AM -0400, Andrew Schulman wrote: find ... -print0 | xargs -0r rm -i This won't work because rm -i reads for confirmation from stdin and rm has no stdin when it's run via xargs. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ

Re: [OT] splitting files based on keyword

2005-06-22 Thread Dave Carrigan
On Tue, Jun 21, 2005 at 09:57:07PM -0400, kamaraju kusumanchi wrote: Is there any tool which will split the above file and give me three smaller files 1-1-2005.txt, 1-2-2005.txt, 1-3-2005.txt etc., where perl -pe 'open STDOUT, $1.txt if /^date (.*)/' the-big-file -- Dave Carrigan Seattle

Re: Good backup software for Linux

2005-06-20 Thread Dave Carrigan
can back up the snapshot at your leisure without worrying about an inconsistent database. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL signature.asc Description: Digital

Re: Good backup software for Linux

2005-06-20 Thread Dave Carrigan
it that way. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL signature.asc Description: Digital signature

Re: OT: Safe Type (was Re: DVORAK)

2005-06-08 Thread Dave Carrigan
works fine in Windows XP running inside VMWare. If you're very used to hitting your arrow keys and home/end etc., you will find the Safetype not very usable without an external keypad. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl

Re: DVORAK

2005-06-07 Thread Dave Carrigan
transfer to dvorak. In short, change if you want to, but I found the effort much too high for any percieved potential reward. I am happy I switched. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS

Re: DVORAK

2005-06-07 Thread Dave Carrigan
can't type after an hour or two. With a Safetype, I can type all day, but you pretty much have to be a touch typist since you can't see the keys. However, I doubt that dvorak/qwerty makes much of a difference. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ

Re: Where to put the PDA ?

2005-01-03 Thread Dave Carrigan
registered itself as. With udev you can even make it so that it creates custom device files. For my system, I have udev configured to create devices called /dev/palmv, /dev/t3, /dev/t5, /dev/clie, depending on which PDA is currently trying to sync. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED

Re: OT: down with memory protection!

2004-12-03 Thread Dave Carrigan
are not like this. No, what he proved is that you cannot construct a general algorithm that will determine if a program will halt. That is very different. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS

Re: TV Tuner / Sound Card issues

2004-11-30 Thread Dave Carrigan
or something. Anyway, with alsa, in order to make it act as a line-in, I had to switch one of the mixer controls. If I recall correctly, on mine it was the IEC958 In Select control - 0 means use the jack is line in, 1 means use it as line out. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http

Re: TV Tuner / Sound Card issues

2004-11-30 Thread Dave Carrigan
On Mon, Nov 29, 2004 at 02:59:54PM -0600, Chad Davis wrote: Okay, I seem to have gotten it to work through the mic line. Should I let this be? Is Mic really the same as another line in? Don't use the mic in, the sound will suck. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http

Re: devfs vs. udev

2004-11-23 Thread Dave Carrigan
to work properly. - Does hotplug inform udev when a new device connects to the computer? Yes, assuming that you're using the Debian hotplug package. - Does udev make use of devfs? No, udev is designed as a replacement for devfs that doesn't have any kernel-level coupling. -- Dave Carrigan

Re: Will debian grow and stay

2004-11-17 Thread Dave Carrigan
research and leave this mailing list for actually discussing issues to users of Debian. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL signature.asc Description: Digital signature

Re: amd64 build necessary to get nvidia nforce3 mobo working?

2004-11-17 Thread Dave Carrigan
it's worth? I'm running Debian/i386 on a Shuttle SN85G4V2, which is a nForce 3 150. Sound and network work fine. Network did not work fine with the 2.6.7 kernels and below, but I believe the latest sarge installers use 2.6.8. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http

Re: Sarge: nVidia proprietary driver vs. udev

2004-11-16 Thread Dave Carrigan
exists in that directory, and add nvidia to your /etc/modules file, and it should load for you at boot time. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL signature.asc

Re: AMD 64 build absolutely necessary for install on Athlon 64?

2004-11-16 Thread Dave Carrigan
is not AMD64. It's not surprising that it won't boot. You can get the AMD64 installer from alioth or you can just install a 32-bit version. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL

Re: upgrading KDE

2004-11-11 Thread Dave Carrigan
suggest this, is it generally considered a Bad Thing (tm) to use RPMs in Debian? It will cause you all kinds of grief. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL Dave

Re: libapache-auth-ldap with SSL not compiling

2004-11-08 Thread Dave Carrigan
. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL Dave is currently listening to Tom Robinson Band - All Right All Night (TRB Two) signature.asc Description: Digital signature

Re: Ether-what? Where is the coming from?

2004-11-01 Thread Dave Carrigan
of the resulting files. The biggest file is the culprit. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL Dave is currently listening to The Sugarcubes - Hot Meat (Here Today, Tomorrow

Re: Sound recording in ALSA

2004-10-06 Thread Dave Carrigan
both the line device and the master capture device are enabled and have a non-zero input volume. In kmix for my sound card, the capture device is on the far right. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C

Re: Run script as often as possible

2004-09-28 Thread Dave Carrigan
. Is this the best way? Run it from init by putting an entry into your inittab. As soon as it exits, init will respawn it. The upside is that there is no need to do locking or process synchronization. The following inittab entry would work. mysc:2345:respawn:/path/to/myscript -- Dave Carrigan

Re: Run script as often as possible

2004-09-28 Thread Dave Carrigan
On Tue, Sep 28, 2004 at 04:49:49PM +, Adam Funk wrote: That runs the script as root, right? If you wanted to run it with as another user, would you just stick a bit of sudo in that inittab entry? Sure: mysc:2345:respawn:su - someuser -c /path/to/myscript -- Dave Carrigan Seattle, WA

Re: APIC: what is it good for? Can I switch it off?

2004-09-23 Thread Dave Carrigan
may help with your system instability and won't cause you any issues on a fileserver. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL Dave is currently listening to Cracker - Duty

Re: Junk flags in firefox

2004-09-22 Thread Dave Carrigan
to define new keyword flags, but it is not a requirement for a server. See section 2.3.2 of RFC 3501. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL signature.asc Description

Re: upgrade to 2.4.27 kills VMWare?

2004-08-23 Thread Dave Carrigan
that your kernel headers are in /usr/src/kernel-headers-2.4.27-1-686/include -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL Dave is currently listening to Jayhawks - Sixteen

Re: Recommendations on SCSI controller for Debian desktop

2004-07-02 Thread Dave Carrigan
really shines when multiple devices are contending for the bus. If you want to spend your money making you system faster, buy as much RAM as your system can hold. That being said, pretty much any Adaptec card will work well for you. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http

Re: How long can we avoid using kernel 2.6.x ?

2004-05-24 Thread Dave Carrigan
of my production kernels for 6 months to a year, or even longer. From a security perspective, the 2.4 kernels will continue to be actively maintained, so the only reason to switch is if you need something in the 2.6 kernel that the 2.4 kernel doesn't provide. -- Dave Carrigan Seattle, WA, USA [EMAIL

Re: Stable vs. Testing Vs. Unstable

2004-04-18 Thread Dave Carrigan
from snapshot.debian.net, and have done so on many occasions when an update from unstable has broken something. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL Dave is currently

Re: Moving from XP and looking for replacement programs

2004-04-18 Thread Dave Carrigan
Not well supported under linux, but see http://www.linuxprinting.org/show_printer.cgi?recnum=Lexmark-Z13 Canon i560 Dunno. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL

Re: [OT] How big are Logitech's balls?

2004-03-25 Thread Dave Carrigan
marble trackball is symmetrical; I use it left-handed all the time. http://www.logitech.com/index.cfm/products/details/GB/EN,CRID=6,CONTENTID=5145 If anyone on the list has one of the Logitech devices, could you please measure the diameter of the ball and let me know? It's 40mm. -- Dave

Re: [OT] How big are Logitech's balls?

2004-03-25 Thread Dave Carrigan
recognizes it specifically... I like the Kensington Export Mouse, which is a 4-button optical trackball (USB) with a nice big ball, plus a spinning disc around the ball that acts like the wheel in a wheel mouse. It's also symmetrical. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http

Re: IMAP server to fit this bill?

2004-03-19 Thread Dave Carrigan
accessing the mbox is using - and honoring - the same locking scheme). Did I mention that it's slow yet? -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL signature.asc Description

Re: IMAP server to fit this bill?

2004-03-19 Thread Dave Carrigan
, so I'm not sure what this means. If you're implying that you can't read your mail without an imap client, then I'll concede that. Big deal. For me, the benefits of imap far outweigh the disadvantage that there may be some mail clients that I can't use. Cheers, -- Dave Carrigan Seattle, WA, USA

Re: IMAP server to fit this bill?

2004-03-19 Thread Dave Carrigan
On Fri, Mar 19, 2004 at 11:22:47AM -0800, Steve Lamb wrote: Dave Carrigan wrote: As for putting extra headers into a message, I'm not sure why you think this is a problem. That's what headers are for -- to convey meta-information about a message. Because forwarded messages

Re: cyrus fun

2004-03-18 Thread Dave Carrigan
pretty sure you can find a backport. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL signature.asc Description: Digital signature

Re: IMAP problems

2004-03-18 Thread Dave Carrigan
: saslauthd sasl_auto_transition: no Then in /etc/default/saslauthd, I have START=yes MECHANISMS=shadow After changing /etc/default/saslauthd, make sure you (re)start it. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux

Re: cyrus fun

2004-03-18 Thread Dave Carrigan
* of stuff. Actually, you shouldn't run testing at all; stick to stable or unstable. However, Henrique (the Debian cyrus maintainer) has backports for woody, so you shouldn't need to upgrade. Just add this deb http://people.debian.org/~hmh/woody/ hmh/cyrus/ to your sources.list. -- Dave

Re: GCC

2004-02-23 Thread Dave Carrigan
was not good enough, but it was not 2.95. Regards, -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL signature.asc Description: Digital signature

Re: GCC

2004-02-22 Thread Dave Carrigan
in Meyers' _Effective C++_, or take it up with the C++ gurus in comp.lang.C++{,.moderated}. As a final note, namespaces are here to stay whether you like it or not, so you may want to spend your time finding another windmill to tilt at. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http

Re: GCC

2004-02-19 Thread Dave Carrigan
vendors followed a standard at all. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL signature.asc Description: Digital signature

Re: GCC

2004-02-18 Thread Dave Carrigan
++). The intent is to visually separate the old C headers from the new C++ ones. For the old headers you still use .h, but for the C++ headers you don't. This is true for the Standard C++ Library only. Other libraries are free to use whatever extensions they want. For example, boost uses .hpp. -- Dave

Re: GCC

2004-02-17 Thread Dave Carrigan
be to eliminate the extension altogether. Not also that if you want to include C headers (e.g., stdlib.h), the correct include is #include cstdlib NOT #include stdlib.h -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux

Re: What's the easiest way to move some files in a directory tree?

2004-02-13 Thread Dave Carrigan
instead of copying the file contents, and it won't use any significant extra space between step 1 and 2. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL Dave is currently

Re: Alternative to VMware?

2004-02-02 Thread Dave Carrigan
into a seperate partition. What do other people use? VMWare is the only game in town. win4lin is windows only. Bochs has potential, but is nowhere near there. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C

Re: script to list installed packages

2004-01-29 Thread Dave Carrigan
-installed state. Also, this will miss held packages. Better would be dpkg --get-selections | awk '$2 ~ install|hold {print $1}' -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL

Re: .deb dependancy hell

2004-01-28 Thread Dave Carrigan
On Wed, Jan 28, 2004 at 10:56:24AM -0500, Richard Hoskins wrote: On unstable, i386. Kind of reminds me of RPM: ...snip dpkg -r lossage Why aren't you just using apt-get remove libgphoto2-2 Dpkg was never designed to handle dependencies; apt was. -- Dave Carrigan Seattle, WA, USA [EMAIL

Re: mouse-2 and S-ins use different copy buffers

2004-01-05 Thread Dave Carrigan
and the CLIPBOARD are still the same (i.e., nothing new has been selected since the last time CLIPBOARD was updated). -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL signature.asc

Galeon doesn't work correctly with gnome 2.4

2003-10-22 Thread Dave Carrigan
to be the culprit. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL signature.asc Description: Digital signature

Re: mutt pgp nosign variable?

2003-10-15 Thread Dave Carrigan
the lines of send-hook 'pattern' 'unset somevariablename' send-hook '~t [EMAIL PROTECTED]' 'set crypt_autosign=no' -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL Dave

Re: Convert realaudio to free audio ???

2003-10-09 Thread Dave Carrigan
On Thu, Oct 09, 2003 at 10:07:40AM -0500, Michael D Schleif wrote: Where do I get mplayer? deb http://marillat.free.fr/ unstable main Is it `free'? Let's not reopen it on this list. Ask google about debian and mplayer. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http

Re: gzip question

2003-10-07 Thread Dave Carrigan
the tar file. Winzip can extract files from tars and preserve directory structure. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL Dave is currently listening to Camper Van

Re: simple text formatting

2003-10-06 Thread Dave Carrigan
On Sun, Oct 05, 2003 at 11:37:57PM -0700, Mike Egglestone wrote: Hi, I have a file in this format of words: joe jill bill bob frank tom harry and want to convert the file to this format: joe jill bill bob frank tom harry fmt -w 1 filename newfile -- Dave Carrigan Seattle, WA

Re: Printing to JetDirect printer

2003-10-05 Thread Dave Carrigan
to install. lprng. I never had any luck with getting cups working with JetDirect. Cups works fine with a jetdirect. Just use a direct socket connection to port 9100. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP

Re: Limiting access to website ???

2003-10-04 Thread Dave Carrigan
://httpd.apache.org/ -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL signature.asc Description: Digital signature

Re: Limiting access to website ???

2003-10-04 Thread Dave Carrigan
if your application isn't targeted at a closed group of users (i.e., it's something on the Internet). -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL signature.asc Description: Digital

Re: segfault while loading perl script on irssi.

2003-10-02 Thread Dave Carrigan
that has an embedded perl interpreter seems to be segfaulting (mod_perl, irssi, xchat, etc.). This was discussed a bit on debian-perl, but I don't know if any bugs were filed. In the meantime, you can rebuild irssi, or you can downgrade perl. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED

Re: changing hard returns to soft ones

2003-09-29 Thread Dave Carrigan
/ */\n/g' new.txt ^^ ^ ^ Change multi- Convert line-Convert multi- spaces intofeed to space. space back into single spaces. linefeeds. -- Dave Carrigan Seattle, WA, USA

Re: Subversion apache module will not load in unstable

2003-09-29 Thread Dave Carrigan
2.0.47-1 The Apache Portable Runtime ii libsvn00.30.0-1 Subversion shared libraries - in development ii subversion 0.30.0-1 Advanced version control system - in develop -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ

Re: Easy way to share deb files?

2003-09-26 Thread Dave Carrigan
machine... Ist this somehow (ev without settuing up a debian mirror) possible? apt-mirror is one way. I prefer to use a caching HTTP proxy, like squid, which makes it completely transparent. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache

Re: SU shows my password at terminal

2003-09-25 Thread Dave Carrigan
is to wait that amount of time. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL Dave is currently listening to Bob Mould - Heartbreak A Stranger (Workbook) signature.asc

Re: Verislime

2003-09-25 Thread Dave Carrigan
). Your math is wrong. DNS != IPv4. The number is actually much higher than 4 billion. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL signature.asc Description: Digital signature

Re: record sound...

2003-09-22 Thread Dave Carrigan
On Mon, Sep 22, 2003 at 08:31:31PM +0200, LeVA wrote: I am not using alsa :). Any other ideas? Or programs? gramofile has a sound recording feature. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS

Re: Similar app for Disk Catalog?

2003-09-06 Thread Dave Carrigan
the database into a file for viewing/searching using the tool. Perhaps gtktalog is what you want? -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL pgp0.pgp Description: PGP

Re: Script help

2003-09-06 Thread Dave Carrigan
-- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL pgp0.pgp Description: PGP signature

Re: IMAP with virtual users

2003-08-30 Thread Dave Carrigan
29 11:00:25 debian-server postfix/smtpd[6969]: fatal: dict_open: unsupported dictionary type: mysql ^^ Do you have postfix-mysql installed? -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux

Re: Piping file to scp

2003-08-30 Thread Dave Carrigan
, not scp. In fact, scp can be mostly done with ssh [EMAIL PROTECTED] 'cat /path/to/dest' /path/to/source This won't preserve perms and other meta-data, but the files at each end will be the same. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX

Re: Need help with mutt

2003-08-29 Thread Dave Carrigan
unignore organization organisation x-spam-score Add unignores for any other headers you're interested in. Use the H key to toggle between all headers and just the unignored headers. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux

Re: some reality about iptables, please

2003-08-27 Thread Dave Carrigan
/network/interfaces file: iface eth1 inet static address xxx netmask xxx network xxx broadcast xxx gateway xxx pre-up /etc/firewall/iptables.eth1 start post-down /etc/firewall/iptables.eth1 start For PPP connections, stick a script in the /etc/ppp/ip-up.d directory. -- Dave

Re: [OT] C++ question re. dyn. mem.

2003-08-14 Thread Dave Carrigan
On Wed, Aug 06, 2003 at 10:36:42AM -0400, MJM wrote: On Wednesday 06 August 2003 01:02, Dave Carrigan wrote:  Language experts sure get their shorts knotted up over simple questions.   Because your question had to do with undefined and implementation-dependent behavior. I know

Re: [OT]: CVS replacement

2003-08-14 Thread Dave Carrigan
On Fri, Aug 08, 2003 at 03:18:00PM +0100, Colin Watson wrote: On Fri, Aug 08, 2003 at 06:53:15AM -0700, Dave Carrigan wrote: Not all your history, sadly. Branches and tags are lost. Is this still true? Recent versions of cvs2svn claim to have fixed this. As of 0.25-0.1, which was the last

Re: [OT]: CVS replacement

2003-08-14 Thread Dave Carrigan
that will save all your history. =) Not all your history, sadly. Branches and tags are lost. However, I do use subversion, and like it. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL

Re: [OT]: CVS replacement

2003-08-14 Thread Dave Carrigan
On Fri, Aug 08, 2003 at 03:48:44PM -0400, Joey Hess wrote: The man page is out of date. cvs2cvn supports branches and tags, though it does have a number of other bugs and limitations. I guess it serves me right for reading the documentation instead of reading the source :-) -- Dave Carrigan

Re: Newbie imapd Question

2003-08-14 Thread Dave Carrigan
in: /usr/sbin/imapd and I get * OK host Cyrus IMAP4 v1.5.19 server ready It can't run standalone; it's meant to run out of inetd. Cyrus21 runs standalone. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C

Re: [OT] C++ question re. dyn. mem.

2003-08-06 Thread Dave Carrigan
as upgrading the C++ library. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of unsubscribe. Trouble? Contact [EMAIL

Re: Doesn't MY_ENV=abc printf ${MY_ENV}\n suppose to print abc?

2003-08-03 Thread Dave Carrigan
assignment notation to set FOO for a subcommand $ FOO=bar env | grep FOO FOO=bar $ FOO=bar perl -e 'print $ENV{FOO}, \n;' bar # Note that FOO is still not set in the current shell $ echo $FOO $ env | grep FOO $ -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http

Re: Doesn't MY_ENV=abc printf ${MY_ENV}\n suppose to print abc?

2003-08-03 Thread Dave Carrigan
On Sun, Aug 03, 2003 at 06:57:44AM -0400, Shawn Lamson wrote: On Sat, August 02 at 12:08 PM EDT Dave Carrigan [EMAIL PROTECTED] wrote: The MY_ENV=abc printf syntax sets the environment variable for the printf subprocess. And, in fact, when printf runs, MY_ENV is truly set to abc. However

Re: [OT] Utility to lookup hosts on an IP address

2003-08-03 Thread Dave Carrigan
mod_info can tell you all of the virtual hosts on a single IP, but the Apache admin would first have to enable it and second would have to be stupid (or brave) enough to allow access to it on the public internet. (*) This is an exercise left for the reader. -- Dave Carrigan Seattle, WA, USA [EMAIL

Re: Doesn't MY_ENV=abc printf ${MY_ENV}\n suppose to print abc?

2003-08-02 Thread Dave Carrigan
MY_ENV in its arguments, all it sees is a single argument that looks like ``\n''. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL -- To UNSUBSCRIBE, email to [EMAIL PROTECTED

Re: nfs problem

2003-07-30 Thread Dave Carrigan
it strange. There have been some bugs in recent versions of nfs-kernel-server and/or nfs-common. Make sure you're running the most recent ones or else downgrade to 1.0.3-1. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux

Re: combining multiple ip's into one variable on iptables script?

2003-07-30 Thread Dave Carrigan
194.83.57.7 for host in $APT_MIRROR_AC_UK; do iptables -A block ... -s $host -j ACCEPT done This still would work correctly even if at a later date you changed APT_MIRROR_AC_UK to only be a single host. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680

Re: nfs problem

2003-07-30 Thread Dave Carrigan
On Wed, Jul 30, 2003 at 10:28:29AM -0500, Ron Johnson wrote: On Wed, 2003-07-30 at 07:51, Dave Carrigan wrote: Make sure you're running the most recent ones or else downgrade to 1.0.3-1. # dpkg -l | grep nfs ii nfs-common 1.0.3-2 NFS support files common to client and serve ii nfs

Re: Building a mail server

2003-07-30 Thread Dave Carrigan
home network, and the network I administer at work. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL Dave is currently listening to Crash Test Dummies - Comin' Back Soon (The Bereft

Re: New Sarge NFS Server Unexporting after certain interval?

2003-07-30 Thread Dave Carrigan
to snapshot.debian.net and find the old .debs. Use the changelog.Debian.gz file to figure out how far back in time you need to go. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL Dave is currently

Re: nfs problem

2003-07-30 Thread Dave Carrigan
On Wed, Jul 30, 2003 at 06:39:52PM -0500, Ron Johnson wrote: Thanks. Does sid's 1.0.5-1 work? Yes, seems to be working for me. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL

Re: batch renaming for filenames with space

2003-07-28 Thread Dave Carrigan
? The files are named Copy of ... and I want to drop the Copy of part. I tried to do for file in `ls -1`; do cp $file `echo -n $file | sed 's/Copy of \(.*\)/\1/'` done Assuming you're using bash: for f in *; do cp $f ${f/Copy of /} done -- Dave Carrigan Seattle, WA, USA [EMAIL

  1   2   3   >