Re: md5sum lots of files

2006-10-20 Thread Dave Carrigan
print0 is not line-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: md5sum lots of files

2006-10-20 Thread Dave Carrigan
r find . -type f -print0 | xargs -0 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: find by year

2006-10-04 Thread Dave Carrigan
r /tmp/start -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 SIGNATU

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

2006-09-20 Thread Dave Carrigan
#get the low nibble > $str2 = hec($c2); #convert to hex $str2 = 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-Pal

Re: Flatbed Scanner

2006-06-30 Thread Dave Carrigan
h luck 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 li

Re: repetitive apt-get upgrade

2006-05-30 Thread Dave Carrigan
ttp://bugs.debian.org/cgi-bin/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 Crea

Apt keeps wanting to upgrade mailman

2006-05-08 Thread Dave Carrigan
ng 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 Seattl

Re: default group ownership of a file

2006-04-07 Thread Dave Carrigan
, which 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

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

2006-02-17 Thread Dave Carrigan
e to unmount it to do so. 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-

Re: virtual machine

2006-01-20 Thread Dave Carrigan
y beefy machine (mine 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-Fir

Re: IMAP Server Requirement

2006-01-19 Thread Dave Carrigan
r needs, cyrus is probably good because it doesn't require 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 Beethov

Re: .ape files

2006-01-10 Thread Dave Carrigan
andle it at http://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 Desc

Re: Why is 2.95 still around?

2005-11-09 Thread Dave Carrigan
ople may still have 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-Postg

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

2005-09-20 Thread Dave Carrigan
database, without worrying 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
Perhaps you should have checked 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 PROTECTE

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.ruded

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 (.*)/' th

Re: Good backup software for Linux

2005-06-20 Thread Dave Carrigan
enough room to do the restore if it didn't do 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: Good backup software for Linux

2005-06-20 Thread Dave Carrigan
ad lock), take the snapshot then unlock the tables. Now, you 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-PalmO

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

2005-06-08 Thread Dave Carrigan
number pad; it works fine with X, and it even 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:/

Re: DVORAK

2005-06-07 Thread Dave Carrigan
hat requires me to rotate my hands even semi-flat exacerbates the tendinitis to the point where I 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

Re: DVORAK

2005-06-07 Thread Dave Carrigan
ilar amount of time if I had started with dvorak. Most of your touch-typing skills easily 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 PROT

Re: Where to put the PDA ?

2005-01-03 Thread Dave Carrigan
ly apparent what devices the PDA has 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. -- D

Re: OT: down with memory protection!

2004-12-03 Thread Dave Carrigan
of real-world > programs > 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

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 PROTEC

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] | h

Re: devfs vs. udev

2004-11-23 Thread Dave Carrigan
filesystems. Note that udev needs sysfs in order 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 tha

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

2004-11-17 Thread Dave Carrigan
t be more trouble than 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 Seattl

Re: Will debian grow and stay

2004-11-17 Thread Dave Carrigan
and that was back in the 20th century. Try doing a little basic 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-Pal

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

2004-11-16 Thread Dave Carrigan
4. IA64 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++

Re: Sarge: nVidia proprietary driver vs. udev

2004-11-16 Thread Dave Carrigan
so make sure the nvidia0 device 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-PostgreS

Re: upgrading KDE

2004-11-11 Thread Dave Carrigan
g a desktop system, you might want to consider using unstable rather than testing. > As an alternative, and I hate to even 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 PROTECTE

Re: libapache-auth-ldap with SSL not compiling

2004-11-08 Thread Dave Carrigan
wouldn't have to patch and recompile the ldap module. -- 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 (

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

2004-11-01 Thread Dave Carrigan
the size 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

Re: Sound recording in ALSA

2004-10-06 Thread Dave Carrigan
pt to > record the sound that's being played through my speakers to a file. Make sure 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 [EMA

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 Carriga

Re: Run script as often as possible

2004-09-28 Thread Dave Carrigan
e run file exists, exit. > 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/myscrip

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

2004-09-23 Thread Dave Carrigan
be the cause of your problems. Disabling APIC 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 Dav

