"Venugopal, N" wrote:

> any one knows answers to the below. we are in the process of porting a 
> High Availability solution from Solaris to Linux on IA.

first of all

HOWTO :
http://metalab.unc.edu/pub/Linux/ALPHA/linux-ha/High-Availability-HOWTO.html
High-Availability Linux Project
http://www.henge.com/~alanr/ha/

there was a link at /. yesterday about TurboLinux lauching the same kind
of project : http://community.turbolinux.com/cluster/

> 1. How to zip using gzip ?  Do you have to tar first ?  Or directly 
> you can ?

yes
gzip only compresses while tar's main purpose is to put a lot of files /
directories into one single file (usually a .tar)
actually, you can also compress with tar (to obtain a .tar.gz or .tgz)
ex:
tar cvzf yourtarfile.tgz ./dir_to_tar (creates a tarball of your dir)
tar xvzf tarball.tgz (recreate the hierarchy in the localdir from
tarball)

> 2.  pkgadd in Linux ?  How to build a package using rpm ?

see HOWTO or the 'Maximum RPM' book from RedHat
http://metalab.unc.edu/mdw/HOWTO/RPM-HOWTO.html
(building package)

> 3.  how to ensure metaset type functionality when configuring SW RAID
> in Linux ?

Linux soft RAID setup is done quite differently than Solaris
http://metalab.unc.edu/mdw/HOWTO/mini/Software-RAID.html for information 

> 4.  how to write agents for monitoring Enet, disks, CPU, DBMS (Oracle 
> and Sybase) in Linux ?

you have to know which program this agent is supposed to work with
(ie MRTG / SNMP, Big Brother,...)

> Need a guy with a thorough understanding of Linux kernel.

send a mail to linux-kernel as well

> 5.  How to recompile the kernel safely at one go ?  Would like to have
> somebody here who's done it at least once.

I think most of the people here have done it at least once in their life
basically,
- make your choice of what config you want to have (according to the
help in menuconfig/xconfig or Documentation/Configure.help and the type
of use)
- make dep;make clean; make bzlilo; make modules && make modules_install

if you don't have the technical knowledge to make such configuration /
installation, just keep the kernel shipped with your distro (RH, Debian)

on the other hand, this might be very usefull if you have special needs
or use of your server (SMP, firewall, router) until pre-configured
kernel are shipped along with the distrib

http://metalab.unc.edu/mdw/HOWTO/Kernel-HOWTO.html

-- 
Cyril Chaboisseau - tel +33 (0)3 88 14 44 09 / fax +33 (0)3 88 14 44 19
mailto:[EMAIL PROTECTED]
-
Linux SMP list: FIRST see FAQ at http://www.irisa.fr/prive/mentre/smp-faq/
To Unsubscribe: send "unsubscribe linux-smp" to [EMAIL PROTECTED]

Reply via email to