Linux-Setup Digest #647, Volume #19              Mon, 18 Sep 00 22:13:10 EDT

Contents:
  Re: Linux and MS Server2000 on one HD (Michael Alan Wentzel)
  Re: ethernet gaurenteed to work? (Eric Y. Chang)
  Help installing Netscape 6 Preview Release 2. ([EMAIL PROTECTED])
  Same IRQ for Modem & Sound ([EMAIL PROTECTED])
  Practice test for SAIR LCA ? ([EMAIL PROTECTED])
  Compiled 2.2.17 =  machine HALTS ([EMAIL PROTECTED])
  Whatz new in Kernel 2.2.17 (VIVEK GUPTA)
  Re: Compiled 2.2.17 =  machine HALTS ("Nicholas Knight")
  linux on a floppy (scott ferguson)
  Re: Existing Partition/newbie ("Philo")
  make modules_install is blowing up in 2.4.0-test8 kernel (stu)
  Best time synch program for "official time" ("Howard Williams")
  modem initialization problem (Francis Tseng)
  installing without an existing os ("david23")
  powerpoint viewer (Tom Aschenbrenner)
  Re: Tearing video display ("Martin Graiter")
  Disable download resume support in apache,help! (Opps)
  Re: sorry but i couldnt find a way to rescue (John Thompson)
  Re: powerpoint viewer ([EMAIL PROTECTED])
  how to debug crashing application ([EMAIL PROTECTED])

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

From: Michael Alan Wentzel <[EMAIL PROTECTED]>
Subject: Re: Linux and MS Server2000 on one HD
Date: 18 Sep 2000 21:14:41 GMT

Brian Bennett <[EMAIL PROTECTED]> wrote:
> Just the short answer - I'm doing the same thing. 2000 and Linux.  2000
> doesn't get booted much, I admit.

> Install 2000 Server first.  Install Linux last.  Let Linux install LILO,
> rearrange the labels if you wish.  I don't know if this is universal or not,
> but I can hit <tab> at LILO's boot screen and get a listing of the bootable
> partitions / options (This is with Mandrake 7.1)


> "Stephan J" <[EMAIL PROTECTED]> wrote in message
> news:8oh7gp$d8q$[EMAIL PROTECTED]...
>> Hi all,
>>
>> Can somebody give me the definitive answer on how to have 2 OS on the one
>> hard disk.  I wish to have a partition for Linux (say 3GB) and one for MS
>> Server 2000( about 3 GB).  Which OS should I install first and where?
>>
>> Please help!
>>
>> --
>> Stephan J
>> [EMAIL PROTECTED]
>>
>>



-- 
Michael Alan Wentzel
Georgia Institute of Technology, Atlanta Georgia, 30332
Email: [EMAIL PROTECTED]

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

From: [EMAIL PROTECTED] (Eric Y. Chang)
Crossposted-To: comp.os.linux.misc
Subject: Re: ethernet gaurenteed to work?
Date: 18 Sep 2000 21:26:32 GMT
Reply-To: [EMAIL PROTECTED]

David Rysdam ([EMAIL PROTECTED]) wrote:
...
: It's pretty difficult to find a card that ISN'T automatically
: detected.  Try an NE2000 (or clone) or a 3Com card (3c5xx or 3c9xx).
                                                      ^^^^^

Will be detected, but may not work.

Will work with the following patch:
problem: 3c507 uses incorrect interrupt (irq)

--- /root/old.c Thu Aug 31 07:01:13 2000
+++ 3c507.c     Thu Aug 31 07:02:05 2000
@@ -26,7 +26,6 @@
 static const char *version =
        "3c507.c:v1.10 9/23/94 Donald Becker ([EMAIL PROTECTED])\n";
 
-
 #include <linux/module.h>
 
 /*
@@ -282,6 +281,7 @@
 extern int el16_probe(struct device *dev);     /* Called from Space.c */
 
 static int     el16_probe1(struct device *dev, int ioaddr);
+static void     el16_patternout(void);
 static int     el16_open(struct device *dev);
 static int     el16_send_packet(struct sk_buff *skb, struct device *dev);
 static void    el16_interrupt(int irq, void *dev_id, struct pt_regs *regs);
@@ -329,18 +329,12 @@
 __initfunc(int el16_probe1(struct device *dev, int ioaddr))
 {
        static unsigned char init_ID_done = 0, version_printed = 0;
+       unsigned short inputbyt;
        int i, irq, irqval;
 
        if (init_ID_done == 0) {
-               ushort lrs_state = 0xff;
-               /* Send the ID sequence to the ID_PORT to enable the board(s). */
                outb(0x00, ID_PORT);
-               for(i = 0; i < 255; i++) {
-                       outb(lrs_state, ID_PORT);
-                       lrs_state <<= 1;
-                       if (lrs_state & 0x100)
-                               lrs_state ^= 0xe7;
-               }
+               el16_patternout();
                outb(0x00, ID_PORT);
                init_ID_done = 1;
        }
@@ -364,6 +358,38 @@
           the S.A. for the manufacturer's code. */
 
        irq = inb(ioaddr + IRQ_CONFIG) & 0x0f;
+       if (init_ID_done == 1 && dev->irq !=0 && irq != dev->irq)
+       { /* The user selected an irq that does not match with the card
+             irq.  Attempt to reset it */
+               outb(0x00, ID_PORT);
+               el16_patternout();
+               el16_patternout();
+               outb(0xff, ID_PORT);
+               inputbyt = inb(ioaddr + IRQ_CONFIG);
+               /* get rid of the last 5 bits (4 is reset) */
+               inputbyt = inputbyt & 0xe0;
+               inputbyt = inputbyt | dev->irq;
+               printk("Attempting to set irq to %x\n", dev->irq);
+               outb(inputbyt, ioaddr + IRQ_CONFIG);
+
+               /* reset the port (but not restart) */
+               outb(0x00, ID_PORT);
+               el16_patternout();
+               outb(0x00, ID_PORT);
+
+               /* check to see if new irq is in */
+               inputbyt = inb(ioaddr + IRQ_CONFIG);
+               inputbyt = inputbyt & 0x0f;
+                if (inputbyt == dev->irq)
+                       printk("succeeded to reset irq to %x\n", dev->irq);
+               else
+               {
+                       printk("failed to reset irq to %x\n", dev->irq);
+                       return EAGAIN;
+               }
+                irq = dev->irq;
+               init_ID_done = 2; /* no need to reset twice */
+       }
 
        irqval = request_irq(irq, &el16_interrupt, 0, "3c507", dev);
        if (irqval) {
@@ -432,6 +458,20 @@
        return 0;
 }
 
+__initfunc(void el16_patternout(void))
+{
+       ushort lrs_state = 0xff;
+       int i;
+
+       /* Send the ID sequence to the ID_PORT to enable the board(s). */
+       for(i = 0; i < 255; i++) {
+               outb(lrs_state, ID_PORT);
+               lrs_state <<= 1;
+               if (lrs_state & 0x100)
+                       lrs_state ^= 0xe7;
+       }
+}
+
 static int el16_open(struct device *dev)
 {
        /* Initialize the 82586 memory and start it. */
@@ -885,6 +925,7 @@
 {
        if (io == 0)
                printk("3c507: You should not use auto-probing with insmod!\n");
+printk("3c507: setting io %x irq %d\n", io, irq); /* ericc */
        dev_3c507.base_addr = io;
        dev_3c507.irq       = irq;
        if (register_netdev(&dev_3c507) != 0) {


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

From: [EMAIL PROTECTED]
Subject: Help installing Netscape 6 Preview Release 2.
Date: Mon, 18 Sep 2000 22:13:18 GMT

Help installing Netscape 6 Preview Release 2.
Hello,
I'm running the Netscape browser that came with RedHat Linux 6.2.
I'd like to try out the new Netscape browser, but as I'm new to Linux, I
need some help.
I can go to the download site and choose the following file.
netscape-i686-pc-linux-gnu-sea.tar.gz
Then what?  In which directory/folder should I place it?
Need I be in root account to install Netscape?
After downloading the file, what do I do?
What's .gz & .tar?  I'm assuming that -sea stands for "self-extracting
archive".  What do I do/type to install the software?
How do I remove the old Netscape browser, afterwards?
I may need step-by-step instructions.
Thanks in advance.



----


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

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

From: [EMAIL PROTECTED]
Subject: Same IRQ for Modem & Sound
Date: Mon, 18 Sep 2000 22:19:36 GMT

Hello,
I have a HP 3390 Notebook with the same IRQ of 5 for the sound and
modem. I installed Mandrake 7.1 and it's great ! I can use Mandrakes
Hardware utility Harddrake Config and it finds the modem and sound but
does not list any info in the right pane. I can go to the /dev dir and
the sound file is flashing red, probably because of the IRQ conflict.
This thing has a built in modem and sound but with different mem
addresses. ALso upon shut down I see an error that Mandrake cannot save
the Sound config.. Any way to set them up ?? Or buy an external PCMCIA
Modem/Lan by Linksys??
I would appreciate any info,, David


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

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

From: [EMAIL PROTECTED]
Subject: Practice test for SAIR LCA ?
Date: Mon, 18 Sep 2000 22:29:07 GMT

Hello,
Anyone know where I can find some Practice test for the sair linux LCA
exams??
I'd appreciate any info,, Thanks  David


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

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

From: [EMAIL PROTECTED]
Crossposted-To: alt.os.linux
Subject: Compiled 2.2.17 =  machine HALTS
Date: 18 Sep 2000 23:21:32 GMT

I just compiled the new kernel (2.2.17) on my RH6.2 box according to 2 diff't howto's. 
One from www.linuxdoc.org and one from
www.linuxnewbie.org.

Everything seemed to go okay when I did a "make bzImage". I copied the bzImage to 
/boot/ and renamed it to "vmlinuz-2.2.17"
to follow the existing convention... I then edited my /etc/lilo.conf to reflect the
new kernel:

image=/boot/vmlinuz-2.2.14-5.0
        label=linux-backup
        read-only
        ...

image=/boot/vmlinuz-2.2.17
        label=linux
        read-only
        ...


I then ran "/sbin/lilo" and there were no error messages. The output was:

Added linux-backup
Added linux *

I rebooted and now the friggin' machine halts with the prompt: "LIL-".  It jsut sits 
there. LUckily I made a boot disk so I
still have access to the machine.

What should I do?


-- 

-T.

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

From: VIVEK GUPTA <[EMAIL PROTECTED]>
Subject: Whatz new in Kernel 2.2.17
Date: Mon, 18 Sep 2000 16:37:49 -0700

Hi 
        Does anybody know What's new in Kernel 2.2.17 ? I tried searching about
this on www.kernel.org but could not find anything. I am planning to go
from 2.2.14 to 2.2.17.

        Is there a document which says whatz new in 2.2.17?

Regards,

Vivek

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

From: "Nicholas Knight" <[EMAIL PROTECTED]>
Crossposted-To: alt.os.linux
Subject: Re: Compiled 2.2.17 =  machine HALTS
Date: Mon, 18 Sep 2000 23:59:14 GMT

<[EMAIL PROTECTED]> wrote in message news:8q681s$p99$[EMAIL PROTECTED]...
> I just compiled the new kernel (2.2.17) on my RH6.2 box according to 2
diff't howto's. One from www.linuxdoc.org and one from
> www.linuxnewbie.org.
>
> Everything seemed to go okay when I did a "make bzImage". I copied the
bzImage to /boot/ and renamed it to "vmlinuz-2.2.17"
> to follow the existing convention... I then edited my /etc/lilo.conf to
reflect the
> new kernel:
>
> image=/boot/vmlinuz-2.2.14-5.0
>         label=linux-backup
>         read-only
>         ...
>
> image=/boot/vmlinuz-2.2.17
>         label=linux
>         read-only
>         ...
>
>
> I then ran "/sbin/lilo" and there were no error messages. The output was:
>
> Added linux-backup
> Added linux *
>
> I rebooted and now the friggin' machine halts with the prompt: "LIL-".  It
jsut sits there. LUckily I made a boot disk so I
> still have access to the machine.
>
> What should I do?

post your entire lilo.conf
my guess is you set an option wrong somewhere



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

From: scott ferguson <[EMAIL PROTECTED]>
Subject: linux on a floppy
Date: Mon, 18 Sep 2000 17:06:06 -0700

I've seen a small distro on a floppy. text based command line. I would like to
do an install on a 486 with out a cd rom.. Lots of ram, 500meg hard drive but
not networked, stand alone machine
email reply please to [EMAIL PROTECTED]
Thanks

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

From: "Philo" <[EMAIL PROTECTED]>
Subject: Re: Existing Partition/newbie
Date: Mon, 18 Sep 2000 19:01:16 -0500

when you get to the linux install simply delete the partition you had set
aside for linux.
then with the free space you have just created...you may *add* your linux
partitions.

Philo

(beleive me, i missed that one too when i first started !)



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

From: stu <[EMAIL PROTECTED]>
Crossposted-To: alt.os.linux,alt.os.linux.redhat,comp.os.linux
Subject: make modules_install is blowing up in 2.4.0-test8 kernel
Date: Mon, 18 Sep 2000 11:33:58 -0400

I recieve the following error when trying to to do "make
modules_install" with the 2.4.0-test8 kernel.

==========================================================================

make[1]: Leaving directory `/usr/src/linux-2.4.0-test8/arch/i386/lib'
cd /lib/modules/2.4.0-test8; \
mkdir -p pcmcia; \
find kernel -path '*/pcmcia/*' -name '*.o' | xargs -i -r ln -sf ../{}
pcmcia
if [ -r System.map ]; then /sbin/depmod -ae -F System.map  2.4.0-test8;
fi
/sbin/depmod: invalid option -- F
Usage: depmod [-e -s -v ] -a [FORCED_KERNEL_VER]
       depmod [-e -s -v ] MODULE_1.o MODULE_2.o ...
Create module-dependency information for modprobe.

  -a, --all                  visit all modules
  -d, --debug                run in debug mode
  -e                         output unresolved symbols
  -i                         ignore symbol versions
  -m, --system-map <file>    use the symbols in <file>
  -s, --system-log           use the system log for error reporting
      --help                 display this help and exit
  -v, --verbose              run in verbose mode
  -V, --version              output version information and exit
make: *** [_modinst_post] Error 1


===============================================================================

Do I need a newer version of depmod? Do I need to edit the makefile?
Any feedback would be great.

-Stuart




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

From: "Howard Williams" <[EMAIL PROTECTED]>
Crossposted-To: 
linux.redhat.misc,alt.os.linux,alt.os.linux.best,comp.os.linux.networking
Subject: Best time synch program for "official time"
Date: Mon, 18 Sep 2000 17:16:46 -0700

Hi

I need to synchronize a few servers on the network.  I guess I'll use timed
for synchronizing off of each other (unless someone can suggest an
alternative) but I'm mostly curious as to how I can synchronize a "master"
with the official US time clock, or Grenwich or somewhere.  Please let me
know at [EMAIL PROTECTED]

Thank you



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

From: Francis Tseng <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.hardware
Subject: modem initialization problem
Date: Mon, 18 Sep 2000 19:03:47 -0500

Hi, I have a Zoom external modem but have trouble initializing it upon
boot. After my system is ready, I run minicom and don't get the "OK"
prompt. If I type "AT" myself, I see nothing on the screen. The strange
thing is that if I switch the power of my external modem off and then on
again, I can get the modem to respond with "OK" when I type 
"AT". Does anyone know why this is happening? Oh, the modem is turned on
during the boot process.

I've gone through the suggestions in the Modem-HOWTO. ie. I've checked
for IRQ conflicts. So far, everything in my system seems to be set up
correctly.

Any suggestion is appreciated. Thanks.

-- 
Francis

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

From: "david23" <[EMAIL PROTECTED]>
Subject: installing without an existing os
Date: Mon, 18 Sep 2000 20:32:44 -0400

I have an old PC with 2 hard drives.
The drive which has windows is small and I do not want to use it.
The other drive is new and was used as a slave drive.
I would like remove the old small drive and to install linux on the slave
drive.
Will I need windows/dos installed on the slave drive to install linux?
Are there installers that run off a boot disk?

Thanks
David



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

From: Tom Aschenbrenner <[EMAIL PROTECTED]>
Subject: powerpoint viewer
Date: Mon, 18 Sep 2000 19:36:22 -0500

Does anyone know of software that can be used to view powerpoint
slide files?
  thanks,  tom a

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

From: "Martin Graiter" <[EMAIL PROTECTED]>
Crossposted-To: alt.os.linux.mandrake,comp.os.linux.hardware
Subject: Re: Tearing video display
Date: Mon, 18 Sep 2000 01:46:28 +0200

Try LOWER the sync values. Tell the X configurator that your
monitor is less capable than it actually is. That usually helps.



MG



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

From: Opps <[EMAIL PROTECTED]>
Subject: Disable download resume support in apache,help!
Date: Tue, 19 Sep 2000 08:51:29 +0800

OK..I Know it maynot helpful for stopping my dear user putting MP3 or
use my site as their back up server...but are there anyway to disable
download resume support in Apache?and u know,nowaday segment download is
very popular that is quite unfair to other user that don't use it on my
system

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

From: John Thompson <[EMAIL PROTECTED]>
Subject: Re: sorry but i couldnt find a way to rescue
Date: Mon, 18 Sep 2000 17:53:57 -0500

[EMAIL PROTECTED] wrote:

> Does linux have a problem recognizing more than 4 partitions from mbr?

No.  But the HD hardware spec for PC's only allows room in the
partition table for four primary partitions.  One of these per
physical device can be defined as an "extended partition" which
in turn can contain an arbitrary number "logical" partitions."
Users of Microsoft operating systems sometimes find this to be a
problem as MS operating systems refuse to boot from anything but
a primary partition.  Linux and other non-MS operating systems
(eg OS/2, DR-DOS, BeOS, etc.) have no problem booting from a
logical partition so the "4 prmimary partitions per physical
device" limitation is moot.

-- 


-John ([EMAIL PROTECTED])

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

From: [EMAIL PROTECTED]
Subject: Re: powerpoint viewer
Date: Tue, 19 Sep 2000 01:33:33 GMT

In article
<[EMAIL PROTECTED]>,
  Tom Aschenbrenner <[EMAIL PROTECTED]> wrote:

> Does anyone know of software that can be used to view powerpoint
> slide files?
...

StarOffice, http://www.sun.com get the so-5_2-ga-bin-linux-en.bin file.
There is a pdf for installation instructions as well.


-   tony


-


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

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

From: [EMAIL PROTECTED]
Subject: how to debug crashing application
Date: Tue, 19 Sep 2000 01:35:29 GMT

First off, I debated about where I should post this message and decided
on this group.  Redirects to a more appropriate forum are welcome.

Let me start this thread by being general.  Netscape crashes when I
access certain web sites (such as www.intellicast.com).  It seems to be
related to java cgi documents - however, that is just a guess.  I'll be
more specific about versions and such, if necessary, in a later thread.

QUESTION:  How do I go about debugging this problem to determine if it
is java realted, a netscape issue, or some other Linux configuration
problem?  Are there any debugging utilities that I can use to reveal the
cause of my problem?  I've tried upgrading Netscape and Java, but the
issue persists.

The difficulty is that netscape gets caught up in an endless loop (I
guess).  It consumes about 90% of my CPU cyles and all open windows at
that time will fail to update.  To resume, I have to kill -9 netscape.

-dnult


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

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


** 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.setup) 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-Setup Digest
******************************

Reply via email to