kickstart, autoyast or the like for Debian?

2004-10-13 Thread Jacob Larsen
Is there a way to create an install script for Debian? Just like Red Hat/Fedora kickstart and Suse autoyast. Thanks, Jacob -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

MySQL 4.1 package

2004-10-13 Thread Jacob Larsen
Anyone know of a MySQL 4.1 package? Thanks, Jacob -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

Re: MySQL 4.1 package

2004-10-13 Thread Jacob Larsen
Anyone know of a MySQL 4.1 package? If you want to help debug the 4.1.5 version that's present in experimental... ; ) Sorry, I didn't know there was an experimental distro :) Thanks, Jacob -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of unsubscribe. Trouble? Contact [EMAIL

What does it mean: [3ware 3DM alert -- host: debpro]

2004-10-08 Thread Jacob Larsen
Anyone know what this means? Original Message Subject: 3ware 3DM alert -- host: debpro Date: Thu, 23 Sep 2004 06:31:45 +0200 (CEST) From: [EMAIL PROTECTED] [EMAIL PROTECTED] To: [EMAIL PROTECTED] WARNING: Drive sector ECC error corrected on port 0 on controller ID:0. (0x23)

Re: Run script as often as possible

2004-09-29 Thread Jacob Larsen
mysc:2345:respawn:/path/to/myscript What does the 'mysc' do? id:runlevels:action:process id is a unique sequence of 1-4 characters which identifies an entry in inittab from `man inittab` -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of unsubscribe. Trouble? Contact [EMAIL

Run script as often as possible

2004-09-28 Thread Jacob Larsen
I have a script that I'd like to run as often as possible. The script may only run in 1 instance. My idea is to have a cron script to start it once every hour. The script should write a run file, and if the run file exists, exit. Is this the best way? Thanks, Jacob -- To UNSUBSCRIBE, email to

Re: Run script as often as possible

2004-09-28 Thread Jacob Larsen
I have a script that I'd like to run as often as possible. The script may only run in 1 instance. My idea is to have a cron script to start it once every hour. The script should write a run file, and if the run file exists, exit. Is this the best way? yeah. Accpeted method is to write a lock

Re: Run script as often as possible

2004-09-28 Thread Jacob Larsen
mysc:2345:respawn:su - someuser -c /path/to/myscript Thanks! And I guess if I want to write output to a file I do this: mysc:2345:respawn:su - someuser -c /path/to/myscript /var/log/myscript.log -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of unsubscribe. Trouble? Contact

Unable to ping gateway

2004-09-20 Thread Jacob Larsen
I can ping my server, and the gateway from my home pc, but can not ping the gateway nor another server on the same subnet from the server. I use bond0 for eth0 and eth1. When I clear iptables there is no change. Any ideas? Best regards Jacob Larsen -- To UNSUBSCRIBE, email to [EMAIL PROTECTED

Re: Unable to ping gateway

2004-09-20 Thread Jacob Larsen
I can ping my server, and the gateway from my home pc, but can not ping the gateway nor another server on the same subnet from the server. I use bond0 for eth0 and eth1. When I clear iptables there is no change. Any ideas? ifconfig? # ifconfig bond0 Link encap:Ethernet HWaddr

Re: Unable to ping gateway

2004-09-20 Thread Jacob Larsen
0.0.0.0 81.7.167.2250.0.0.0 UG0 00 eth0 On Mon, 20 Sep 2004 17:14:51 +0200, Jacob Larsen wrote: I can ping my server, and the gateway from my home pc, but can not ping the gateway nor another server on the same subnet from the server. I use bond0 for eth0

Re: Unable to ping gateway

2004-09-20 Thread Jacob Larsen
Eric Gaumer wrote: On Mon, 2004-09-20 at 08:47, Jacob Larsen wrote: I can ping my server, and the gateway from my home pc, but can not ping the gateway nor another server on the same subnet from the server. I use bond0 for eth0 and eth1. When I clear iptables there is no change. eth0 Link

Re: Unable to ping gateway

2004-09-20 Thread Jacob Larsen
Sergio Basurto wrote: Which transmit policy are you using ? Round robin XOR Active-backup I have no idea. How can I find out? # cat /etc/modules # /etc/modules: kernel modules to load at boot time. # # This file should contain the names of kernel modules that are # to be loaded at boot time, one

Re: Unable to ping gateway

2004-09-20 Thread Jacob Larsen
Sergio Basurto wrote: When bonding is set up with the ARP monitor, it is important that the slave devices not have routes that supercede routes of the master (or, generally, not have routes at all). For example, suppose the bonding device bond0

Re: Unable to ping gateway

2004-09-20 Thread Jacob Larsen
Sergio Basurto wrote: Depends on the value that you pass at mode parameter: mode=1 Active-backup policy, configuration not needed mode=0, mode=2, mode=3 it does need to be configured for Round robin, XOR and boradcast policies. Do you know which one is the default? I remember when I set bonding

Re: Unable to ping gateway

2004-09-20 Thread Jacob Larsen
So the solution is to not set a gateway for eth0 and eth1, but only set it for bond0? Yes, But you also could have gw for your eth's cards, but you must assure that those routes do not supercede the bond0. I am not sure that I understand what you mean by supersede. The only gateway I have is

Re: Unable to ping gateway

2004-09-20 Thread Jacob Larsen
255.255.255.240 U 0 00 eth1 81.7.167.2240.0.0.0 255.255.255.240 U 0 00 bond0 0.0.0.0 81.7.167.2250.0.0.0 UG0 00 bond0 On Mon, 20 Sep 2004 22:21:58 +0200, Jacob Larsen wrote: So the solution is to not set a gateway for eth0

Re: Unable to ping gateway

2004-09-20 Thread Jacob Larsen
Sergio Basurto wrote: move from your routing table, the entries for your eth's cards. route del ... I am not sure I know what to do. If I do something wrong I have to drive 60km to fix it :) # route del ? Please help. Thanks, Jacob -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of

Re: Unable to ping gateway

2004-09-20 Thread Jacob Larsen
This is what I got. Which package do I need for ip neigh show? # route del -net 87.7.167.224 netmask 255.255.255.240 eth0 SIOCDELRT: No such process # route del -net 87.7.167.224 netmask 255.255.255.240 eth1 SIOCDELRT: No such process # route -n Kernel IP routing table Destination Gateway

Re: Unable to ping gateway

2004-09-20 Thread Jacob Larsen
Sergio Basurto wrote: #route del -host 87.7.167.224 eth0 #route del -host 87.7.167.224 eth1 # route del -host 87.7.167.224 eth0 SIOCDELRT: No such process # route del -host 87.7.167.224 eth1 SIOCDELRT: No such process # ip neigh show 81.7.167.225 dev bond0 lladdr 00:d0:00:e4:fc:0a nud reachable I

The patch for my raid controller doesn't seem to work as I whish

2004-03-08 Thread Jacob Larsen
I am trying to enable my Promise FastTrak S150 TX2plus in my Debian machine. The kernel is 2.4.22 and I have applied the following patch to the kernel. http://packages.debian.org/testing/devel/kernel-patch-2.4-fasttraks150 I need to compile the driver into the kernel as the raid will cover /