ls -l /bin/tc* =
-rwxr-xr-x 1 root root 288604 Jun 24 2001 /bin/tcsh
ls -l /bin/cs* =
lrwxrwxrwx 1 root root 4 Sept 4 05:57 /bin/csh -> tcsh
ls -l rom =
-rwxrwxr-x 1 pumpkin pumpkin 1259151 Sept 4 16:51 rom
My startup script is as follows:
#!/bin/csh
# Written by Furey.
# With additions from Tony and Alander.
# Set the port number.
set port = 4000
if ( "$1" != "" ) set port="$1"
# Change to area directory.
cd ../area
# Set limits.
if ( -e shutdown.txt ) rm -f shutdown.txt
while ( 1 )
# If you want to have logs in a different directory,
# change the 'set logfile' line to reflect the directory name.
set index = 1000
while ( 1 )
set logfile = ../log/$index.log
if ( ! -e $logfile ) break
@ index++
end
# Run rom.
../src/rom $port >&! $logfile
# Restart, giving old connections a chance to die.
if ( -e shutdown.txt ) then
rm -f shutdown.txt
exit 0
endif
sleep 15
end
Thanks a million for your help. I really appretiate it.
Dantin
----- Original Message -----
From: "Jamie Harrell" <[EMAIL PROTECTED]>
To: "Dantin" <[EMAIL PROTECTED]>
Sent: Saturday, September 07, 2002 5:38 PM
Subject: Re: Rom in RedHat 7.3
> Ok, couple things to do so I can help you out with this:
> Copy the output of all of these into an e-mail to me:
>
> 1) ls -l /bin/tc*
> 2) ls -l /bin/cs*
> 3) show me an ls -l of your "rom" exec (which should be in your src
> folder)
> 4) Put your entire startup file shown here
>
> That should help me narrow this down completely.
>
> Best of luck.
>
>
> On Sat, 2002-09-07 at 15:17, Dantin wrote:
> > Okay I have expanded the permissions to tcsh. Now heres what I get when
I
> > type csh ./startup:
> >
> > [1] 2061
> > : Command not found.ea]$
> > : Command not found.
> > : Command not found.
> > : No such file or directory
> > HIT Enter
> > [1]+ Exit 1 csh ./startup
> >
> > This is getting frustrating. Thanks for all your help.
> >
> > Dantin
> >
> > ----- Original Message -----
> > From: "Jamie Harrell" <[EMAIL PROTECTED]>
> > To: "Rom Mailing List" <[email protected]>
> > Sent: Saturday, September 07, 2002 3:46 AM
> > Subject: Re: Rom in RedHat 7.3
> >
> >
> > > what would be the permissions on tsch?
> > >
> > > See, csh is like a "shortcut" if you will
> > > for tsch, that's what the "csh->tcsh" means...
> > >
> > > We call em "links", so you need to make sure
> > > that you have tcsh also setup with the proper
> > > permissions...
> > >
> > > Check that, hopefully it'll help ya get it started.
> > >
> > > Best of luck.
> > >
> > > On Sat, 2002-09-07 at 01:56, Dantin wrote:
> > > > Okay update... I have checked out the / and there is a bin
directory.
> > For
> > > > those just reading on this. I have installed QuickMUD unlimited bits
> > version
> > > > into my username directory. Been having problems trying to run the
mud.
> > I
> > > > run RedHat Linux version 7.3. Here is the error message I am
receiving
> > now
> > > > when I try and run the startup script.
> > > >
> > > > Here is what I typed to run the script:
> > > > csh ./startup &
> > > >
> > > > Here is the error message:
> > > > [1] 2998
> > > > bash: /bin/csh : Permission denied
> > > > HIT ENTER TO SEE PROMPT
> > > > [1]+ Exit 126 csh ./startup
> > > >
> > > > Here is the permissions listed with ls -l csh:
> > > > lrwxrwxrwx 1 root root 4 Sept 4 05:57 csh->tcsh
> > > >
> > > > Hope that helps in troubleshooting this bugger. Thanks again for any
> > help.
> > > >
> > > > Dantin
> > > >
> > > > ----- Original Message -----
> > > > From: "Jamie Harrell" <[EMAIL PROTECTED]>
> > > > To: "Rom Mailing List" <[email protected]>
> > > > Sent: Friday, September 06, 2002 7:53 PM
> > > > Subject: Re: Rom in RedHat 7.3
> > > >
> > > >
> > > > > > once again, this is why you become familliar with the Operating
> > system
> > > > and
> > > > > > THEN run programs on it
> > > > >
> > > > > You know what Tom? Your starting to sound like a broken record...
Why
> > > > > not just let that subject DIE about "He should become familiar
with
> > his
> > > > > operating system before running anything", it's like your beating
a
> > dead
> > > > > horse.
> > > > >
> > > > > BTW: Yes, the permissions are similar on RH7.3
> > > > > lrwxrwxrwx 1 root root 4 Aug 8 11:01 csh ->
tcsh
> > > > > -rwxr-xr-x 1 root root 288604 Jun 24 2001 tcsh
> > > > >
> > > > >
> > > > > If your permissions are similar to that, then you should be fine
> > > > > Dantin. (btw: Dantin, you can "man chmod" to figure out how to set
> > > > > the permissions properly, x being 1, w being 2 and r being 4)
> > > > >
> > > > > Another thing you might do is to give us a step by step breakdown
of
> > > > > how your attempting to start your mud, that may shed some light on
the
> > > > > matter of why you can't seem to start it.
> > > > >
> > > > > Best of luck.
> > > > >
> > > > >
> > > > > --
> > > > > ROM mailing list
> > > > > [email protected]
> > > > > http://www.rom.org/cgi-bin/mailman/listinfo/rom
> > > > >
> > > >
> > > >
> > > > --
> > > > ROM mailing list
> > > > [email protected]
> > > > http://www.rom.org/cgi-bin/mailman/listinfo/rom
> > > >
> > >
> > >
> > >
> > > --
> > > ROM mailing list
> > > [email protected]
> > > http://www.rom.org/cgi-bin/mailman/listinfo/rom
> > >
> >
> >
>
>