Linux-Misc Digest #976, Volume #23 Tue, 28 Mar 00 02:13:03 EST
Contents:
Re: find and grep ? (James Silverton)
Re: FreeBSD (Vilmos Soti)
Re: LILO doesn't find my NT Partition (Vilmos Soti)
Re: What is ClearCase? (Grant Edwards)
Re: Athlon kernel compile (Janet)
Re: latest gnome dependencies ([EMAIL PROTECTED])
Re: FreeBSD (The Scotts)
Soundblaster Live problem (Janet)
My sound is gone upgrading from SuSE 6.0 to 6.2 (David Steuber)
SQUID error. You have run out of swap file numbers ("Regular")
Anyone have RH 6.2 i386 ISO yet? (John Hovell)
Re: SCSI Adaptec 2940 U2W Redhat 6.1 ("David ..")
Re: Newbie question about Loganalyzers... (Vid Strpic)
I/O and IRQ port conflicts ("Corry Parrott")
Re: Duplicating hard disk (Michael O'Connell)
Re: RH 6.1 boot generates a FPU error (David Efflandt)
----------------------------------------------------------------------------
From: James Silverton <[EMAIL PROTECTED]>
Subject: Re: find and grep ?
Date: Mon, 27 Mar 2000 23:11:44 -0500
[EMAIL PROTECTED] wrote:
>
> On Mon, 27 Mar 2000, James Silverton wrote:
>
> > Andreas Kahari wrote:
> > >
> > > In article <8bnfgp$8rj$[EMAIL PROTECTED]>,
> > > "Doug" <[EMAIL PROTECTED]> wrote:
> > > > Hello all,
> > > >
> > > > How do I give the output of something like
> > > > find . -name '*html'
> > > > to grep so that I can search through the contents of all the found
> > > files.
> > > >
> > > > eg: to find all the *html files that contain <FORM>
> > > >
> > > > Piping doesn't seem to work as the file list is searched, not the
> > > contents
> > > > of each file in the list.
> > > >
> > > > Thanks,
> > > > Doug
> > > >
> > > >
> > >
> > > Try
> > >
> > > grep '<FORM>' `find ./ -name "*.html" -print`
> > >
> > > Notice the use of backticks to get the filenames to run grep on.
> >
> > Neat! This is not meant to be be pedantic but the use of the back tick
> > rather threw me since the only shell I use much is bash where
> > $( commands ) would be more usual instead of ` commands `. However, I
> > did check and I see that the back tick (or "back quote") method of
> > command substitution is listed "for backwards compatibility".
>
> I wonder. I always use the backticks. I've been under the impression
> that most people do. I don't know.
>
> In any case, command substitution is not a good idea for this problem. You
> are, in effect, putting the names of many many files on the command line.
> In practice there is a limit to the length of the command line which you
> may easily exceed. Example: go to your root directory '/' and try
>
> grep blahblah `find . -print`
>
> You're just about guaranteed to get an error message about the argument
> list being too long.
>
> You are better off using -exec
>
> find . -name "*.html" -exec grep blahblah {} \;
>
> or xargs
>
> find . -name "*.html" | xargs grep blahblah
I don't disagree with you at all; xargs would have been the way I would
have gone. However, command substitution is a remarkably flexible way to
do things and the modern $(...) delineation is much less liable to error
than back quotes which can be misread and miscounted very easily. There
is a very good discussion in "Learning the Bash Shell" by Newham and
Rosenblatt (O'Reilly) where it is shown how command substitutions can be
nested. The book is one I would recommend to anyone using Linux and
hence bash.
Jim.
--
James V. Silverton
Potomac, Maryland.
------------------------------
Subject: Re: FreeBSD
From: Vilmos Soti <[EMAIL PROTECTED]>
Date: Tue, 28 Mar 2000 04:17:25 GMT
Ben Spada <[EMAIL PROTECTED]> writes:
> I was asking for a FreeBSD newsgroup, read my post again. Looks to me
> like I was asking for a newsgroup, not FreeBSD, I know there is only
> one, I am using it right now. It's a good o/s. I would just like to
> know if there are any newsgroups. Thanks guys,
Here is a list that @home carries. Better said these have the string freebsd
in it.
comp.unix.bsd.freebsd
comp.unix.bsd.freebsd.announce
comp.unix.bsd.freebsd.misc
fj.os.bsd.freebsd
han.comp.os.freebsd
han.sys.freebsd
japan.comp.freebsd
muc.lists.freebsd.announce
muc.lists.freebsd.atm
muc.lists.freebsd.bugs
muc.lists.freebsd.chat
muc.lists.freebsd.commit
muc.lists.freebsd.config
muc.lists.freebsd.current
muc.lists.freebsd.database
muc.lists.freebsd.doc
muc.lists.freebsd.emulation
muc.lists.freebsd.fs
muc.lists.freebsd.hackers
muc.lists.freebsd.hardware
muc.lists.freebsd.hubs
muc.lists.freebsd.install
muc.lists.freebsd.isp
muc.lists.freebsd.jobs
muc.lists.freebsd.lite2
muc.lists.freebsd.mobile
muc.lists.freebsd.multimedia
muc.lists.freebsd.newbies
muc.lists.freebsd.platforms
muc.lists.freebsd.ports
muc.lists.freebsd.questions
muc.lists.freebsd.realtime
muc.lists.freebsd.scsi
muc.lists.freebsd.security
muc.lists.freebsd.security.notifications
muc.lists.freebsd.smp
muc.lists.freebsd.stable
muc.lists.freebsd.user-groups
pl.comp.os.freebsd
tnn.os.freebsd
ukr.comp.freebsd.current
ukr.comp.freebsd.isp
ukr.comp.freebsd.questions
Vilmos (This is my name, not a freebsd related newsgroup.)
------------------------------
Subject: Re: LILO doesn't find my NT Partition
From: Vilmos Soti <[EMAIL PROTECTED]>
Date: Tue, 28 Mar 2000 04:19:09 GMT
Robert Heller <[EMAIL PROTECTED]> writes:
> Not *strictly* true. Lilo can boot NT, but only if NT's C: drive is a
> FAT filesystem, not NTFS. If the NTFS option was chosen for NT's C:
> drive, then you need to use NT's boot loader.
I booted NT on NTFS from lilo. It works.
Vilmos
------------------------------
From: [EMAIL PROTECTED] (Grant Edwards)
Subject: Re: What is ClearCase?
Date: Tue, 28 Mar 2000 04:28:48 GMT
On Mon, 27 Mar 2000 16:47:50 -0800 (PST), J Garcia <[EMAIL PROTECTED]> wrote:
>What is ClearCase
It's a revision control system.
>and is it available for Linux?
I heard a rumor that they had it running on Linux, but weren't
shipping.
>Is it similar so RCS?
Yes. It's a bit more complex -- it uses a server which
presents the files in a sort of virtual file system.
>Are there any (free/GNU) software configuration
>management tools available for Linux?
RCS and CVS.
--
Grant Edwards grante Yow! Did I say I was a
at sardine? Or a bus???
visi.com
------------------------------
From: Janet <[EMAIL PROTECTED]>
Subject: Re: Athlon kernel compile
Date: 27 Mar 2000 20:20:09 -0800
"Tom Hoffmann" <[EMAIL PROTECTED]> writes:
> MTRR only appies to PII and P-Pro processors. It will not hurt anything
> to enable it, but you will get no benefit from having it enabled and it
> will make your kernel larger.
>
> Specify the processor as a 686.
Fabulous, it works wonderfully! Just one question. After I compiled the
kernel, I tried to make a boot disk by doing
cp /usr/src/linux/arch/i386/boot/vmlinuz /dev/fd0
but I got a "No space left on device" error. I've done this before with
older kernel versions and no problems. So then I tried formatting the
disk using
mke2fs /dev/fd0
but that just went in an endless loop. Eventually I gave up and just
stuck a new entry in lilo.conf, but I still have no boot floppy...
Janet
------------------------------
From: [EMAIL PROTECTED]
Subject: Re: latest gnome dependencies
Date: Tue, 28 Mar 2000 04:33:22 GMT
In article <89lvdn$jo8$[EMAIL PROTECTED]>,
> error: failed dependencies:
> windowmanager is needed by gnome-core-1.0.55-9
>
> I'm trying to find this package : windowmanager
>unsuccessfully.
You need to upgrade whatever Window manager you
are using. For axample, I use E so getting the
latest E rpms fixed this for me.
Regards,
Sent via Deja.com http://www.deja.com/
Before you buy.
------------------------------
From: The Scotts <[EMAIL PROTECTED]>
Subject: Re: FreeBSD
Date: Tue, 28 Mar 2000 04:45:03 +0000
Try searching on deja.com for bsd or use your news reader's search
capability for bsd. Hope I read your post correctly...
Bob Scott
> I was asking for a FreeBSD newsgroup, read my post again. Looks to me
> like I was asking for a newsgroup, not FreeBSD, I know there is only
> one, I am using it right now. It's a good o/s. I would just like to
> know if there are any newsgroups. Thanks guys,
>
> Ben
------------------------------
From: Janet <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.hardware
Subject: Soundblaster Live problem
Date: 27 Mar 2000 20:39:17 -0800
Hi,
I'm trying to use the emu10k1 module at
http://opensource.creative.com
Unfortunately, whenever I try to load the module (which compiles fine), I
get
emu10k1.o: init_module: Device or resource busy
I disabled PnP OS in the BIOS, but my kernel is compiled with PnP
support. Do I need to get rid of that, or is there some other problem?
Thanks,
Janet
------------------------------
Subject: My sound is gone upgrading from SuSE 6.0 to 6.2
From: David Steuber <[EMAIL PROTECTED]>
Date: Tue, 28 Mar 2000 06:00:02 GMT
I have a Gateway Solo that used to have working sound under SuSE 6.0.
I just recently upgraded to SuSE 6.2 and sound doesn't seem to work
anymore.
Has anyone had this problem? What was the fix? The OSS supplied on
the CD wouldn't install. It claimed that the kernel was not
compatible. I have loadable module versions turned on.
Anyone have the relevant portion of the .config file for building the
kernel handy?
Mine goes like this:
# Automatically generated by make menuconfig: don't edit
#
#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y
#
# Processor type and features
#
# CONFIG_M386 is not set
# CONFIG_M486 is not set
# CONFIG_M586 is not set
# CONFIG_M586TSC is not set
CONFIG_M686=y
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_INVLPG=y
CONFIG_X86_BSWAP=y
CONFIG_X86_POPAD_OK=y
CONFIG_X86_TSC=y
CONFIG_X86_GOOD_APIC=y
# CONFIG_MATH_EMULATION is not set
# CONFIG_MTRR is not set
# CONFIG_SMP is not set
#
# Loadable module support
#
CONFIG_MODULES=y
CONFIG_MODVERSIONS=y
CONFIG_KMOD=y
#
# General setup
#
CONFIG_NET=y
CONFIG_PCI=y
# CONFIG_PCI_GOBIOS is not set
# CONFIG_PCI_GODIRECT is not set
CONFIG_PCI_GOANY=y
CONFIG_PCI_BIOS=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_QUIRKS=y
# CONFIG_PCI_OPTIMIZE is not set
CONFIG_PCI_OLD_PROC=y
# CONFIG_MCA is not set
# CONFIG_VISWS is not set
CONFIG_SYSVIPC=y
# CONFIG_BSD_PROCESS_ACCT is not set
CONFIG_SYSCTL=y
CONFIG_BINFMT_AOUT=y
CONFIG_BINFMT_ELF=y
CONFIG_BINFMT_MISC=y
# CONFIG_BINFMT_JAVA is not set
# CONFIG_PARPORT is not set
CONFIG_APM=y
# CONFIG_APM_IGNORE_USER_SUSPEND is not set
# CONFIG_APM_DO_ENABLE is not set
# CONFIG_APM_CPU_IDLE is not set
# CONFIG_APM_DISPLAY_BLANK is not set
CONFIG_APM_POWER_OFF=y
CONFIG_APM_IGNORE_MULTIPLE_SUSPEND=y
CONFIG_APM_IGNORE_SUSPEND_BOUNCE=y
CONFIG_APM_RTC_IS_GMT=y
# CONFIG_APM_ALLOW_INTS is not set
#
# Plug and Play support
#
CONFIG_PNP=y
#
# Block devices
#
CONFIG_BLK_DEV_FD=y
CONFIG_BLK_DEV_IDE=y
# CONFIG_BLK_DEV_HD_IDE is not set
CONFIG_BLK_DEV_IDEDISK=y
CONFIG_BLK_DEV_IDECD=y
# CONFIG_BLK_DEV_IDETAPE is not set
# CONFIG_BLK_DEV_IDEFLOPPY is not set
# CONFIG_BLK_DEV_IDESCSI is not set
CONFIG_BLK_DEV_CMD640=y
# CONFIG_BLK_DEV_CMD640_ENHANCED is not set
CONFIG_BLK_DEV_RZ1000=y
CONFIG_BLK_DEV_IDEPCI=y
CONFIG_BLK_DEV_IDEDMA=y
# CONFIG_BLK_DEV_OFFBOARD is not set
CONFIG_IDEDMA_AUTO=y
# CONFIG_BLK_DEV_OPTI621 is not set
# CONFIG_BLK_DEV_TRM290 is not set
# CONFIG_BLK_DEV_NS87415 is not set
# CONFIG_BLK_DEV_VIA82C586 is not set
# CONFIG_BLK_DEV_CMD646 is not set
# CONFIG_IDE_CHIPSETS is not set
CONFIG_BLK_DEV_LOOP=m
# CONFIG_BLK_DEV_NBD is not set
# CONFIG_BLK_DEV_MD is not set
# CONFIG_BLK_DEV_RAM is not set
# CONFIG_BLK_DEV_XD is not set
CONFIG_PARIDE_PARPORT=y
# CONFIG_PARIDE is not set
# CONFIG_BLK_DEV_HD is not set
#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_NETLINK is not set
# CONFIG_FIREWALL is not set
# CONFIG_FILTER is not set
CONFIG_UNIX=y
CONFIG_INET=y
# CONFIG_IP_MULTICAST is not set
# CONFIG_IP_ADVANCED_ROUTER is not set
# CONFIG_IP_PNP is not set
# CONFIG_IP_ROUTER is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE is not set
# CONFIG_IP_ALIAS is not set
CONFIG_SYN_COOKIES=y
# CONFIG_INET_RARP is not set
CONFIG_SKB_LARGE=y
# CONFIG_IPV6 is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_BRIDGE is not set
# CONFIG_LLC is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set
# CONFIG_CPU_IS_SLOW is not set
#
# QoS and/or fair queueing
#
# CONFIG_NET_SCHED is not set
#
# SCSI support
#
# CONFIG_SCSI is not set
#
# Network device support
#
CONFIG_NETDEVICES=y
# CONFIG_ARCNET is not set
CONFIG_DUMMY=m
# CONFIG_EQUALIZER is not set
CONFIG_NET_ETHERNET=y
CONFIG_NET_VENDOR_3COM=y
CONFIG_EL1=m
CONFIG_EL2=m
CONFIG_ELPLUS=m
CONFIG_EL16=m
CONFIG_EL3=m
CONFIG_3C515=m
CONFIG_VORTEX=m
# CONFIG_LANCE is not set
# CONFIG_NET_VENDOR_SMC is not set
# CONFIG_NET_VENDOR_RACAL is not set
# CONFIG_RTL8139 is not set
# CONFIG_YELLOWFIN is not set
# CONFIG_ACENIC is not set
# CONFIG_NET_ISA is not set
CONFIG_NET_EISA=y
# CONFIG_PCNET32 is not set
# CONFIG_AC3200 is not set
# CONFIG_APRICOT is not set
# CONFIG_CS89x0 is not set
# CONFIG_DE4X5 is not set
# CONFIG_DEC_ELCP is not set
# CONFIG_DGRS is not set
# CONFIG_EEXPRESS_PRO100 is not set
# CONFIG_LNE390 is not set
# CONFIG_NE3210 is not set
# CONFIG_NE2K_PCI is not set
# CONFIG_TLAN is not set
# CONFIG_VIA_RHINE is not set
# CONFIG_ES3210 is not set
# CONFIG_EPIC100 is not set
# CONFIG_ZNET is not set
# CONFIG_NET_POCKET is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_DLCI is not set
# CONFIG_PPP is not set
# CONFIG_SLIP is not set
# CONFIG_NET_RADIO is not set
# CONFIG_TR is not set
# CONFIG_SHAPER is not set
# CONFIG_HOSTESS_SV11 is not set
# CONFIG_COSA is not set
# CONFIG_RCPCI is not set
#
# Amateur Radio support
#
# CONFIG_HAMRADIO is not set
#
# IrDA subsystem support
#
# CONFIG_IRDA is not set
#
# ISDN subsystem
#
# CONFIG_ISDN is not set
#
# Old CD-ROM drivers (not SCSI, not IDE)
#
# CONFIG_CD_NO_IDESCSI is not set
#
# Character devices
#
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_SERIAL=y
# CONFIG_SERIAL_CONSOLE is not set
# CONFIG_SERIAL_EXTENDED is not set
# CONFIG_SERIAL_NONSTANDARD is not set
CONFIG_UNIX98_PTYS=y
CONFIG_UNIX98_PTY_COUNT=256
CONFIG_MOUSE=y
#
# Mice
#
# CONFIG_ATIXL_BUSMOUSE is not set
# CONFIG_BUSMOUSE is not set
# CONFIG_MS_BUSMOUSE is not set
CONFIG_PSMOUSE=y
CONFIG_82C710_MOUSE=y
# CONFIG_PC110_PAD is not set
# CONFIG_QIC02_TAPE is not set
# CONFIG_WATCHDOG is not set
# CONFIG_NVRAM is not set
# CONFIG_RTC is not set
#
# Video For Linux
#
# CONFIG_VIDEO_DEV is not set
#
# Joystick support
#
# CONFIG_JOYSTICK is not set
# CONFIG_DTLK is not set
#
# Ftape, the floppy tape device driver
#
# CONFIG_FTAPE is not set
#
# Filesystems
#
# CONFIG_QUOTA is not set
CONFIG_AUTOFS_FS=y
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_HFS_FS is not set
CONFIG_FAT_FS=y
CONFIG_MSDOS_FS=m
# CONFIG_UMSDOS_FS is not set
CONFIG_VFAT_FS=m
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
# CONFIG_MINIX_FS is not set
# CONFIG_NTFS_FS is not set
# CONFIG_HPFS_FS is not set
CONFIG_PROC_FS=y
CONFIG_DEVPTS_FS=y
# CONFIG_QNX4FS_FS is not set
# CONFIG_ROMFS_FS is not set
CONFIG_EXT2_FS=y
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set
#
# Network File Systems
#
# CONFIG_CODA_FS is not set
CONFIG_NFS_FS=y
# CONFIG_NFSD is not set
CONFIG_SUNRPC=y
CONFIG_LOCKD=y
CONFIG_SMB_FS=y
# CONFIG_NCP_FS is not set
#
# Partition Types
#
# CONFIG_BSD_DISKLABEL is not set
# CONFIG_MAC_PARTITION is not set
# CONFIG_SMD_DISKLABEL is not set
# CONFIG_SOLARIS_X86_PARTITION is not set
# CONFIG_UNIXWARE_DISKLABEL is not set
CONFIG_NLS=y
#
# Native Language Support
#
CONFIG_NLS_CODEPAGE_437=y
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
CONFIG_NLS_ISO8859_1=y
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_15 is not set
# CONFIG_NLS_KOI8_R is not set
#
# Console drivers
#
CONFIG_VGA_CONSOLE=y
# CONFIG_VIDEO_SELECT is not set
# CONFIG_MDA_CONSOLE is not set
# CONFIG_FB is not set
#
# Sound
#
# CONFIG_SOUND is not set
#
# Kernel hacking
#
# CONFIG_MAGIC_SYSRQ is not set
--
David Steuber | Hi! My name is David Steuber, and I am
NRA Member | a hoploholic.
http://www.packetphone.org/
Twenty Percent of Zero is Better than Nothing.
-- Walt Kelly
------------------------------
From: "Regular" <[EMAIL PROTECTED]>
Subject: SQUID error. You have run out of swap file numbers
Date: Tue, 28 Mar 2000 14:06:58 +0800
Does anyone know why we get this message. Squid shuts down when this error
happens. I have three gateway all identical and one has started this caper.
They were all running 2.2 stable 1 and I updated the offending one to 2.2
stable 4.
Any clues?
Driving me mad.
Regards
Mark dutton
------------------------------
From: John Hovell <[EMAIL PROTECTED]>
Crossposted-To: linux.redhat.install,comp.os.linux.networking
Subject: Anyone have RH 6.2 i386 ISO yet?
Date: Mon, 27 Mar 2000 22:02:13 -0800
Sorry if you guys think this post is inappropriate.
But I know there are only like 10 or so mirrors internationally right
now for RH 6.2 Zoot.
Does anyone (perhaps on Internet2 -- that means you have .edu at the end
of your domain -- as we have lots of bandwidth) who has it want to post
it for downloads?
i'd be happy to do the same once i am able to get a copy.
I'm in the silicon valley area (south of sanfrancisco) if anyone is
close to me from there... and I also have access to a 3000Kbps cable
modem... so i dunno... if anyone is willing I think it might really help
a lot of people out :-).
Cheers,
John
------------------------------
From: "David .." <[EMAIL PROTECTED]>
Subject: Re: SCSI Adaptec 2940 U2W Redhat 6.1
Date: Tue, 28 Mar 2000 00:06:15 -0600
Tim De Vos wrote:
>
> Hi,
>
> I'm using Redhat 6.1 and i'm having a strange problem with my SCSI.
> When I boot linux, a few minutes later the SCSI bus hangs for a
> minute and than goes on like nothing happened. The light indicator
> from the SCSI bus flashes on and I read or write anything from
> a SCSI device during that period. I am using Redhat 6.1 with
> a Intel 440BXSE-2 motherboard and an Adaptec 2940U2W SCSI controller.
[snip]
I have the exact same thing happening, mine freezes for about 20 seconds
every once in a while, then continues doing it's thing. Doesn't seem to
cause any problems that I have noticed so far other than the pause. I
have the AIC7890 Ultra II SCSI controller on a rebuilt 2.2.14-5.0 kernel
on a dual pentium system with the 440GX chipset. I hope 6.2 might solve
the problem when I finish downloading, though I kind of wonder since it
uses the same kernel.
--
Due to extreme SPAM abuse! Remove z's and x's from above to reply.
Thank the spammer's A..holes that they are. Still can't reach me?
Then your address range is already blocked due to previous spam.
Sorry! I hate spam!!
------------------------------
From: [EMAIL PROTECTED] (Vid Strpic)
Crossposted-To: comp.unix.admin,comp.unix.questions,com.os.linux.answers
Subject: Re: Newbie question about Loganalyzers...
Date: 27 Mar 2000 22:23:00 GMT
Reply-To: Vid Strpic <[EMAIL PROTECTED]>
Thomas M�ller said unto us in comp.unix.questions :
>The loganalyzer must be able to analyze logs in real time
>and make decsisions based on any event and perform a task
>there after. Eg. A rule in a firewall has been broken and
>the event is sent to the syslog server. The analyzer records
>it and sends a mail to a couple of predefined e-mail
>addresses. Or if a less serious event has taken place the
>analyzer will print the event to a line printer.
Try to modify logcheck. It's just a shell script, anyway.
--
Vid Strpi�, also known as Martin. <[EMAIL PROTECTED]> 0912016642
I don't speak for my employer, just for my humbleself.
------------------------------
From: "Corry Parrott" <[EMAIL PROTECTED]>
Subject: I/O and IRQ port conflicts
Date: Mon, 27 Mar 2000 22:31:35 -0800
does any one know how to fix an IRQ port conflict.... i cant configure my
PCI modem correctly because it is trying to use the same IRQ as my video....
in kppp: i get the response "devise is busy" or something like that..
help
------------------------------
From: Michael O'Connell <[EMAIL PROTECTED]>
Subject: Re: Duplicating hard disk
Date: Mon, 27 Mar 2000 23:36:29 -0600
you wrote that?? Nice work my friend. I just had to perform that process
myself about a month ago. Followed the steps in the HowTo step by step, and
it went smooth as silk!
See?? This is the reason why I love linux!!
Yves Bellefeuille wrote:
> On Mon, 27 Mar 2000, Thorsten Bucksch <[EMAIL PROTECTED]> wrote:
>
> > Up to now I have been sharing 1 hard disk with Linux and another OS.
> > Now I have built a new hard disk into my computer and want to copy my
> > linux partitions from the first to the second HD without re-installing
> > Linux.
>
> Have a look at the Hard Disk Upgrade Mini How-To, by Konrad Hinsen and
> myself:
>
> http://metalab.unc.edu/mdw/HOWTO/mini/Hard-Disk-Upgrade.html
> (HTML version)
>
> http://metalab.unc.edu/pub/Linux/docs/HOWTO/mini/Hard-Disk-Upgrade
> (plain text)
>
> --
> Yves Bellefeuille <[EMAIL PROTECTED]>, Ottawa, Canada
> Francais / English / Esperanto
> Fight Spam! Join CAUCE cost-free: http://www.cauce.org/
------------------------------
From: [EMAIL PROTECTED] (David Efflandt)
Subject: Re: RH 6.1 boot generates a FPU error
Date: 28 Mar 2000 07:00:32 GMT
Reply-To: [EMAIL PROTECTED]
On Mon, 27 Mar 2000 17:30:12 GMT, Jerry <[EMAIL PROTECTED]> wrote:
>During boot for install, the kernel checks the FPU's ablitiy to generate
>an exception.(#16). This function fails 7 of 8 times. Preventing the boot
>from continuing. Are there any coppermine specific patches or parameters
>I should be using? Installing Win98 results in a corrupted registry after
>the final reboot and after any new drivers.
I don't think there are any Coppermine specific problems. The fact that
you have problems with Linux and Win98 makes it look like a hardware
problem. My Sony laptop has a PIII 500 Coppermine mobile cpu which works
flawlessly with RH6.1, and the only problem in Win98 was when it got
confused and duplicated my pcmcia nic device.
>The system configurations is:
>PIII-550E (socket 370 coppermine) on a matrix SSA(good for both celeron and
>coppermine).
>Abit VA6 (slot 1) motherboard
>128M ram
>~9G IDE harddrive
>IDE cd
>Voodoo 3 2000 pci display card
>
>--
>Posted via CNET Help.com
>http://www.help.com/
--
David Efflandt [EMAIL PROTECTED] http://www.de-srv.com/
http://www.autox.chicago.il.us/ http://www.berniesfloral.net/
http://hammer.prohosting.com/~cgi-wiz/ http://cgi-help.virtualave.net/
------------------------------
** FOR YOUR REFERENCE **
The service address, to which questions about the list itself and requests
to be added to or deleted from it should be directed, is:
Internet: [EMAIL PROTECTED]
You can send mail to the entire list (and comp.os.linux.misc) via:
Internet: [EMAIL PROTECTED]
Linux may be obtained via one of these FTP sites:
ftp.funet.fi pub/Linux
tsx-11.mit.edu pub/linux
sunsite.unc.edu pub/Linux
End of Linux-Misc Digest
******************************