Re: How to check whether a RAID array is still consistent?

2004-06-26 Thread Darik Horn
Install the ide-smart package and have it watch the physical disks in the array. Additionally, the mdadm package will install a daemon that watches the logical array device. Bob wrote: Hi all, A few days ago my software-RAID1 array failed because the two disks both had bad blocks. Probably bad

Re: Two-part question

2004-06-26 Thread Darik Horn
> I hoped to solve this problem by using pam_mkhomedir.so as a session > module for Courier, but it seems to be disregarding it. IIRC, Courier tries to change into the home directory before calling the pam_mkhomedir.so module. (Or somesuch.) > Does anyone have a suggestion for where I can go fro

Re: Intel NIC Driver

2004-05-14 Thread Darik Horn
> 1. Is there a driver that will work with this. I believe it is on the > motherboard. Install the 'discover' package before you try to manually load drivers: # apt-get install discover This package autodetects most hardware and loads drivers as appropriate. [EMAIL PROTECTED] wrote: I just ins

Re: Netatalk

2004-03-23 Thread Darik Horn
Hi Darik, Many thanks for the reply. How though do I find out what's going to be installed in say vanilla, or bf24 before doing it? And - if I do do that - I kind of need to know whether it'll support my old network card - see my other email (attached) Thanks, Andrew. - Original Mess

Re: Netatalk

2004-03-23 Thread Darik Horn
Install a recent complete kernel package: # apt-get install kernel-image-2.4.18-1-386 This kernel package has netatalk support. The netatalk deamons should start without problems if you are running this kernel. The BF kernels do not always have everything that you might need. Andrew Gilberto

Re: printer problems

2004-03-22 Thread Darik Horn
You need to install a print filter, which is much like a print driver under Microsoft Windows. I use ApsFilter with my HP printers. Run this command as the root user to install the package: # apt-get install apsfilter IIRC, the ApsFilter installer will print a colorful test page. If you get

Re: VPN & NAT

2004-03-22 Thread Darik Horn
If you are running a PPTP VPN service, then your problem is with GRE forwarding. Ensure that the GRE kernel module is loaded, and then run something like this: # iptables -t nat -A PREROUTING -j DNAT i MyExternalInterface -p tcp --dport 1723 --to-destination MyPptpServer # iptables -A FORWARD

Re: frustrating problem with networking encountered while installing "Woody"

2004-03-22 Thread Darik Horn
> In addition to Windows, KNOPPIX networks just fine > with no problems. If your computer runs Windows 98 and Knoppix properly, then your Debian installation isn't loading drivers for all of your hardware. First, install a recent kernel: # apt-get install kernel-image-2.4.18-386 Second, install

Re: IMAP server to fit this bill?

2004-03-18 Thread Darik Horn
> Finally mbox is a requirement because my Squirrelmail isers, as well > as myself on Thunderbird, have months of archived mail in mbox format. Converting mbox files to maildir folders is nearly trivial to script. http://home.uninet.ee/~ragnar/2md/ http://www.flamingspork.com/junkcode/mbox2mai

Re: Help!!! Woody with PPP 2.4.2 and SASL2 ???

2004-03-10 Thread Darik Horn
Check http://www.backports.org/ and http://www.apt-get.org/ for woody packages with MPPE and SASL2 support. If you wish to teach yourself how to backport packages, then start with the PPP package. It is trivial to make the source package work with the woody debhelpers. Alternatively, it is al

Re: Setting up a text-telephone shell server

2004-02-10 Thread Darik Horn
> I was wondering what I would need to be able to set up a program > on my Debian machine that would let me dial home and then spawn a > shell over the connection, allowing me to enter commands with the > TTY keyboard. Install the mgetty package and configure it to run on the serial port that has

Re: compiling a driver

2004-02-06 Thread Darik Horn
> What can I do to compile this driver correctly? First, replace the rescue kernel with the full 2.4.18 package. # apt-get install kernel-image-2.4.18 Second, use the config file that is installed with the kernel package. # cp /boot/config-2.4.18 /usr/src/kernel-source-2.4.18/.config # cd /usr/

Re: Phone dialer for Linux

