Linux-Misc Digest #264, Volume #27 Thu, 1 Mar 01 18:13:04 EST
Contents:
[Job] Linux Device Driver Developer ("Eaglewolf")
Re: gcc problem (Grant Edwards)
Re: gcc problem (Grant Edwards)
Re: Gain root access automatically in runlevel 4 (David Griffith)
Re: init fails (Juergen Heinzl)
Re: apache allowoverride problem (Dean Thompson)
Re: Web page publishing (Robert Heller)
Re: Web page publishing (Robert Heller)
Re: Linux freezes (Robert Heller)
Re: Linux freezes (Robert Heller)
Re: Help: PPP -> peer is not allowed to use remote address 193.172.249.50 (Bill
Unruh)
LILO and second master hard-disk (Dustin Puryear)
Re: Linux is always slow th enext morning, a cry for help! (Manfred Bartz)
Re: LILO and second master hard-disk ("Mathias Rodenstein")
Re: A simple question about patching the kernel (Thomas Cameron)
suse auf ppc ("Mathias Rodenstein")
Athlon ("Mathias Rodenstein")
smbol table has incorrect version number ? ("Clinton Carr")
----------------------------------------------------------------------------
From: "Eaglewolf" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.embedded,comp.os.linux.hardware
Subject: [Job] Linux Device Driver Developer
Date: Thu, 01 Mar 2001 21:15:59 GMT
Inter*Link is currently for someone experienced with developing Linux Device
Drivers. Our client is a SmartCard Developer in Florida. This is a contract
to direct position, or a contract only position depending on the candidate.
Please contact me for further details.
--
If you know someone who is interested in a new career opportunity please let
me know and you could be eligible for our Candidate/Client Referral Bonus.
Thanks for your time,
Chris Baker
Executive Search Consultant
Inter*Link Technology Solutions, Inc.
4606 South Clyde Morris Blvd., Suite 2-D
Daytona Beach, Florida 32119
TOLL FREE 800-713-9207 EXT 204
TEL/904.322.5440 EXT 204
FAX/209.391.7933
IM# cpb meb
------------------------------
From: [EMAIL PROTECTED] (Grant Edwards)
Subject: Re: gcc problem
Date: Thu, 01 Mar 2001 21:22:37 GMT
In article <3a9e54a2$0$[EMAIL PROTECTED]>, Dave Seff wrote:
>I am having a problem with the gcc compiler. It seems that a program such
>as this:
>
>#include <stdio.h>
>#include <string.h>
>�
>main()
>{
>� char *string1 = "We will all shout \"Howdy\" now!\n";
>� char *string2;
>� int i, len;
>�
>� len = strlen(string1);
>� printf("%s\n", string1);
>�
>� for(i = 0; i < len; i++)
>� � if (string1[i] == '\"')
>� � � string1[i] = '\'';
>
>� printf("%s\n", string1);
>}
>
>It compiles but segfaults on the string1[i] = '\''; line. This same code
>runs file on Solaris and DGUX.
According the ANSI C standard, the compiler is free to make
string constants read-only (IOW, it may make them "constants").
Whether string constants are writable or not is platform
dependant, and a progran that writes to them is therefore buggy.
--
Grant Edwards grante Yow! I'm an East Side
at TYPE...
visi.com
------------------------------
From: [EMAIL PROTECTED] (Grant Edwards)
Subject: Re: gcc problem
Date: Thu, 01 Mar 2001 21:30:07 GMT
In article <[EMAIL PROTECTED]>, Jean-David Beyer wrote:
>You might wish to use the string2 you declared:
>
>#include <stdio.h>
>#include <string.h>
>#include <malloc.h>
>
>main()
>{
> const char *string1 = "We will all shout \"Howdy\" now!\n";
> char *string2;
> int i, len;
>
> len = strlen(string1);
> string2 = malloc(len + 1);
> if(string2 == NULL) {
> printf("Ouch!\n");
> exit(1);
> }
>
> strncpy(string2, string1, len + 1);
Alternatively, strdup() is handy for in this situation:
string2 = strdup(string1);
assert(string2);
> for(i = 0; i < len; i++)
> if (string2[i] == '\"')
> string2[i] = '\'';
>
> printf("%s\n", string2);
>}
>
>It appears that the implementation of gcc does not permit
>diddling constants, though it does not complain either.
It does for me.
--
Grant Edwards grante Yow! The Korean War must
at have been fun.
visi.com
------------------------------
From: David Griffith <[EMAIL PROTECTED]>
Subject: Re: Gain root access automatically in runlevel 4
Date: Thu, 01 Mar 2001 21:35:42 +0000
Fung Wai Keung wrote:
> Hi all,
>
> I am developing a kiosk system with touchscreen monitor using Linux.
> The system will not have a keyboard for user input. My program needs root
> access to be run. I set the system to boot to runlevel 4. However, my
> program doesn't run. Is there any way to gain root access automatically
> (without typing root password with keyboard) when the system boot up?
>
> Thanks in advance.
>
> --
>
> Regards,
> Wai Keung, Fung
>
> Department of Automation and Computer-Aided Engineering,
> The Chinese University of Hong Kong,
> Shatin, N.T.,
> Hong Kong
>
> Tel: (852)26098056 Fax: (852)26036002
> Email: [EMAIL PROTECTED]
Rather than root access, you should DEFINITLEY give rework your program
How is the robot controlled?
If it plugs in to parallel or serial port, then chmod 666 on the /dev/ttyS0
(serial) or /dev/partport0 (parallel) will give all users access to the
required device (You could even use group robot say, and chown .robot
/dev/xxxx then chmod 660)
If the device uses an ISA/PCI card then its harder, as I think you will have
to play around with the kernel
Dont just SUID root, or run as root, especially if the system has public
access.
Hope this helps
David Griffith
------------------------------
From: [EMAIL PROTECTED] (Juergen Heinzl)
Subject: Re: init fails
Date: Thu, 01 Mar 2001 21:53:40 GMT
In article <[EMAIL PROTECTED]>, Justin Hibbits wrote:
>
>Hello,
>
>Tell me how stupid I was, then tell me how to fix this...I installed( almost)
>glibc-2.2.2, and it failed. After restoring my original
>RH7.0 glibc by relinking them, Init no longer works. I tried to set init=/bin/bash
>in my kernel command line, and I can boot to
>bash. But, when I try to run init to switch into rl 1, it says "cannot create
>/etc/initrunlvl, read only filesystem". I checked out
>The Init docs, and they say init uses the fifo /dev/initctl when communicating on an
>r-o fs. Something is messed up here, but,
>what is it? Can anyone help me???
[-]
Well, start with writing lines less than 10293 characters long and then
/dev/initctl != /etc/initrunlvl, different story.
Since /etc resides on / and / is mounted ro you can't write /etc/mtab and
so use mount -w -n -o remount /
Mind the -n as when given this switch mount doesn't update /etc/mtab and
yes, call sync yourself after something has been written.
Why do you want to call init from the command line though ? You had
better really understand the whole startup process as while it probably
isn't going to hose your system you may be confronted with some nasty
messages.
IMHO try to repair it from where you are, read with the shell running
and nothing else, or at least get the shared libs back. Once there
you can boot as normal and care for the rest, working in your usual
environment.
Cheers,
Juergen
--
\ Real name : Juergen Heinzl \ no flames /
\ EMail Private : [EMAIL PROTECTED] \ send money instead /
------------------------------
From: Dean Thompson <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.networking,japan.www.server.apache
Subject: Re: apache allowoverride problem
Date: Fri, 02 Mar 2001 08:55:48 +1100
Hi!,
> I'm trying to use .htaccess on my persoanl server and I'm trying to
> activate the use of .htaccess files so in my httpd.conf , I change the
> AllowOverride from non to All or even AuthConfig but it does not work, I
> get an 500 Internal Server Error when I do that any ideas why ?
>
[...]
>
> TO THIS, (does not work)
> <Directory />
> Options FollowSymLinks
> AllowOverride All
> </Directory>
In my httpd.conf file I use the following AllowOverride directive:
AllowOverride FileInfo AuthConfig Limit
I suspect it is the AuthConfig and Limit that you are after. Make sure that
you have also defined the directive AccessFileName to .htaccess. This should
get your web daemon working again with authorisation files working.
See ya
Dean Thompson
--
+______________________________+____________________________________________+
| Dean Thompson | E-mail - [EMAIL PROTECTED] |
| Bach. Computing (Hons) | ICQ - 45191180 |
| PhD Student | Office - <Off-Campus> |
| School Comp.Sci & Soft.Eng | Phone - +61 3 9903 2787 (Gen. Office) |
| MONASH (Caulfield Campus) | Fax - +61 3 9903 1077 |
| Melbourne, Australia | |
+------------------------------+--------------------------------------------+
------------------------------
From: Robert Heller <[EMAIL PROTECTED]>
Subject: Re: Web page publishing
Date: 1 Mar 2001 15:57:54 -0600
"Peter T. Breuer" <[EMAIL PROTECTED]>,
In a message on Thu, 1 Mar 2001 16:32:26 +0100, wrote :
"TB> Goodyear <[EMAIL PROTECTED]> wrote:
"TB> > Jeff Roediger wrote:
"TB> > For example, I wanted to change my logo so I decided to install the GIMP.
"TB> > 7 meg rpm download. My package amanger complains that it won't handle
"TB> > anthing with major number => 3. Downloaded 3 new versions of RPM to no
"TB>
"TB> SO GET A VERSION 3 RPM!
"TB>
"TB> Do not switch to the unstable rpm 4. How do you know the package
"TB> content was even aimed at your distro?
"TB>
"TB> Peter
"TB>
Right. Find a RedHat mirror site and look for 'old versions'. There
should be a perfectly working set of GIMP RPMs for RedHat 5.0, 5.1, 5.2, 6.0,
6.1 or 6.2. I would guess that the GIMP RPMs for RedHat 5.2 should
install without trouble (yes, I know RH 5.2 is old, but many RedHat 5.2
RPMs install just fine with RH 6.2 (such as the one for xv).
--
\/
Robert Heller ||InterNet: [EMAIL PROTECTED]
http://vis-www.cs.umass.edu/~heller || [EMAIL PROTECTED]
http://www.deepsoft.com /\FidoNet: 1:321/153
Posted Via Nuthinbutnews Premium Usenet Newsgroup Services
==========================================================
** SPEED ** RETENTION ** COMPLETION **
==========================================================
http://www.nuthinbutnews.com
------------------------------
From: Robert Heller <[EMAIL PROTECTED]>
Subject: Re: Web page publishing
Date: 1 Mar 2001 15:58:07 -0600
"steve" <[EMAIL PROTECTED]>,
In a message on Thu, 01 Mar 2001 10:36:19 -0500, wrote :
"> OnThu, 01 Mar 2001 07:10:55 -0500, "Robert Heller" <[EMAIL PROTECTED]>
"> wrote:
">
"> > Goodyear <[EMAIL PROTECTED]>,
"> > In a message on Wed, 28 Feb 2001 22:01:20 -0500, wrote :
"> >
"> > G> Robert Heller wrote: G> G> > Goodyear <[EMAIL PROTECTED]>, G>
"> > > In a message on Wed, 28 Feb 2001 18:56:05 -0500, wrote : G> > G>
"> > > G> Jeff Roediger wrote: G> > G> G> > G> G> > G> > Brian G> > G> >
"> > You wont find anything like FP on linux or freeBSD. G> > G> > There
"> > are programs like Bluefish that are out there. But you do need G> > to
"> > G> > know html. G> > G> > but just about any text editor will do. G> >
"> > G> > jeff G> > G> G> > G> Yes, I finally figured this out although I
"> > settled on QUANTA2 which at G> > G> least makes an attempt to be for
"> > those of us who are not programmers. G> > With G> it I believe I can
"> > muddle my way though the site update. G> > G> G> > G> Thanks. I just
"> > didn't want to have to install a text editor, learn how G> > to G> >
"> > G> use it, install an ftp program, learn how to use it. Linux is G> >
"> > wonderful G> but sometimes trying to get any work done is a bear. G> >
"> > G> G> > G> For example, I wanted to change my logo so I decided to
"> > install the G> > GIMP. G> > G> 7 meg rpm download. My package amanger
"> > complains that it won't handle G> > G> anthing with major number => 3.
"> > Downloaded 3 new versions of RPM to no G> > G> avail Now in the
"> > process of downloading theGimp sources 12 megs. No G> > doubt G> when
"> > I try to compile it, something or other will be missing and G> > I'll
"> > spend G> more time plinking around. G> > G> G> > G> There's something
"> > to be said for just going down to the Office Depot G> > and G> buying
"> > a program in a box. G> > G> > What Linux distro did you install ?!?
"> > GIMP is included in RedHat 5.2 G> > through 6.2 (Don't know about RH
"> > 7.x). G> G> eDesktop 2.4
"> >
"> > Never heard of this one. It *sounds* like one of the sleazy 'easy'
"> > *small* Linuxe distros. From what I have heard, these 'stripped down'
"> > distros tend to be more hassle in the long run than one of the various
"> > full-scale distros (i.e. Slackware, SuSE, Debian, or RedHat).
"> > Although, these 'full' distros have lots of 'stuff' and might seem a
"> > little confusing to someone who just wants a basic desktop system, in
"> > the long run you will sooner or later want random extra bits and
"> > pieces. It is possible to do a 'minimual' install, and then go back
"> > and install additional bits later.
">
"> LOL, its the desktop distro from Caldera Systems, one of the most
"> respected distros around - a full scale distro btw that doesn't try to
"> be bleeding edge therefore it's very stable and just well...works.
">
"> For a good gui web page editor for Unix/Linux try Amaya, put out by the
"> W3 consortium. Quite good for an opensource editor.
">
"> BTW The GIMP comes with the eDesktop distro. The user probably didn't
"> install the right packages in the beginning.
Which means he probably has a perfectly good GIMP RPM (for his distro)
on his CD somewhere...
">
">
"> --
"> Steve - Toronto ICQ 35454764
"> Powered by GNU/Linux
"> 10:32am up 10 days, 19:41, 9 users, load average: 0.10, 0.07, 0.03
">
--
\/
Robert Heller ||InterNet: [EMAIL PROTECTED]
http://vis-www.cs.umass.edu/~heller || [EMAIL PROTECTED]
http://www.deepsoft.com /\FidoNet: 1:321/153
Posted Via Nuthinbutnews Premium Usenet Newsgroup Services
==========================================================
** SPEED ** RETENTION ** COMPLETION **
==========================================================
http://www.nuthinbutnews.com
------------------------------
From: Robert Heller <[EMAIL PROTECTED]>
Subject: Re: Linux freezes
Date: 1 Mar 2001 15:58:11 -0600
Claus Atzenbeck <[EMAIL PROTECTED]>,
In a message on Thu, 1 Mar 2001 20:58:01 +0100, wrote :
CA> I am looking for the reason why my Linux Mandrake 7.2 totally freezes some
CA> time.
CA>
CA> First, I thought it might be because I have a SCSI hard drive switched on
CA> while booting, and later it is unmounted and switched off.
CA>
CA> Now, I had the hard drive switched off on booting, so it does not exist for
CA> my computer, but my computer freezing again. :-(
CA>
CA> May it be the reason that (although switched off on boot) my SCSI hard
CA> drive is still connected to my computer's SCSI port? Or is it unlikely that
CA> this might be the reason?
Is there anything else on the SCSI chain? What kind of termination are
you using? Is the (external?) hard drive providing power to the
terminator?
CA>
CA> Thanks for any hint!
CA> Claus.
CA>
--
\/
Robert Heller ||InterNet: [EMAIL PROTECTED]
http://vis-www.cs.umass.edu/~heller || [EMAIL PROTECTED]
http://www.deepsoft.com /\FidoNet: 1:321/153
Posted Via Nuthinbutnews Premium Usenet Newsgroup Services
==========================================================
** SPEED ** RETENTION ** COMPLETION **
==========================================================
http://www.nuthinbutnews.com
------------------------------
From: Robert Heller <[EMAIL PROTECTED]>
Subject: Re: Linux freezes
Date: 1 Mar 2001 15:58:17 -0600
Claus Atzenbeck <[EMAIL PROTECTED]>,
In a message on Thu, 1 Mar 2001 20:58:01 +0100, wrote :
CA> I am looking for the reason why my Linux Mandrake 7.2 totally freezes some
CA> time.
CA>
CA> First, I thought it might be because I have a SCSI hard drive switched on
CA> while booting, and later it is unmounted and switched off.
CA>
CA> Now, I had the hard drive switched off on booting, so it does not exist for
CA> my computer, but my computer freezing again. :-(
CA>
CA> May it be the reason that (although switched off on boot) my SCSI hard
CA> drive is still connected to my computer's SCSI port? Or is it unlikely that
CA> this might be the reason?
CA>
CA> Thanks for any hint!
CA> Claus.
CA>
Also: is the automount daemon running and does it have any reason to
want to mount the (powered down) disk drive? Is this drive mentioned in
/etc/fstab? If so, how?
--
\/
Robert Heller ||InterNet: [EMAIL PROTECTED]
http://vis-www.cs.umass.edu/~heller || [EMAIL PROTECTED]
http://www.deepsoft.com /\FidoNet: 1:321/153
Posted Via Nuthinbutnews Premium Usenet Newsgroup Services
==========================================================
** SPEED ** RETENTION ** COMPLETION **
==========================================================
http://www.nuthinbutnews.com
------------------------------
From: [EMAIL PROTECTED] (Bill Unruh)
Crossposted-To: comp.os.linux.help,hetnet.comp.linux
Subject: Re: Help: PPP -> peer is not allowed to use remote address 193.172.249.50
Date: 1 Mar 2001 22:14:23 GMT
In <[EMAIL PROTECTED]> "B. Schreur" <[EMAIL PROTECTED]> writes:
Place
noauth
into /etc/ppp/options.
Get rid of the default route on your ethernet card (unless you know
you want it to be the default)
>Can't get my PPP connection working for some time.
>In /var/log/pppd.log I see the message:
>"Peer is not authorised to use remote address 193.172.249.50"
>"Unauthorized remote IP address"
------------------------------
From: [EMAIL PROTECTED] (Dustin Puryear)
Subject: LILO and second master hard-disk
Date: 1 Mar 2001 22:10:24 GMT
Reply-To: [EMAIL PROTECTED]
I am having quite a bit of difficulty getting LILO to boot Windows 98 SE off
the second(ary?) master IDE hard-disk. LILO is installed on the primary master
disk on the boot sector. Linux is loaded on the first disk as well.
This is what happens:
(a) If I disabled the primary master hard-disk then Windows 98 SE will boot up.
(b) If I enable the primary master hard-disk then LILO will come up. If I
choose "linux" then it boots fine. If I choose "dos" then the system just hangs
immediately after I press "dos<ENTER>".
My LILO configuration is below.
[---]
boot=/dev/hda
map=/boot/map
install=/boot/boot.b
prompt
timeout=50
linear
default=linux
image=/boot/vmlinuz
label=linux
read-only
root=/dev/hda1
image=/boot/vmlinuz-2.2.14-6.1.1
label=linux-2.2.14
read-only
root=/dev/hda1
other=/dev/hdc1
label=dos
#table=/dev/hdc
[---]
I tried using the table parameter just in case, but it didn't change the
outcome. My drives are:
primary master: IDE hard-disk
primary slave: IDE CDROM
secondary master: IDE hard-disk
secondary slave: IDE hard-disk
All drives appear to work fine. The secondary slave is mounted as /home, so I
know that it works. Just in case here is some more information:
[root@dpbox /root]# fdisk -l /dev/hda
Disk /dev/hda: 128 heads, 63 sectors, 787 cylinders
Units = cylinders of 8064 * 512 bytes
Device Boot Start End Blocks Id System
/dev/hda1 * 1 754 3040096+ 83 Linux
/dev/hda2 755 787 133056 5 Extended
/dev/hda5 755 787 133024+ 82 Linux swap
[root@dpbox /root]# fdisk -l /dev/hdc
Disk /dev/hdc: 255 heads, 63 sectors, 1247 cylinders
Units = cylinders of 16065 * 512 bytes
Device Boot Start End Blocks Id System
/dev/hdc1 * 1 1247 10016496 c Win95 FAT32 (LBA)
[root@dpbox /root]# fdisk -l /dev/hdd
Disk /dev/hdd: 255 heads, 63 sectors, 524 cylinders
Units = cylinders of 16065 * 512 bytes
Device Boot Start End Blocks Id System
/dev/hdd1 1 524 4208998+ 83 Linux
Got me why /dev/hda2 and /dev/hda5 seem to cover the same area, but it works.
Regards, Dustin
--
Dustin Puryear <[EMAIL PROTECTED]>
Integrate Linux Solutions into Your Windows Network
- http://www.prima-tech.com/integrate-linux
------------------------------
Crossposted-To:
comp.os.linux.networking,comp.os.linux,comp.os.linux.redhat,mailing.unix.samba-ntdom
Subject: Re: Linux is always slow th enext morning, a cry for help!
From: Manfred Bartz <[EMAIL PROTECTED]>
Date: Thu, 01 Mar 2001 22:39:48 GMT
Larry Clark <[EMAIL PROTECTED]> writes:
> well I used to think it was a samba problem, now I realize it must
> be an everything problem. I used to come in in th emorning and boot
> my machine, and the mappings I had to samba would not take and I
> would get an error.
Hmm. I am sure this should not happen but I am not intimately
familiar with samba.
What was the actual error message?
Do you use DHCP for your windoze clients?
> so I thought it was samba fallinng asleep at night. well I use a
> batch file now that uses the net use command to remap my drives each
> morning and it works flawlessly.
> now my problem is in the morning I come in and try to try to
> sendmail and it takes forever.
Sounds like a DNS problem.
Is your system always on-line?
Is it on-line when this happens?
Does it run its own nameserver? How is it configured?
Any interesting messages in /var/log/syslog ?
> I try to recieve my mail and I don't. I thought rebooting the
> machine would help but it isn't. I am using sendmail 8.9.3, and
> qpopper latest version from qualcomm. I can go to the console and
> get the mail sent from a client but picking it up is anopther
> thing. also it just seems like sendmail is really slow now after one
> night. what is the genral consensus regarding sendmailand qpopper?
Disclaimer: I don't represent the general consensus.
IMO, sendmail belongs in the aera where even payroll applications were
written in assembler, 64k words of magnetic core was a huge amount
of memory and the flipflops were implemented with discrete transistors.
Ok, this is exagerated, but only a little bit!
Use qmail, or if you have religous objections to it,then maybe postfix.
Note that the problems you are describing may have nothing to do with
sendmail.
--
Manfred
===============================================================
ipchainsLogAnalyzer, NetCalc, whois at: <http://logi.cc/linux/>
------------------------------
From: "Mathias Rodenstein" <[EMAIL PROTECTED]>
Subject: Re: LILO and second master hard-disk
Date: Thu, 1 Mar 2001 23:39:51 +0100
...
> other=/dev/hdc1
> label=dos
> #table=/dev/hdc
map-drive=0x80
to=0x81
map-drive=0x81
to=0x80
the problem is that windows always wants to be the first (primary master)
disk...or at least believe so...the comment above will solve this problem
regards, M
------------------------------
From: Thomas Cameron <[EMAIL PROTECTED]>
Crossposted-To: alt.os.linux
Subject: Re: A simple question about patching the kernel
Date: Thu, 01 Mar 2001 16:58:25 -0600
L Tam wrote:
>
> Books and READMEs just talk about patch-2.4.x.gz. How is the file
> patch-2.4.x.gz.sign used? Should I gunzip it and then apply patch?
This file is only the PGP signature, used for verifying that the patch
downloaded correctly and is authentic. It is not used in the patch
process.
--
===================================================================
-- Thomas D. Cameron --
Red Hat Certified Engineer -- TurboLinux Certified Instructor
-- Certified NetWare Engineer --
Microsoft Certified Systems Engineer -- Microsoft Certified Trainer
===================================================================
------------------------------
From: "Mathias Rodenstein" <[EMAIL PROTECTED]>
Subject: suse auf ppc
Date: Thu, 1 Mar 2001 23:50:45 +0100
hi there,
recently i had to install suse 7.0 on a g3 power mac (not the easiest thing
to do)...for verious reasons i wanted to get the newest ppc-kernel (mostly
because of adsl)...which i downloaded from an ftp.suse.com mirror site...was
2.4.1 (source) but when i start with the kernel (even devel code switched
off) it hangs after about 2 minutes after starting to boot...what would i
have to do to make the stuff work, e.g. get ppc-kernel source...
tia, M
------------------------------
From: "Mathias Rodenstein" <[EMAIL PROTECTED]>
Subject: Athlon
Date: Thu, 1 Mar 2001 23:53:13 +0100
once more....
i just bought a new 900-K7 and installed debian 2.2r2 on it, mostly i was
curious how much better seti@home would run (compared to my old PII). but
the improvement is about 10% 10 hours instead of 11...i run kernel 2.4.2.
with Athlon option enabled...should there not be a higher increase in
speed...
thanks for any feedback, M
------------------------------
From: "Clinton Carr" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.setup
Subject: smbol table has incorrect version number ?
Date: Thu, 1 Mar 2001 17:08:35 -0600
One of my Linux systems is crashing ever so often with page faults. It
appears to occur most often with cron jobs are run. I've search the net but
I didn't see anything that pointed to the cause. However, I do notice the
following message at boot time.
symbol table has incorrect version number
Why is this and could it be related to the crashes? How do I eliminate this
message?
Thanks,
------------------------------
** 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 by posting to comp.os.linux.misc.
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
******************************