Re: Junk flags in firefox

2004-09-22 Thread Dave Carrigan
-specific. Some servers allow the client 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

Re: upgrade to 2.4.27 kills VMWare?

2004-08-23 Thread Dave Carrigan
the kernel-headers-2.4.27-1-686 package, then you tell vmware 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-Postgre

Re: Recommendations on SCSI controller for Debian desktop

2004-07-02 Thread Dave Carrigan
be spending a premium to use SCSI. SCSI 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,

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

2004-05-24 Thread Dave Carrigan
re? I personally don't anticipate upgrading any 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&#x

Re: Moving from XP and looking for replacement programs

2004-04-18 Thread Dave Carrigan
ALSA > Lexmark Z13 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-

Re: Stable vs. Testing Vs. Unstable

2004-04-18 Thread Dave Carrigan
before my upgrades. I also know how to downgrade stuff 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

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

2004-03-25 Thread Dave Carrigan
roblems, and the linux kernel 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, U

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

2004-03-25 Thread Dave Carrigan
ll and let me know? It's 40mm. -- 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 Big Country - One In A Million (Why The Long Face) signature.asc Description: Digital signature

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. > &g

Re: IMAP server to fit this bill?

2004-03-19 Thread Dave Carrigan
#x27;m mistaken in that mutt and elmo > can access Cyrus' DBs directly? :P I'm using mutt and I'm using cyrus, 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

Re: IMAP server to fit this bill?

2004-03-19 Thread Dave Carrigan
gt;From escape is another ugly hack); it's dangerous (better hope everything 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-

Re: cyrus fun

2004-03-18 Thread Dave Carrigan
ing unless you're ready to upgrade a *lot* 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/w

Re: IMAP problems

2004-03-18 Thread Dave Carrigan
LOGOUT How is your sasl config set up in imapd.conf? I have: sasl_pwcheck_method: 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 [EMAI

Re: cyrus fun

2004-03-18 Thread Dave Carrigan
n if you're running stable, I'm 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: GCC

2004-02-23 Thread Dave Carrigan
ecall, and gcc at that time 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
. If you want more information, you should look at items 28 and 49 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

Re: GCC

2004-02-19 Thread Dave Carrigan
her C++, because their iostream.h (if it even exists) may or may not behave like your iostream.h. Conversely, their *will* behave like yours, or else one of the vendors has a bug with their implementation. Bugs like this are still a common and sad fact, but the situation would be much worse if none of your 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
hey want. For example, boost uses .hpp. -- 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-17 Thread Dave Carrigan
dards committee decided that the most straightforward approach would 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 NOT #include -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.ru

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

2004-02-13 Thread Dave Carrigan
ou do -pdml instead of -pdm, because it'll just create hard links 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-Fir

Re: Alternative to VMware?

2004-02-02 Thread Dave Carrigan
ithout > rebooting 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

Re: script to list installed packages

2004-01-29 Thread Dave Carrigan
" in its name and is in a non-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-Per

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 Se

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

2004-01-05 Thread Dave Carrigan
same thing is probably because the PRIMARY selection 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-Firewa

Galeon doesn't work correctly with gnome 2.4

2003-10-22 Thread Dave Carrigan
_ID) seem 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
> all. i know it'll be along 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 UN

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 P

Re: gzip question

2003-10-07 Thread Dave Carrigan
e you want, then tar up the directory, then gzip 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

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 >

Re: Printing to JetDirect printer

2003-10-05 Thread Dave Carrigan
> > didn't know what 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:

Re: Limiting access to website ???

2003-10-04 Thread Dave Carrigan
ly accept the unknown cert the first time they connect. Note that all this could become very onerous 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

Re: Limiting access to website ???

2003-10-04 Thread Dave Carrigan
tion, like an SSL Certificate. The mod_ssl docs should have everything you need to know. -- 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
27;s, documentation, > applications, &c.) http://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: segfault while loading perl script on irssi.

2003-10-02 Thread Dave Carrigan
ade. Supposedly, 5.8.1 is ABI compatible with 5.8.0, but it seems that it is not, because software 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,