2004-02-06 Thread Darik Horn
> I'm looking for something that can be used in a way sort of like the > following: > > ~$ somedialer -P{ulse} -D /dev/ttys0 -N <1 234 567 8910> Try minicom, tip, and cu. Use whatever best fits your taste. > I've searched and searched and I just can't seem to find a simple, > command-line phone

Re: Booting from 2nd HD with raid1

2004-02-05 Thread Darik Horn
LILO does not automatically maintain the MBR on disks that are part of a RAID-1 array that are contained within partitions. You can make your secondary disk bootable by doing this... 1. Open the '/etc/lilo.conf' file and change "boot=/dev/hde1" to "boot=/dev/md0". This tells LILO to install it

Re: Maildrop + SA

2003-12-04 Thread Darik Horn
> So, I would like send spams (witch my SA didn't catch) to e-mail > [EMAIL PROTECTED] and my maildrop use sa-learn in this e-mail. > How can I do that in my maildrop??? Be careful about doing this. Things that you forward to [EMAIL PROTECTED] will appear to come from your address, so you may acc

Re: Anti-Virus Scanner recommendations please

2003-11-27 Thread Darik Horn
le information, Darik. Np. I'm currently maintaining mail servers that are running Exim and/or Courier, so feel free to ask more questions. Stephen wrote: On Wed, Nov 26, 2003 at 09:09:11PM -0800 or thereabouts, Darik Horn wrote: Hi Darik, ClamAV is the best virus scanner that is free soft

Re: Anti-Virus Scanner recommendations please

2003-11-26 Thread Darik Horn
ClamAV is the best virus scanner that is free software. On a Debian/woody computer, you should use a backport of a recent version like this: http://www.backports.org/debian/dists/woody/clamav/ If you wish to purchase a commercial product, then I would recommend F-Secure Anti-Virus for Linux:

Re: using debian in a NT4 or AD environment

2003-10-30 Thread Darik Horn
> Does anyone here use Debian as a file server in a NT4 or AD domain ? Yes. > I'm just wondering what headaches the integration would bring, we have > w2k pro/ os9.2 and osx 10.2 on the desktops. File serving is a relatively easy thing to configure, but you should begin using Debian now so that

Re: How to find out the largest IDE drive I can install

2003-10-22 Thread Darik Horn
> 1. What are the various size limits for IDE33/66/100 & 133 ? Read the History of BIOS and IDE limits at: http://www.win.tue.nl/~aeb/linux/Large-Disk-4.html The maximum disk size for Pentium II computers is likely to be 137 gigabytes. If the BIOS has a size limit, then you must install the boot

Re: unexpected IFS behavior with the newline character

2003-10-19 Thread Darik Horn
the $'' operator, although many programs like /bin/echo will interpret it, which led to my confusion. Bijan Soleymani wrote: On Sun, Oct 19, 2003 at 07:15:11PM -0400, Darik Horn wrote: Can anybody explain this shell behavior? -- It doesn't seem consistent with the documentation

unexpected IFS behavior with the newline character

2003-10-19 Thread Darik Horn
Can anybody explain this shell behavior? -- It doesn't seem consistent with the documentation about how whitespace is interpreted as an internal field separator. # IFS="\n" # FOO="alpha\nbravo\ncharlie" # for i in $FOO; do echo "%${i}%"; done %alpha% %% %bravo% %% %charlie% When ash or bash doe

Re: PKARC

2003-10-19 Thread Darik Horn
Use the nomarch package: # apt-get install nomarch # nomarch myfile.arc James Lawing wrote: I have a single file I found dating back to 1990 that needs to be UN ARCed. Do you ahve the exe file that would do this task? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe

Verbose Debian Linux Mail Server Walkthrough

2003-09-30 Thread Darik Horn
I am working on the Verbose Debian Linux Mail Server Walkthrough, a document that precisely describes how to add such a thing to a Microsoft Windows domain. http://www.vanadac.com/~dajhorn/projects/lmsw/ It is currently a draft, but it should be helpful. Feedback, as always, is welcome. -- T

Re: Enabling IMAP access

2003-09-28 Thread Darik Horn
> - How do I allow this only over SSL (i.e., imaps)? If you choose to run the Courier IMAP service, then you would set ... in /etc/courier/imapd: ADDRESS=127.0.0.1 ... in /etc/courier/imapd-ssl: SSLADDRESS=0 This would allow the webmail client to access the IMAP service locally, and require that

Re: Exim and Cyrus shared folders

2003-09-23 Thread Darik Horn
> Am I missing something else in the exim.conf? (It would help to include your exim.conf file as an attachment.) If your exim.conf file was created by the eximconfig script, then the local_delivery transport is invoked by the localuser director. Notice how the localuser director uses the localu

Kernel Image and PPP packages with MPPE support for PPTP

2003-09-20 Thread Darik Horn
(J'ai CC'd la liste debian-user-french par demande. Je ne parle pas francais, cependant.) I am providing kernel-image and ppp packages for Debian/woody with a Microsoft Point-to-Point Encryption ("MPPE") module for the Point-to-Point Tunneling Protocol ("PPTP"). ... Step 1. Add these lines

Re: Partition question

2003-09-18 Thread Darik Horn
> /dev/sda1 as /boot > /dev/sda2 as / > /dev/sda3 as swap. In this case, you probably want /dev/sda2 to appear before /dev/sda1 in the fstab file because filesystems are mounted in order by line number. If "/foo" is mounted after "/foo/bar", then "/foo/bar" will not be accessible until "/foo" is

Re: Debian patches

2003-09-17 Thread Darik Horn
> I understand number 3, but... what are numbers 1 and 2 ?? 8-? The bk series is from the Bit Keeper repository, a tool that Marcello Tosatti (and other kernel developers) use for source code control. The ac series is from Alan Cox, which tends to have cutting-edge stuff. Numerous people maint

Re: Group rights

2003-09-15 Thread Darik Horn
> How then, do I assign multiple groups, different permission to the > same folders You cannot assign multiple groups to an object in a traditional unix filesystem. (This is the way that Debian ships.) Past that, you'll need to install support for access control lists ("ACLs"). If you're serving

Re: vmware without X

2003-09-15 Thread Darik Horn
> start vmware without a X-Display. You can do it with a virtual frame buffer and some scripting. Alternatively, you can do it with VNC. Read this Mini-HOWTO: http://www.otterway.com/vm-vnc.htm Rus Foster wrote: Hi All, Does anyone know if it is possible to start vmware without a X-Display. I'v

Re: How to enlarge 3.5"?

2003-09-14 Thread Darik Horn
how to enlarge the 1.4MB 3.5" diskette capacity in linux? Run this command on your computer # ls -al /dev/fd0* The fd0 device is the first floppy disk in your computer. Each form of the name represents a different format. In particular, notice: /dev/fd0u1440 /dev/fd0u1680 The first name repre

Re: Exim, Amavis.

2003-09-10 Thread Darik Horn
Check the /etc/hosts file. It should have a line like this: 127.0.0.1 mycomputer localhost If it doesn't, then you need to add it. Past that, you may wish to check the bugs filed against the amavisd-new package. Unless you're running a very busy site, the amavis-ng package is probably the b

Re: keep files up-to-date (mirror?)

2003-09-03 Thread Darik Horn
Also try the unison package. It is based on rsync, but it works in both directions. francois mounier wrote: Hi, I am using Debian woody 3.0r1 with the standard kernel (2.4.17-32) I have setup an LVS load balancing httpd (apache) with php...this LVS can connect to a Db (mysql) for the use of th

Re: Best way to upgrade a single app

2003-08-21 Thread Darik Horn
I do this with pinning. 1. Make this your /etc/apt/preferences file: # /etc/apt/preferences -- The APT preferences configuration. # Run 'man apt_preferences' for more information. # # This file tells APT to use packages from the stable distribution by # default, but allows packages from other di

Re: Quick question regarding permissions and tar

2003-08-21 Thread Darik Horn
tar cvfPpj /home/mark/secure-server-woody.tar.bz2 /home/image/secure-server Run `tar jtvvf secure-sever-woody.tar.bz2` and notice how every file in the tarball has the '/home/image/secure-server' prefix. This will make it difficult to unpack. (The 'Pp' switches are not doing what you think they'r