Re: rsync to clone server A to server B concerns?
Thanks Brian, I'll check those points over. :) 2009/6/4 Brian Millett : > On Thu, 2009-06-04 at 14:04 +1200, Paul Ward wrote: >> Hi, >> >> I want to clone server A to server B using rsync. >> >> If server A is RHEL3 on a hardware mirror and I have a newer server B >> that has new hardware and needs to be the same can I use rsync to copy >> the OS and installed oracle installation? >> >> My plan is to boot both servers up on a live cd, then copy the data >> across the network. >> I will first install a minimal install of RHEL3 on server b first then >> use rsync. >> I am concerned if the server will work afterwards due to different >> hardware although both servers are IBM, and other issues like grub, >> should I avoid updating grub. >> >> Any advice would be welcome as doing the whole build from fresh and >> installing all the custom software would be a pain. > > I've done just what you suggest. > > I had to boot the system b with the install cd and do a repair system > and it was fine. > > Some items to look out for: > > 1) network cards might not be configured correctly, or be configured > with the same ip so boot system b without a cable attached to fix the > nic > > 2) fstab might need to be fixed due to how the disks are referenced. IE > device name, UUID, or label > > 3) /boot/grub/menu.lst might need fixing also because of the nameing > conventiion of the disks. > > You also might want to look at the clonezilla livecd to clone from on > system to the next. That also works fantastic. > > -- > Brian Millett - [ Kosh, "Deathwalker"] > "A stroke of the brush does not guarantee art from the bristles." > > > -- > fedora-list mailing list > fedora-list@redhat.com > To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list > Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines > -- email: pnw...@googlemail.com website: http://www.pward.co.uk MSN: pob200...@hotmail.com Skype: paul.n.ward -- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
Re: rsync to clone server A to server B concerns?
That's what I was hoping for, I was going to ensure kudzu service is running before hand. As for the kernel I will have to check the version on server A against the install discs to ensure they are the same. Cheers for your reply 2009/6/4 Sam Varshavchik : > Paul Ward writes: > >> Hi, >> >> I want to clone server A to server B using rsync. >> >> If server A is RHEL3 on a hardware mirror and I have a newer server B >> that has new hardware and needs to be the same can I use rsync to copy >> the OS and installed oracle installation? > > Yes, as long as the partition layout is more or less the same. > > rsync won't copy over the bootloader. After the rsync completes, use the > installation CD to boot into rescue mode, chroot to /mnt/sysimage, then run > /sbin/grub-install. > >> I am concerned if the server will work afterwards due to different >> hardware although both servers are IBM, and other issues like grub, >> should I avoid updating grub. > > As long as the hard drives have the same physical arrangement and > partitioning, this'll work. Kudzu may go bonkers on the first boot, but it > should figure things out. Note that if your newer hardware is not supported > by RHEL3's older kernel, no rsync will help you. That's always a > possibility. > > > -- > fedora-list mailing list > fedora-list@redhat.com > To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list > Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines > -- email: pnw...@googlemail.com website: http://www.pward.co.uk MSN: pob200...@hotmail.com Skype: paul.n.ward -- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
rsync to clone server A to server B concerns?
Hi, I want to clone server A to server B using rsync. If server A is RHEL3 on a hardware mirror and I have a newer server B that has new hardware and needs to be the same can I use rsync to copy the OS and installed oracle installation? My plan is to boot both servers up on a live cd, then copy the data across the network. I will first install a minimal install of RHEL3 on server b first then use rsync. I am concerned if the server will work afterwards due to different hardware although both servers are IBM, and other issues like grub, should I avoid updating grub. Any advice would be welcome as doing the whole build from fresh and installing all the custom software would be a pain. Cheers -- -- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
How to find which disk a LUN is mapped to
Hi all, I need to find out which disk LUN6 points to on my RH3 box. I have looked at /proc/scsi/scsi This gives me LUNS from 00 to 05 Does this mean 05 is infact LUN06? If so where can I see where that device is then mapped to? Thanks -- -- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
Re: RM to mp3 script
Nice one, that seems like a very logical way to do it. I did try running from the at command and yes it did work. I will check the env out. Cheers 2009/4/4 Phil Meyer : > Paul Ward wrote: >> >> Hello, >> >> Ok forsome reason this script will not convert the rm stream to an mp3 >> if it runs in the cron. >> Can someone point me in the right direction on how to fix this. >> >> The script is as follows: >> > > ... > > Most often, these issues of running from command line, but not running from > cron, are environment related. > > To test this, run your script once using at instead of cron, ie: > > at now + 1 minute > at> script > at>d > > If that works, then its the envoronment, and you can 'cheat' to make cron > work. Here is how: > > Repeat the above at command, but this time give it 2 or three minutes. Long > enough for you to 'find' the atjob. > > $ su - > > # cd /var/spool/at > # ls > > You will notice at least one file here with a filename in the form of: > a1013b0cd1 > > This is a script that 'at' created, and it includes your complete > environment as of when 'at' was executed. > > Copy this script to some place before it runs and gets removed, ie: > > # cp a1013b0cd1 /tmp/template_script.sh > # chown myuser:mygroup /tmp/template_script.sh > > You now have a template you can use for cronjobs that require a user > environment to run. > > Good Luck! > > -- > fedora-list mailing list > fedora-list@redhat.com > To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list > Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines > -- email: pnw...@googlemail.com website: http://www.pward.co.uk MSN: pob200...@hotmail.com Skype: paul.n.ward -- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
RM to mp3 script
Hello, Ok forsome reason this script will not convert the rm stream to an mp3 if it runs in the cron. Can someone point me in the right direction on how to fix this. The script is as follows: #!/bin/bash DATE=`date +%A` SHOWNAME=$1 TSPLIT=$4 ALBUM=$2 DIR="/usr/local/bin/bbc_radio1" RECORDINGPATH=${DIR}/ WEBDIR=/var/www/bbc/ DURATION=$3 DURATION=`expr $DURATION \* 60` ATTIME=`expr $3 + 5` BITRATE="64" HISTORY=${WEBDIR}/history.log _record() { echo "--" >> $HISTORY echo "Start REC:" `date` >> $HISTORY echo " Recording" $SHOWNAME >> $HISTORY echo " Length:" `expr $DURATION / 60 ` "minutes" >> $HISTORY cd ${RECORDINGPATH} mplayer -dumpstream "-playlist" http://www.bbc.co.uk/radio1/realaudio/media/r1live.ram -dumpfile ${RECORDINGPATH}${SHOWNAME}.dump -vc dummy -vo null & MPLAYPROCESS=$! echo $MPLAYPROCESS > /tmp/radio1.pid echo " PID:" $MPLAYPROCESS >> $HISTORY Kill process when show finished. at now + $ATTIME minutes <> $HISTORY kill -9 $MPLAYPROCESS && echo "PID Killed" >> $HISTORY echo "Stop REC:" `date` >> $HISTORY ls -lh ${RECORDINGPATH}${SHOWNAME}.dump | awk ' { print "Showname: " $8 " Size: "$5 } ' >> $HISTORY } _convert() { # convert stream to mp3 format echo "Converting Stream to MP3" `date` >> $HISTORY # ffmpeg -i "$RECORDINGPATH$SHOWNAME".dump -f wav - | lame - -b $BITRATE $WEBDIR/${DATE}_"$SHOWNAME".mp3 #mencoder "$RECORDINGPATH$SHOWNAME".dump -ovc frameno -oac mp3lame -of rawaudio -lameopts cbr:br=40 -o $WEBDIR/${DATE}_"$SHOWNAME".mp3 ffmpeg -i "$RECORDINGPATH$SHOWNAME".dump -ab $BITRATE $WEBDIR/${DATE}_"$SHOWNAME".mp3 > /tmp/convert.dbg && echo "Conversion done" >> $HISTORY ls -lh $WEBDIR | grep ${DATE}_"$SHOWNAME".mp3 | awk ' { print "Showname: " $8 " Size: "$5 } '>> $HISTORY echo "--" >> $HISTORY } _id3tag() { mp3info -d ${WEBDIR}/${DATE}/*.mp3 mp3info -a $ALBUM -l $SHOWNAME -t $SHOWNAME ${WEBDIR}/${DATE}/*.mp3 echo "ID3tag set" } _splitmp3() { echo ${TSPLIT} mp3splt -f -t "${TSPLIT}".0 -a ${WEBDIR}${DATE}_"${SHOWNAME}".mp3 >> $HISTORY } _cleanup() { #Cleanup Files mkdir -p $WEBDIR rm -v "$RECORDINGPATH$SHOWNAME".dump } _record _convert #_splitmp3 #_id3tag #_cleanup I dont want to convert to a wav then mp3 as the files sizes will be huge for the wav. I run the script as: xx xx * * * script.sh Show1 BBC 15 5 I understand parts of the script don't work yet but its the conversion I am focusing on. you can see I have tried some other variations of the conversion all fail to work. It only converts for a small time before stopping. Thanks -- email: pnw...@googlemail.com website: http://www.pward.co.uk MSN: pob200...@hotmail.com Skype: paul.n.ward -- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
view more or less?
Hello, just a quick question? I was wanting to look at a file the other day and my colleague insisted I do not use less but view instead. I thought about this but could not think of a good reason to use view over less. I think less is more than more and view is less then more or less than less? Do you agree? -- email: pnw...@googlemail.com website: http://www.pward.co.uk MSN: pob200...@hotmail.com Skype: paul.n.ward -- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
converting rm to mp3 via cron issue
Hi all, I am trying to convert a rm stream captured from the bbc as a .rm to mp3. The idea being I can convert a bbc show like the charts to mp3 and have it moved to the webserver for download on my work machine in another country. I found 40k was just about bearable in quality, for the smallest size possible. The capture part works well but when try to convert the file it only converts 400k before stopping when run from a cron job. when I run it on a comand line it works as esxpected. Can anyone suggest a work around for this? Would it be best to split my script and call the conversion as a separate one. #Capture is: SHOWNAME=$1 DURATION=$3 DURATION=`expr $DURATION \* 60` BITRATE="40k" mplayer -dumpstream "-playlist" http://www.bbc.co.uk/radio1/realaudio/media/r1live.ram -dumpfile ${RECORDINGPATH}${SHOWNAME}.dump -vc dummy -vo null & MPLAYPROCESS=$! sleep $DURATION #conversion part: ffmpeg -i "$RECORDINGPATH$SHOWNAME".dump -f wav - | lame - -b $BITRATE $WEBDIR/${DATE}_"$SHOWNAME".mp3 I am using ffmeg as I can encode to wav then mp3 in one go. mencoder did not seem to want to work this way and I ended up with huge wav files, which after a 3 hour recording is too big on disk. If anyone has any other ideas let me know. -- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
Redhat 2 error message during kernel install
Hi all, I know this is not Fedora but it is close enough I think. I have just updated a Redhat 2 box running kernel " uname -a Linux erato 2.4.9-e.72enterprise #1 SMP Tue Jul 3 21:57:23 EDT 2007 i686 unknown When installing a new kernel after downloading it via rhn I got the follwoing: [r...@erato up2date]# rpm -ivh kernel/kernel-enterprise-2.4.9-e.74.i686.rpm Preparing...### [100%] 1:kernel-enterprise ### [100%] All of your loopback devices are in use! I checked arounf the web but struggled to find an answer. It seems according to grub it did not write the initrd line into the config, so I guess the initrd went wrong. I looked at the mods loaded and noticed no loop device, however after the attemped install the folloing line appeared. [r...@erato up2date]# lsmod Module Size Used byNot tainted loop 11952 0 At this point I ran out of ideas, can anyone suggest what step to take next, this is a live server and as such do not want tt do lots of reboots, it is also a remote server that I only have access to via ssh, so want to be careful about what I do to the network and loopback device. Thanks Paul -- -- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
Re: Redhat up2date rpms to date
That would be my preferred way, unfortunately the comapany insist I have o download all the updates first then apply them to the servers. I have been told to do it the following (tried and trusted way) This means having to use up2date -du. cd /var/spool/updates mkdir /var/spool/updates/kernel mv kernel* to /var/spool/updates/kernel rpm -ivh *.rpm cd /var/spool/updates/kernel rpm -*.kernel.xxx rpm -ivh kernel-utils.xxx but of course as I work around the boxes newer updates may arrive. :( 2009/3/23 Dennis Gilmore : > On Sunday 22 March 2009 08:04:20 pm Paul Ward wrote: >> Hi, >> >> I am looking for an easy way to update over 20 servers via up2date. >> >> As it will take me several days to update all the servers is their an >> easy way to add them to a rhn channel that will not accept any newer >> packages as of a date and time I choose, as I worry that a new package >> or even kernel maybe released in the middle of my updating / >> downloading rpms to the servers. >> >> I am going to use # up2date -du to start off with, however this could >> still cause a problem for me. >> > It sounds like you are using RHEL and RHN. all you need to do is schedule the > update in the web interface and all machines will get updated on there next > checkin. You will have all boxes updated in a matter of hours. > > Dennis > > -- > fedora-list mailing list > fedora-list@redhat.com > To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list > Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines > -- email: pnw...@googlemail.com website: http://www.pward.co.uk MSN: pob200...@hotmail.com Skype: paul.n.ward -- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
Redhat up2date rpms to date
Hi, I am looking for an easy way to update over 20 servers via up2date. As it will take me several days to update all the servers is their an easy way to add them to a rhn channel that will not accept any newer packages as of a date and time I choose, as I worry that a new package or even kernel maybe released in the middle of my updating / downloading rpms to the servers. I am going to use # up2date -du to start off with, however this could still cause a problem for me. Thanks -- email: pnw...@googlemail.com -- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
Keep 2 kernels using up2date on RHEL4
Hello, Please can someone tell me where the config for how many kernels to keep is. I wish to use up2date on my rhel 4 server and ensure it keeps at least 2 copies of the kernel in grub. I can't find it in up2date --configure And I do not think it is in grub.conf Thanks -- -- email: pnw...@googlemail.com website: http://www.pward.co.uk MSN: pob200...@hotmail.com Skype: paul.n.ward -- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
Disk Errors during boot and run time.
Hi, I have been asked to look at a server that has some disk issues. If I try and do a ls /boot I get the following: # ls /boot ls: reading directory /boot: Input/output error I have been told that the disks use multipath but I have no experience of this to date. I know the disks are on a SAN but as yet have not been able to locate them using the IBM SAN manager. Can someone help me unravel what I can do to get this server healthy again. This is the dmesg file during the boot up Linux version 2.6.18-53.1.21.el5PAE (brewbuil...@ls20-bc2-13.build.redhat.com) (gcc version 4.1.2 20070626 (Red Hat 4.1.2-14)) #1 SMP Wed May 7 08:56:33 EDT 2008 BIOS-provided physical RAM map: BIOS-e820: - 0009d800 (usable) BIOS-e820: 0009d800 - 000a (reserved) BIOS-e820: 000e - 0010 (reserved) BIOS-e820: 0010 - cffbce40 (usable) BIOS-e820: cffbce40 - cffd (ACPI data) BIOS-e820: cffd - d000 (reserved) BIOS-e820: e000 - f000 (reserved) BIOS-e820: fec0 - 0001 (reserved) BIOS-e820: 0001 - 00013000 (usable) 3968MB HIGHMEM available. 896MB LOWMEM available. found SMP MP-table at 0009d940 Using x86 segment limits to approximate NX protection On node 0 totalpages: 1245184 DMA zone: 4096 pages, LIFO batch:0 Normal zone: 225280 pages, LIFO batch:31 HighMem zone: 1015808 pages, LIFO batch:31 DMI 2.4 present. Using APIC driver default ACPI: RSDP (v002 IBM ) @ 0x000fdfd0 ACPI: XSDT (v001 IBMSERBLADE 0x1001 IBM 0x45444f43) @ 0xcffcff00 ACPI: FADT (v002 IBMSERBLADE 0x1001 IBM 0x45444f43) @ 0xcffcfe40 ACPI: MADT (v001 IBMSERBLADE 0x1001 IBM 0x45444f43) @ 0xcffcfdc0 ACPI: MCFG (v001 IBMSERBLADE 0x1001 IBM 0x45444f43) @ 0xcffcfd80 ACPI: DSDT (v002 IBMSERBLADE 0x1000 INTL 0x20060707) @ 0x ACPI: PM-Timer IO Port: 0x588 ACPI: Local APIC address 0xfee0 ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) Processor #0 6:15 APIC version 20 ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) Processor #1 6:15 APIC version 20 ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1]) ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1]) ACPI: IOAPIC (id[0x0e] address[0xfec0] gsi_base[0]) IOAPIC[0]: apic_id 14, version 32, address 0xfec0, GSI 0-23 ACPI: IOAPIC (id[0x0d] address[0xfec8] gsi_base[24]) IOAPIC[1]: apic_id 13, version 32, address 0xfec8, GSI 24-47 ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) ACPI: IRQ0 used by override. ACPI: IRQ2 used by override. ACPI: IRQ9 used by override. Enabling APIC mode: Flat. Using 2 I/O APICs Using ACPI (MADT) for SMP configuration information Allocating PCI resources starting at d100 (gap: d000:1000) Detected 3000.364 MHz processor. Built 1 zonelists. Total pages: 1245184 Kernel command line: ro root=/dev/VolGroup00/LogVol00 rhgb quiet crashkernel=1...@16m mapped APIC to d000 (fee0) mapped IOAPIC to c000 (fec0) mapped IOAPIC to b000 (fec8) Enabling fast FPU save and restore... done. Enabling unmasked SIMD FPU exception support... done. Initializing CPU#0 CPU 0 irqstacks, hard=c074 soft=c072 PID hash table entries: 4096 (order: 12, 16384 bytes) Console: colour VGA+ 80x25 Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) Memory: 4014432k/4980736k available (2078k kernel code, 178348k reserved, 859k data, 220k init, 3276528k highmem) Checking if this processor honours the WP bit even in supervisor mode... Ok. Calibrating delay using timer specific routine.. 6002.55 BogoMIPS (lpj=3001278) Security Framework v1.0.0 initialized SELinux: Initializing. SELinux: Starting in permissive mode selinux_register_security: Registering secondary module capability Capability LSM initialized as secondary Mount-cache hash table entries: 512 CPU: After generic identify, caps: bfebfbff 2000 0004e3bd 0001 CPU: After vendor identify, caps: bfebfbff 2000 0004e3bd 0001 monitor/mwait feature present. using mwait in idle threads. CPU: L1 I cache: 32K, L1 D cache: 32K CPU: L2 cache: 4096K CPU: Physical Processor ID: 0 CPU: Processor Core ID: 0 CPU: After all inits, caps: bfebf3ff 2000 0940 0004e3bd 0001 Intel machine check architecture supported. Intel machine check reporting enabled on CPU#0. Checking 'hlt' instruction... OK. SMP alternatives: switching to UP code ACPI: Core revision 20060707 CPU0: Intel(R) Xeon(R) CPU5160 @ 3.00GHz stepping 0b SMP alternatives: switching to SMP code Booting processor 1/1 eip 3000 CPU 1 irqstacks, hard=c0741000 soft=c0721000 Initializing CPU#1 Calibrating delay using timer specific routine.. 599
Re: RHN Trial Subscription Wanted for 30 days
Yes but could only find the buy it option not a free trial. 2009/2/25 Ed Greshko : > Paul Ward wrote: >> Hi, >> >> I would like to do some practising on subscribing to channels and >> patching via up2date on rhel4, 3 and 2 >> >> Does any one know how I can get a 30 day trail to do this so I can >> subscribe.( I am a RHCT if it helps?) >> >> I did have some numbers from the course I went on a long time ago and >> never used, but can not get to them for several more months as I am >> away. >> >> If it is possible to do up2date in Centos I would consider but really >> wanted RHEL for screenshots. >> >> Cheers. >> >> > Did you consider going to www.redhat.com? > > A few seconds of looking around got me to > http://www.redhat.com/rhel/details/eval/ > > > > -- > "My father? My father left when I was quite young. Well actually, he was > asked to leave. He had trouble metabolizing alcohol." -- George Carlin > mei-mei.gres...@greshko.com http://tw.youtube.com/watch?v=cCSz_koUhSg > > > -- > fedora-list mailing list > fedora-list@redhat.com > To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list > Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines > -- email: pnw...@googlemail.com website: http://www.pward.co.uk MSN: pob200...@hotmail.com Skype: paul.n.ward -- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
RHN Trial Subscription Wanted for 30 days
Hi, I would like to do some practising on subscribing to channels and patching via up2date on rhel4, 3 and 2 Does any one know how I can get a 30 day trail to do this so I can subscribe.( I am a RHCT if it helps?) I did have some numbers from the course I went on a long time ago and never used, but can not get to them for several more months as I am away. If it is possible to do up2date in Centos I would consider but really wanted RHEL for screenshots. Cheers. -- email: pnw...@googlemail.com website: http://www.pward.co.uk MSN: pob200...@hotmail.com Skype: paul.n.ward -- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
What's the Audit command "I Need it now!"
Hi All, About 18 months ago I recall having to run an audit command on our servers that created an archive file (tar maybe) of all the system configurations files and info to send to a redhat technician. I have completely forgotten the name of it can someone please tell me what it's called, I don't think it's called auditd though. -- email: pnw...@googlemail.com website: http://www.pward.co.uk MSN: pob200...@hotmail.com Skype: paul.n.ward -- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines
ISCSI Installation Help
Hi All, Can anyone help me with an install of ISCSI on a RHEL4 box. I have been asked to mount an ISCSI disk to a mount point using IP. Can anyone point me in the right direction. I have installed the initiator utils and also the iscsitarget-0.4.16.tar.gz and built this with no problems but do not know what to do next. Help Please. Thanks -- email: [EMAIL PROTECTED] website: http://www.pward.co.uk MSN: [EMAIL PROTECTED] Skype: paul.n.ward -- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines