Linux-Misc Digest #735, Volume #25               Mon, 11 Sep 00 14:13:04 EDT

Contents:
  Re: Samba: Win95 + Win98 (Greg F Walz Chojnacki)
  Re: Correct way to trim logfiles? ("Andrew N. McGuire ")
  Re: End-User Alternative to Windows (RogerB)
  can't open apps ([EMAIL PROTECTED])
  Re: Correct way to trim logfiles? ("Peter T. Breuer")
  no such file or directory (Steve Yelvington)
  Re: Correct way to trim logfiles? ("Andrew N. McGuire ")
  Portable Unix utility scripts ("Richard Anderson")
  Re: cdrecord screwing up X? ("D F")
  Pipe should work. ("Sjoerd Langkemper")
  Java ? (Martin Racette)
  IP Masq ("askew")
  Re: Kernel question (Juan Pablo Hierro =?iso-8859-1?Q?=C1lvarez?=)
  Re: Power management in Xfree? (Henrik Elofsson)
  Error message 0x82 (Bios driver....) (Josef Oswald)
  XFree86 4.0.1 is running, but there are problems... (MH)
  Re: refresh zip drive contents? ("Sjoerd Langkemper")
  Re: Correct way to trim logfiles? ("Andrew N. McGuire ")
  Re: umount: /usr: device busy ("Andrew N. McGuire ")
  What's eating my disk space? ("Sjoerd Langkemper")
  Linux Mandrake 7.1 Installations problems !!! ("Boomer")
  Re: Simple BBS (B'ichela)

----------------------------------------------------------------------------

From: Greg F Walz Chojnacki <[EMAIL PROTECTED]>
Subject: Re: Samba: Win95 + Win98
Date: 11 Sep 2000 16:17:36 GMT

Got it, folks. Thanks very much for the help.

Greg


-- 
[EMAIL PROTECTED]            UWM University Communications           414/229-4454
http://www.uwm.edu/News/                                       FAX:414/229-6443



------------------------------

From: "Andrew N. McGuire " <[EMAIL PROTECTED]>
Subject: Re: Correct way to trim logfiles?
Date: Mon, 11 Sep 2000 11:24:37 -0500

On 11 Sep 2000, Peter T. Breuer quoth:

PTB> Andrew N. McGuire  <[EMAIL PROTECTED]> wrote:
PTB> : On Sun, 10 Sep 2000, Hans Marcus Kr?ger quoth:
PTB> 
PTB> : HMK> shure not to loose any single line. The problem is, wehat if syslogd
PTB> : HMK> writes sometihng to the log just after Icoppied the files and short
PTB> : HMK> before I truncate it?
PTB> : HMK> The solution I found was, to get en exclusive write-lock on the file. Is
PTB> : HMK> this ok?
PTB> 
PTB> : There is no such thing as an exclusive write-lock.  Other programs
PTB> 
PTB> Actually, there is. You can force mandatory locking in linux. I'm not
PTB> going to tell how, though.

Not in Perl, at least not to my knowledge, if you know otherwise,
please explain how to obtain a mandatory lock in Perl.  I guess in
the OP's original words "exclusive write-lock", that can be obtained
by calling flock(), however other programs can still write to his
data file, even if an exclusive write-lock has been obtained. So
it may not be as "exclusive" as he thinks. Again, if I am in error,
please correct me.

PTB> : may still modify your data file even if you use flock().  All locks
PTB> : obtained by flock are advisory locks and are not absolute.  
PTB> 
PTB> : perldoc -f flock
PTB> 
PTB> : My advise is this, don't waste your time writing a log-rotating program
PTB> : unless you have ~SPECIFIC~ needs.  This task has already been done, and
PTB> : probably better. :-)
PTB> 
PTB> Of course. Good advice. The program in question is called "logrotate".
PTB> But there is nothing wrong with a simple "mv and signal". That will start
PTB> a new file for syslog without losing any line. He can then copy the
PTB> old or throw it away. There is no deep mystery here.

I did not mention logrotate because  another poster already mentioned
it, mv is blatantly obvious. :-)

Best Wishes,

anm
-- 
BEGIN { $\ = $/; $$_ = $_ for qw~ just another perl hacker ~ }
my $J = sub { return \$just }; my $A = sub { return \$another };
my $P = sub { return \$perl }; my $H = sub { return \$hacker  };
print map ucfirst() . " " => ${&$J()}, ${&$A()}, ${&$P()}, ${&$H()};


------------------------------

From: [EMAIL PROTECTED] (RogerB)
Crossposted-To: alt.os.linux,comp.os.linux.advocacy
Subject: Re: End-User Alternative to Windows
Reply-To: [EMAIL PROTECTED]
Date: Mon, 11 Sep 2000 16:34:31 GMT

        A stable kernel,some scripts and a truck load of binaries.

On Mon, 11 Sep 2000 12:37:38 GMT, Ingemar Lundin <lundiningemar_NOSPAM_
>@hotmail.com> wrote:
>
>REALLY?
>
>And what makes that Linux?
>
>A shell, some scripts and a fistful of binaries?
>
>/IL
>
>> So is Windows 9x
>>
>>
>>        #####################################################
>>         My email address is posted for purposes of private
>>         correspondence only. Consent is expressly NOT given
>>         to receive advertisements, or bulk mailings of any
>>                                kind.
>>        #####################################################
>
>

------------------------------

From: [EMAIL PROTECTED]
Subject: can't open apps
Date: Mon, 11 Sep 2000 16:27:19 GMT

I am running Caldera's OpenLinux eDesktop 2.4 and I didn't like their
Ksaferppp so I installed the regular Kppp. It works great but once I
make a ppp connection I can no longer open any more apps. Once I end
the connection I can open apps.

I am a Linux newbie but I have been working with computer for over 10
years. Any help would be appreciated.

--John


Sent via Deja.com http://www.deja.com/
Before you buy.

------------------------------

From: "Peter T. Breuer" <[EMAIL PROTECTED]>
Subject: Re: Correct way to trim logfiles?
Date: 11 Sep 2000 16:44:35 GMT

Andrew N. McGuire  <[EMAIL PROTECTED]> wrote:
: On 11 Sep 2000, Peter T. Breuer quoth:
: PTB> Actually, there is. You can force mandatory locking in linux. I'm not
: PTB> going to tell how, though.

: Not in Perl, at least not to my knowledge, if you know otherwise,
: please explain how to obtain a mandatory lock in Perl.  I guess in

Sure, it's doable from perl. See the mandatory.txt file in
linux/Documentation.

: the OP's original words "exclusive write-lock", that can be obtained
: by calling flock(), however other programs can still write to his
: data file, even if an exclusive write-lock has been obtained. So
: it may not be as "exclusive" as he thinks. Again, if I am in error,
: please correct me.

See above. The kernel will convert advisory locks into mandatory ones
for you, if you know the trick.

Peter

------------------------------

From: Steve Yelvington <[EMAIL PROTECTED]>
Subject: no such file or directory
Date: Mon, 11 Sep 2000 16:56:29 GMT

I'm getting an error message when I try to run either quake or squake on a 
fresh install of Mandrake 7.2 beta. Witness:

# ./quake.x11
bash: ./quake.x11: No such file or directory 

I've found some postings on the net that suggest a missing library can 
cause this message. I do have both glibc and libc5 available on this 
machine, ld.so.conf appears to be configured correctly, et cetera. 

Any clues, or advice on how to diagnose?

-- 


------------------------------

From: "Andrew N. McGuire " <[EMAIL PROTECTED]>
Subject: Re: Correct way to trim logfiles?
Date: Mon, 11 Sep 2000 12:02:44 -0500

On Mon, 11 Sep 2000, Andrew N. McGuire  quoth:

ANM> On 11 Sep 2000, Peter T. Breuer quoth:
ANM> 
ANM> PTB> Andrew N. McGuire  <[EMAIL PROTECTED]> wrote:
ANM> PTB> : On Sun, 10 Sep 2000, Hans Marcus Kr?ger quoth:
ANM> PTB> 
ANM> PTB> : HMK> shure not to loose any single line. The problem is, wehat if syslogd
ANM> PTB> : HMK> writes sometihng to the log just after Icoppied the files and short
ANM> PTB> : HMK> before I truncate it?
ANM> PTB> : HMK> The solution I found was, to get en exclusive write-lock on the file. 
Is
ANM> PTB> : HMK> this ok?
ANM> PTB> 
ANM> PTB> : There is no such thing as an exclusive write-lock.  Other programs
ANM> PTB> 
ANM> PTB> Actually, there is. You can force mandatory locking in linux. I'm not
ANM> PTB> going to tell how, though.
ANM> 
ANM> Not in Perl, at least not to my knowledge, if you know otherwise,
ANM> please explain how to obtain a mandatory lock in Perl.  I guess in
ANM> the OP's original words "exclusive write-lock", that can be obtained
ANM> by calling flock(), however other programs can still write to his
ANM> data file, even if an exclusive write-lock has been obtained. So
ANM> it may not be as "exclusive" as he thinks. Again, if I am in error,
ANM> please correct me.

[ snip ]

I was not complete enough here, Perl uses BSD flock() not
SysV lockf().  lockf() is capable of obtaining a mandatory lock,
flock() is not.

strace to following script to see what I mean:

#!/usr/bin/perl -w
use strict;
use Fcntl qw[:DEFAULT :flock];

open  FH, ">file.txt" or die "can't write file.txt: $!\n";
flock FH, LOCK_EX or die "can't lock file.txt: $!\n";
print FH "test\n";
close FH;
__END__

There possibly is a module or compile time option (compiling perl,
not a script), to make Perl's flock use lockf().  I do not know what
that is off hand though.

For all interested parties, more information can be found it:

perldoc -f flock
perldoc perlopentut
less /usr/src/linux/Documentation/mandatory.txt

Best Wishes,

anm
-- 
BEGIN { $\ = $/; $$_ = $_ for qw~ just another perl hacker ~ }
my $J = sub { return \$just }; my $A = sub { return \$another };
my $P = sub { return \$perl }; my $H = sub { return \$hacker  };
print map ucfirst() . " " => ${&$J()}, ${&$A()}, ${&$P()}, ${&$H()};


------------------------------

From: "Richard Anderson" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux,comp.os.linux.admin,comp.os.linux.questions
Subject: Portable Unix utility scripts
Date: Mon, 11 Sep 2000 10:05:29 -0700

The software product Typhon (www.unixscripts.com) contains over 100 portable
Korn shell scripts for text processing, file and directory processing,
customizing your login environment, disk space management, performance
analysis, system monitoring and system security.  It includes generalized
login environment files for the Korn shell, bash and the C shell.

Some of the functions of Typhon:

* Substitute one text string for another in all files in a directory tree,
  skipping non-text files. The substitution strings can be regular
expressions
  or plain text.

* Display all subdirectories as a visual directory tree.

* Copy a file to multiple remote hosts, with disk backup of the target file
on
  each host.

* List all subdirectories in one or more directories, including symbolic
links
  to directories.

Part of Typhon is distributed as freeware, part as a commercial product.
You
can download the freeware or purchase the product at www.unixscripts.com.

Richard Anderson, Ph.D.
Chief Technology Officer, Raycosoft



------------------------------

From: "D F" <[EMAIL PROTECTED]>
Subject: Re: cdrecord screwing up X?
Date: Mon, 11 Sep 2000 13:18:01 -0400


Jehsom wrote in message
<8pio4f$86m$[EMAIL PROTECTED]>...
>muzh <[EMAIL PROTECTED]> wrote:
>> How much memory do you have?  How much Swap memory do you
have?
>
>$ cat /proc/meminfo
>        total:    used:    free:  shared: buffers:  cached:
>Mem:  264183808 221970432 42213376 92217344 65806336
55484416
>Swap: 139788288   372736 139415552
>MemTotal:    257992 kB
>MemFree:      41224 kB
>MemShared:    90056 kB
>Buffers:      64264 kB
>Cached:       54184 kB
>SwapTotal:   136512 kB
>SwapFree:    136148 kB
>
>
>I have a lot of swap space free even though I only have
128mb of it total.
>I can't increase my swap size without redoing my entire
partition table,
>which would suck.
>
>Any more suggestions?
>
>Thanks,
>Moshe
>
>--
>jehsom@ angband.org cc.gatech.edu polter.net shaftnet.org
nullity.dhs.org
>wreck.org bellsouth.net resnet.gatech.edu burdell.org
yo.dhs.org gooning.org
>usa.net togetherweb.com resnet.gatech.edu; gte741e mj116
@prism.gatech.edu;
>jacobsonconsulting@ usa.net; ICQ 1900670

Well, that's not really true. You can increase the amount of
swap available to you by building a swap file, instead of a
swap partition, as long as you have room for it somewhere in
your directory tree. Check out the Linux Installation and
Getting Started Guide by Matt Welsh, specifically section
4.5, at:

http://www.linuxdoc.org/LDP/gs/node6.html#SECTION00600000000
000000000

Dave Fluri
North Bay, Ontario  Canada



------------------------------

From: "Sjoerd Langkemper" <[EMAIL PROTECTED]>
Subject: Pipe should work.
Date: Mon, 11 Sep 2000 17:26:17 GMT

[root@server /root]# rpm -qa > ./rpmlist
[root@server /root]# cat rpmlist
[root@server /root]# rpm -qa
basesystem-9.9-9
filesystem-9.9.9-9
ldconfig-9.9.9-9
mktemp-9.9-9

How's this possible? The output of the command rpm -qa should be put into
the file rpmlist.

Sjoerd




------------------------------

From: Martin Racette <[EMAIL PROTECTED]>
Subject: Java ?
Date: Mon, 11 Sep 2000 17:32:20 GMT

Hi guys,

I have installed Linux Mandrake 7.1, and now I need to enable a JAVA JRE=
,=20
but I can't make them work or recognize. My last attempt was ot install =

IBM's JRE 1.1.3, but no luck until now

So how to I do it ?

Thank you in advance

Merci a l'avance

Martin


------------------------------

From: "askew" <[EMAIL PROTECTED]>
Subject: IP Masq
Date: Mon, 11 Sep 2000 17:36:50 GMT

When i shut down or reboot my windows machine which is behind my masq box i
loose my connection to the internet and cannot even connect to the box using
the local network address. To fix this i currently have to reboot my masq
box, i was wondering if there was any other way to do this. Windows 98SE is
the Os behind the masq box Mandrake 7.0 is the masq boxs' OS and i am using
192.168.100.*as my internal ip with a 255.255.255.0 subnet mask.



------------------------------

From: [EMAIL PROTECTED] (Juan Pablo Hierro =?iso-8859-1?Q?=C1lvarez?=)
Crossposted-To: 
comp.os.linux.setup,comp.os.linux.hardware,linux.redhat.misc,linux.redhat
Subject: Re: Kernel question
Date: 11 Sep 2000 17:43:21 GMT
Reply-To: [EMAIL PROTECTED]

=====BEGIN PGP SIGNED MESSAGE=====
Hash: SHA1

On Mon, 11 Sep 2000 10:40:12 +1000, Greg Goossens wrote:
>I have a question regarding a problem I have that I need to find a
>simple solution for I am hoping that someone has a neat workaround for
>this.
>
>I need to setup an IBM Netfinity 6000 with Redhat 6.2 but the kernel in
>the ISO image I have is a 2.2.14 kernel and the only kernel that
>supports the RAID adapter is a 2.2.16-3 kernel.   I can install redhat
>using the device driver provided from IBM but when I reboot after the
>initial install the system hangs.  As I have said IBM say I need the
>2.2.16-3 kernel.
>
>Is the solution as simple as getting another release of redhat that has
>the correct kernel in the original install (if possible ) or do I have
>to build a redhat install on another disk upgrade that kernel and
>somehow move the entire load to another disk using dd of a similar util.
>
>
May you boot from a floppy?
If so, put 2.2.16-3 in one (/usr/doc/HOWTO/Bootdisk-HOWTO) and instruct it
to load the root filesystem from the hard disk (man rdev) in read only
way.

The system will boot (there is a script which will turn the system into
r/w after checking it) and you will be able to copy the kernel from the
floppy into /boot, edit lilo.conf, run lilo and so on.

Try to boot in single mode the first time because you will not have
probably the modules for 2.2.16-3 (/lib/modules/2.2.16-3/*) and you
will have lo load them now. I imagine the raid support will be in the
kernel, not as a module (recompile it?).

By the way, have you tried the official IBM or RedHat support? Maybe,
they could provide you with a customized copy of the install CDROM.
- -- 
Juan Hierro
Public key: 0xA8707ADF at pgp.rediris.es
=====BEGIN PGP SIGNATURE=====
Version: GnuPG v1.0.1 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE5vRcTd1aMoahwet8RAs3bAKDZ3ofgyNJ4xL7hViJslXifas2JxwCgq2vX
DDfc7wzZ6rsH4YiFp6jo+DU=
=yf6p
=====END PGP SIGNATURE=====

------------------------------

From: [EMAIL PROTECTED] (Henrik Elofsson)
Subject: Re: Power management in Xfree?
Date: 11 Sep 2000 17:39:02 GMT

[Posted and mailed]

In article <6jSu5.227652$[EMAIL PROTECTED]>,
        "Yura" <[EMAIL PROTECTED]> writes:
>  Hi!
> I was wandering if I can tune up Xfree to turn my monitor off after some time.
> Gnome attempts to do it but it doesn't really turn it off, just make the screen 
>black.
> 
> Is this possble?
> 
> Thanks.

Sir, yes sir! Use "xset +dpms ; xset dpms xxx yyy zzz" does
the trick. The xxx is the time for standby, yyy is
suspend anx zzz is off. The times are given in seconds.

//Henrik Elofsson

------------------------------

From: Josef Oswald <[EMAIL PROTECTED]>
Subject: Error message 0x82 (Bios driver....)
Date: Mon, 11 Sep 2000 17:42:10 GMT

Hi:-) 

After compiling a new kernel ( 2.2.17) I got the following Message:
Bios driver 0x82 may not be accessible.

What does this mean, and how can I solve the problem....

I have three HDD'S 

one 20 Gig Master for Win98
a 4 Gig hooked up as Slave to the above HDD on it is a small swap Space
for Linux ( SuSE 6.2) and win98

a third ( as Secondary Master)  10 Gig HDD only for Linux.... connected
to that is a 40x Atapi CD-ROM 

thanks for any clues :-) 


Josef Oswald

------------------------------

From: MH <[EMAIL PROTECTED]>
Subject: XFree86 4.0.1 is running, but there are problems...
Date: Mon, 11 Sep 2000 10:43:15 -0700
Reply-To: [EMAIL PROTECTED]

Tried installing the latest version of X and discovered it was a real
pain.  After spending an hour or so reading installation instructions
for XFree86 4.0.1 and some related notes and articles gleaned from other
sites, I tried installing the new X as an upgrade to a vanilla 3.6
installation on a basic RH 6.0 box with 2.2.16 kernel.

First time through, system froze on boot at loading font server.  I
didn't have the installation program overwrite my original configuration
files, so I tried again, this time overwriting everything.  Same
problem.

Apparently, X installation script wasn't smart enough to remove xfs
configuration script, so I did.  Rebooted, system came up fine, except
when I ran "startx" I got twm instead of my KDE desktop.  After much
trial and error, I discovered I could bring up KDE by editing
/usr/X11R6/lib/X11/xinit/xinitrc, replacing "twm" with "startkde".

Unfortunately, I still could not load KDE as non-root user.  I created a
link to xinitrc in my home directory and solved that problem.

Now, I had my KDE desktop back, but it was displayed about twice as TALL
as it should have been and I had to scroll down a full screen to reach
the panel. I couldn't find any settings that might explain this, so I
tried installing the latest drivers for my video card (Nvidia Geforce)
hoping that might solve the problem.  Once again, X failed to load
complaining about a missing kernel module, which I did install per
instructions.  I think it was expecting a different filename, or perhaps
a different location?  In any case, after about 6 hours of fiddling
unsuccessfully, I gave up.

Opened my box, swapped my primary drive with my backup drive, closed
everything up and rebooted back to my former system.  Thank god for cp
/dev/sda /dev/sdb!

-- 
Don't waste your vote.  Vote Green, or don't vote at all.

------------------------------

From: "Sjoerd Langkemper" <[EMAIL PROTECTED]>
Subject: Re: refresh zip drive contents?
Date: Mon, 11 Sep 2000 17:55:28 GMT

"Christian Verbeek" <[EMAIL PROTECTED]> wrote:
>i have an intern scsi zip 100 drive. i copy some files to it, using my
linux computer. then i erased these files and copied some other stuff to
it with my nt laptop. back on my linux pc i still see the files i had
removed before with my laptop and i do not see the new files. then i did
a reboot of the linux system and after this i see the new files. is there
some kind of cache one can force to update?

You can force a a "update" with sync, but this is probably not what you
wanted. You should first unmount the disk before you remove it, and mount it
again when you put a disk in the drive.

Sjoerd



------------------------------

From: "Andrew N. McGuire " <[EMAIL PROTECTED]>
Subject: Re: Correct way to trim logfiles?
Date: Mon, 11 Sep 2000 12:53:36 -0500

On 11 Sep 2000, Peter T. Breuer quoth:

PTB> Andrew N. McGuire  <[EMAIL PROTECTED]> wrote:
PTB> : On 11 Sep 2000, Peter T. Breuer quoth:
PTB> : PTB> Actually, there is. You can force mandatory locking in linux. I'm not
PTB> : PTB> going to tell how, though.
PTB> 
PTB> : Not in Perl, at least not to my knowledge, if you know otherwise,
PTB> : please explain how to obtain a mandatory lock in Perl.  I guess in
PTB> 
PTB> Sure, it's doable from perl. See the mandatory.txt file in
PTB> linux/Documentation.

I do not think it is... see my other post, or see below.

PTB> : the OP's original words "exclusive write-lock", that can be obtained
PTB> : by calling flock(), however other programs can still write to his
PTB> : data file, even if an exclusive write-lock has been obtained. So
PTB> : it may not be as "exclusive" as he thinks. Again, if I am in error,
PTB> : please correct me.
PTB> 
PTB> See above. The kernel will convert advisory locks into mandatory ones
PTB> for you, if you know the trick.

I understand, but that is only for lockf(), perl uses flock() on Linux.
>From mandatory.txt:

1. Mandatory locks can only be applied via the fcntl()/lockf() locking
   interface - in other words the System V/POSIX interface. BSD style
   locks using flock() never result in a mandatory lock.

So I do not think perl can do it, unless you can force perl to use
lockf()/fcntl() (the SysV interface) instead of flock().

anm
-- 
BEGIN { $\ = $/; $$_ = $_ for qw~ just another perl hacker ~ }
my $J = sub { return \$just }; my $A = sub { return \$another };
my $P = sub { return \$perl }; my $H = sub { return \$hacker  };
print map ucfirst() . " " => ${&$J()}, ${&$A()}, ${&$P()}, ${&$H()};


------------------------------

From: "Andrew N. McGuire " <[EMAIL PROTECTED]>
Subject: Re: umount: /usr: device busy
Date: Mon, 11 Sep 2000 12:55:04 -0500

On Mon, 11 Sep 2000, Davide Bianchi quoth:

DB> Ok, I don't know what happened today, but now I can't shutdown the
DB> server (Linux kernel 2.2.17) because the umount keep telling me
DB> that the /usr is busy, so it wont' umount....
DB> 
DB> I've already killed all the deamons, basically there is nothing
DB> alive... How can I know what is using /usr ?
DB> 
DB> Any idea ?

fuser -u /usr

anm
-- 
BEGIN { $\ = $/; $$_ = $_ for qw~ just another perl hacker ~ }
my $J = sub { return \$just }; my $A = sub { return \$another };
my $P = sub { return \$perl }; my $H = sub { return \$hacker  };
print map ucfirst() . " " => ${&$J()}, ${&$A()}, ${&$P()}, ${&$H()};


------------------------------

From: "Sjoerd Langkemper" <[EMAIL PROTECTED]>
Subject: What's eating my disk space?
Date: Mon, 11 Sep 2000 17:58:48 GMT

I executed this

[root@server /root]# cat diskfree.sh
df
sleep 60
df
sleep 60
[etc, etc]
[root@server /root]# ./diskfree.sh
Filesystem           1k-blocks      Used Available Use% Mounted on
/dev/hda1               231116    229842         0 100% /
Filesystem           1k-blocks      Used Available Use% Mounted on
/dev/hda1               231116    229866         0 100% /
Filesystem           1k-blocks      Used Available Use% Mounted on
/dev/hda1               231116    229874         0 100% /
Filesystem           1k-blocks      Used Available Use% Mounted on
/dev/hda1               231116    229890         0 100% /
Filesystem           1k-blocks      Used Available Use% Mounted on
/dev/hda1               231116    229890         0 100% /
Filesystem           1k-blocks      Used Available Use% Mounted on
/dev/hda1               231116    229908         0 100% /

What's eating my disk space when it's not /var/log/messages?

Sjoerd



------------------------------

From: "Boomer" <[EMAIL PROTECTED]>
Subject: Linux Mandrake 7.1 Installations problems !!!
Date: Mon, 11 Sep 2000 13:50:52 -0700

I would like to install Linux Mandrake 7.1
in a new FAT-32 partition.
My system is a standard Windows 98 system
with 450MHz Pentium III, 64MB ram,
20GB and 8GB harddrives(IDE).
I setup a 4GB partition using Partition Magic 4.0
(From PowerQuest)
What size Partitions are required for a
full Linux Mandrake 7.1 installations?
After I setup the partitions,
how do I install the full Linux Mandrake 7.1 software from the Linux
Mandrake 7.1 CD ?
I donot want to use "DrakX' because it may have compatibily problems with
Windows 98 software.
Need Help !!!

Thank You
Bob Whitman
[EMAIL PROTECTED]











------------------------------

From: [EMAIL PROTECTED] (B'ichela)
Subject: Re: Simple BBS
Date: Sun, 10 Sep 2000 23:51:48 -0400
Reply-To: [EMAIL PROTECTED]

On Wed, 06 Sep 2000 10:30:25 GMT, [EMAIL PROTECTED]
<[EMAIL PROTECTED]> wrote:
>In article <8p46tc$bn2$[EMAIL PROTECTED]>,
>  "[WarLocK]" <[EMAIL PROTECTED]> wrote:
>>
>> "Dave" <[EMAIL PROTECTED]> wrote in message
>> news:[EMAIL PROTECTED]...
>> > Im looking to setup a simple bbs
>> > with an extra 56k modem iv got kicking around
>> > (the good ol days when i had a multi node
>bbs, miss them days ;o)--*
>I agree, but there's an answer.
>
>EleBBS runs in windows, os/2 and linux, which I
>belive is also handled thru BSD, (elf binary)
        Do you know of any bbs software that is similar to Opus 1.73A?
or Maximus? I ran a Opus bbs up until about 1997 and I would like to
find a Opus bbs or compatible bbs for Linux that has the same
features/looks as Opus 1.73A or Maximus. I have grown use to Opus and
its little NACL and Cayenne bbs.ctl compilers.

-- 

                        B'ichela


------------------------------


** 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
******************************

Reply via email to