Re: RH 6.2 kernel sources

2000-04-20 Thread Edward Hoo
The module version information seems to be out of synch in the 6.2 distribution (or at least they behave differently). Rename the /lib/modules directory (so that the older modules are no longer accessible) and rebuild the kernel with "make bzImage modules modules_install". Keep a bootable fl

Re: query in kernel version

2000-04-20 Thread John Summerfield
> /sbin/insmod -f cpqfc.o > Warning: kernel-module version mismatch > cpqfc.o was compiled for kernel version 2.2.12-32 > while this kernel is version 2.2.12-20 > > cpqfc.o: init_module: Device or resource busy There's an option to include kernel version info in modules. You can

Re: Logout script

2000-04-20 Thread John Summerfield
> Hi, > I am new to Linux so this may be a simple matter to solve. I am running an > application on a Red Hat 6.1 server, which Win 95 users access via a terminal > emulator (TTWin Lite). I don't want users to have command line access, so th > e > emulator connects, logs, and runs a sript upon s

RH 6.2 kernel sources

2000-04-20 Thread Fernando Herrera
Hi, I was trying to package a kernel for RH 6.2, based on the original SRPM with some crypto added (IPSEC and international patch, basically). After lot of headaches I get a clean FreeSwan/Ipsec patch and rh style utils nand init, but a module in the kernel didn't work: emu10k1 . I tried

Re: Logout script

2000-04-20 Thread Alex Kanavin
On 19 Apr 2000, Carlos Saldarriaga wrote: > sx1 > echo -e 'logout /r' > > Any suggestions. > Thanks. Look at the /etc/passwd file. The last field is the program that runs when user logs in. Normally it's shell, but you should put there your program. -- Alexander Homepage: http://www.sensi.or

Re: Logout script

2000-04-20 Thread James M. Rogers
Run the application from the .profile Then at the end of the .profile put in the logout command. This would make your .profile look something like this: Don't put the '#!/bin/sh' at the beginining of your .profile. :) # Some default settings # ... # Some application settings # ... # Run the app

Re: Logout script

2000-04-20 Thread Ivan Jager
At the end of ~/.bash_profile put: appname parameters logout When the user logs in bash will do everything in ~/.bash_profile, so if at the end it says "logout", it will. Carlos Saldarriaga wrote: > Hi, > I am new to Linux so this may be a simple matter to solve. I am running an > application

Re: Logout script

2000-04-20 Thread Alan Cox
> #This is the application > sx1 > echo -e 'logout /r' > > Any suggestions. You dont actually need a script for this. Any program can be a users shell. Do chsh user /full/path/to/sx1 -- To unsubscribe: mail -s unsubscribe [EMAIL PROTECTED] < /dev/null

Re: Logout script

2000-04-20 Thread Viorel Anghel
On Wed, Apr 19, 2000 at 11:19:39PM -0700, Carlos Saldarriaga wrote: > Hi, > I am new to Linux so this may be a simple matter to solve. I am running an > application on a Red Hat 6.1 server, which Win 95 users access via a terminal > emulator (TTWin Lite). I don't want users to have command line

Re: Logout script

2000-04-20 Thread Ola Adigun
Perhaps replacing the last line with exit might solve the problem. Ola --- Carlos Saldarriaga <[EMAIL PROTECTED]> wrote: > Hi, > I am new to Linux so this may be a simple matter to solve. I am running an > application on a Red Hat 6.1 server, which Win 95 users access via a terminal > emulator

Re: ppp deamon

2000-04-20 Thread Greg Wright
Hi A couple of things you *ned* to know 1 This is not the list for this type of question, its a developers list, you need the redhat-listwhich is a more general list 2 turn off HTML when posting to mail lists unless you intend to be ignored :-) 3 Learn and remember sites

Re: Anaconda install bugs, update doesn't fix

2000-04-20 Thread Matt Wilson
What install method are you using? I'm guessing hard drive. Make sure you copied all the RPMS - it looks like you're missing at least the indexhtml package. Matt On Wed, Apr 19, 2000 at 01:54:40PM -0700, Tyler Smith wrote: > Hello, I am trying to install RH 6.2, and after nearly 10 tries and u

Re: ppp deamon

2000-04-20 Thread Vladislav Grinchenko
Bartek Zarzycki wrote: Tell me please From where can I download ppp-x.x.x.i386.rpm I use RedHat 5.2 Manhattanmy mail adress is [EMAIL PROTECTED] Thanks a lot http://rufus.w3.org/linux/RPM/contrib/libc6/i386/ --  --- Vlad | Vladislav Grinc

Memory leaks in catopen

2000-04-20 Thread Matt Domencic
Title: Memory leaks in catopen Is anyone aware of a memory leak in catopen?  It looks like catopen calls strdup and is not freeing memory.

Logout script

2000-04-20 Thread Carlos Saldarriaga
Hi, I am new to Linux so this may be a simple matter to solve. I am running an application on a Red Hat 6.1 server, which Win 95 users access via a terminal emulator (TTWin Lite). I don't want users to have command line access, so the emulator connects, logs, and runs a sript upon startup. The

ppp deamon

2000-04-20 Thread Bartek Zarzycki
Tell me please   From where can I download   ppp-x.x.x.i386.rpm   I use RedHat 5.2 Manhattan my mail adress is [EMAIL PROTECTED]   Thanks a lot

Anaconda install bugs, update doesn't fix

2000-04-20 Thread Tyler Smith
Hello, I am trying to install RH 6.2, and after nearly 10 tries and using the update disks provided on www.redhat.com, I am still not able to install it.  I do not have the exact error, but it is a python error.  From what I've copied of it it is like this   Exception Occurred   File "/usr/b

query in kernel version

2000-04-20 Thread Abhijit Seal
/sbin/insmod -f cpqfc.o Warning: kernel-module version mismatch cpqfc.o was compiled for kernel version 2.2.12-32 while this kernel is version 2.2.12-20 cpqfc.o: init_module: Device or resource busy In the kernel version number what does the number after the hyphen signify ? --