On Sat, 25 Nov 1995, Torsten Zirzlaff wrote:
> I'm near to loose my sanity. Each time when I try to complie the
> simplest program, which is shipped with a configre script I retreive
> the following nice messages:
> memory violation at pc=1200a788 (00000020)
> Memory fault
As Erik wrote, this is a problem with some set of binutils and/or sed.
> And every time when I boot up the system will
> run a e2fsck over sda1, even when I sync;shutdown regulary.
That's easy: Your root partition is mounted r/w while doing the check;
just add the following to your /etc/rc:
/bin/mount -n -r -o remount /
[...fsck stuff...]
/bin/mount -n -w -o remount /
Regards, Ville