Re: Subversion apache module will not load in unstable

2003-09-29 Thread Dave Carrigan
sl.load -> ../mods-available/ssl.load zauth_ldap.load -> ../mods-available/auth_ldap.load ii libapr02.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

Re: changing hard returns to soft ones

2003-09-29 Thread Dave Carrigan
you, if you don't care about losing legitimate extra spaces from the text: sed 's/ */ /g' < old.txt | tr '\012' ' ' | sed 's/ */\n/g' > new.txt ^^ ^ ^ Change multi- Con

Re: Easy way to share deb files?

2003-09-26 Thread Dave Carrigan
kages wich are not avail on the first 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

Re: Verislime

2003-09-25 Thread Dave Carrigan
urrently assigned hosts). 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.a

Re: SU shows my password at terminal

2003-09-25 Thread Dave Carrigan
r the system, the longer it will take to do this. Your only choice 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 current

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++-

Re: mutt tips

2003-09-10 Thread Dave Carrigan
server is slow. > > set tunnel = "ssh -C -q [EMAIL PROTECTED] /usr/sbin/imapd" This is not a general solution for all imap servers; it works only for imap servers that users are allowed to start. Better is to use imaps (mutt supports it automatically), or use ssh port forwarding. --

Re: Script help

2003-09-06 Thread Dave Carrigan
e 'print unless /^z,xxx.xxx.xxx.xxx/' ~/.ssh/known_hosts -- 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: Similar app for Disk Catalog?

2003-09-06 Thread Dave Carrigan
catalogs them, it then > saves 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

Re: Piping file to scp

2003-08-30 Thread Dave Carrigan
? That expects a file named > "[EMAIL PROTECTED]" if the ":" is missing, IIRC. If you look closely, he's using ssh, not scp. In fact, scp can be mostly done with ssh [EMAIL PROTECTED] 'cat > /path/to/dest' < /path/to/source This won't pre

Re: IMAP with virtual users

2003-08-30 Thread Dave Carrigan
l -f /var/log/syslog > > Aug 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/ | I

Re: Need help with mutt

2003-08-29 Thread Dave Carrigan
ect to cc 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-Apa

Re: some reality about iptables, please

2003-08-27 Thread Dave Carrigan
em in the /etc/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 direct

Re: Newbie imapd Question

2003-08-14 Thread Dave Carrigan
> without any inetd, so I just type 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.o

Re: list what is using a module

2003-08-14 Thread Dave Carrigan
n you can use lsof on the device file. > are processes the only thing that need to be stopped before a module can > be removed? Usually. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-P

Re: [OT]: CVS replacement

2003-08-14 Thread Dave Carrigan
; repository converter 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+

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 Ca

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

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 >

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

2003-08-06 Thread Dave Carrigan
pendent. That includes portability between different compilers and even different versions of the same vendor's compiler. That code was not portable, and could break just by doing something as innocuous as upgrading the C++ library. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://ww

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

2003-08-03 Thread Dave Carrigan
that Apache's 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 Seat

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 r

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

2003-08-03 Thread Dave Carrigan
$ env | grep FOO FOO=bar $ perl -e 'print $ENV{FOO}, "\n";' bar # Un-set FOO $ unset FOO $ env | grep FOO $ perl -e 'print $ENV{FOO}, "\n";' # Now, use variable assignment notation to set FOO for a subcommand $ FOO=bar env | grep FOO FOO=bar

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

2003-08-02 Thread Dave Carrigan
shell, the expansion results in an empty string. The printf command doesn't even see 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-Lin

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-Po

Re: New Sarge NFS Server Unexporting after certain interval?

2003-07-30 Thread Dave Carrigan
forward way for doing that? Go 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++-DN

Re: Building a mail server

2003-07-30 Thread Dave Carrigan
on an IMAP server. Not even sure what's available for a server-side > filter, and what MTAs it's compatible with. Sendmail is the tried and true > proven system, but from what I understand it doesn't support maildirs, which > makes postfix look good, as postfix also

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

  1   2   3   >