[newbie] Kernel 2.4

2001-03-02 Thread Robert Reed
Is it wise to upgrade to Kernel 2.4, or just wait for Mandrake 8.0? __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/

Re: [newbie] dear god!!! please take me off this iscrazy.....!!!!

2001-02-28 Thread Robert Reed
LOL!!! --- Mark Weaver [EMAIL PROTECTED] wrote: stephen galowski wrote: please use the unsubscrice command please Stephen, please turn off the annoying receipt request. It's really bad manners on a mailing list. thanks -- Mark "If you don't share your concepts and ideals,

[newbie] Installing Kernel

2001-02-28 Thread Robert Reed
I'm trying to recompiling the kernel using: $ make dep make bzImage make modules make modules_install But however, I get an error saying something like I can't target 'dep'. Stop. Can someone tell me what this means, and how to fix it? __ Do

RE: [newbie] GCC

2001-02-27 Thread Robert Reed
Thanks. --- Kevin_Bergner [EMAIL PROTECTED] wrote: type ./a.out -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Robert Reed Sent: Monday, February 26, 2001 10:52 PM To: [EMAIL PROTECTED] Subject: [newbie] GCC Hello, I just installed

[newbie] Compiling Drivers

2001-02-27 Thread Robert Reed
Does anyone know where the directory for the drivers are? The reason is that I want to recompile the Kernel with a driver. I want to use a new tulip.c driver so that I can use LNE100TX network card. The file says to type: mv /usr/src/linux/drivers/net/tulip.c

[newbie] GCC

2001-02-26 Thread Robert Reed
Hello, I just installed Linux today, and then installed the gcc compiler, and its dependencies. I built a simple program hello.c: #include stdio.h main() { printf("Hello World\n"); return 0; } After writing that, I compiled the code using: gcc hello.c I tried running it by typing: a.out