»
 

Go Back   ResellerRatings Store Ratings > ResellerRatings Forums > Free Stuff

Reply
 
LinkBack Thread Tools Display Modes
Old 10-12-2003, 08:56 PM   #1 (permalink)
Registered User
 
BitSpit's Avatar
 
Join Date: Mar 2003
Location: Glasgow, KY
Posts: 150
BitSpit is on a distinguished road
Send a message via ICQ to BitSpit Send a message via Yahoo to BitSpit
I'm Not Dead (and my adventures with Linux)

Just thought I'd check in so you people don't worry too much. I've been devoting all my free time since Friday to Armada. Since my Linux knowledge is rather weak, it takes my a while to do a few things (btw, what's a good CLI text editor that simple like Edit or Notepad? I'd rather telnet to server from my desktop.) Still have several bugs to work out. think has a tendency to not process. It'll start and then exit 5 seconds later. telnet to the client and it'll start just fine. I wasted a lot of time trying to get two Compaqs going. They're still down. Compaq has modified the BIOS on the NIC and it apparently doesn't send the PXEClient identifier to the server. Gotta do some research on that. If I can't PXE boot it, I can always resort to a floppy. On the plus side, I have access to the files for every client by telnetting to the server (that old Cyrix MediaGX. chosen because it's too slow for FaD and it's an AT system. Always on!)

That's it for now. I'll get stats posted when I get a chance.


Last edited by BitSpit; 10-14-2003 at 02:18 AM.
BitSpit is offline   Reply With Quote
Old 10-12-2003, 10:11 PM   #2 (permalink)
Registered User
 
Gouki's Avatar
 
Join Date: Oct 2001
Location: Cape Girardeau, MO
Posts: 940
Gouki is on a distinguished road
Send a message via ICQ to Gouki
Thanks for the update BitSpit...glad to know you're still alive and kickin.

Btw...anyone else besides me think of Monty Python & The Holy Grail from the subject of this thread? lol

"I'm not dead"
"You're not foolin anyone ya know...you'll still be dead in a moment'
"I don't want to go on the cart..."
"Oh don't be such a baby..."
"I feel happy...I feel hap..." <WHACK>

__________________
For Some it's the Path...not the Goal.
Gouki is offline   Reply With Quote
Old 10-12-2003, 10:16 PM   #3 (permalink)
Registered User
 
jmebonner's Avatar
 
Join Date: Feb 2003
Location: Far Western Kansas
Posts: 1,497
jmebonner is on a distinguished road
LOL Gouki, I thought of the same high pitched whine

My all time fav is the knight in the holy grail... No arms, no legs, but still talkin' trash.

Good to hear from you BitSpit. Thaks for doing the stats for us all the time, you deserve a break!
jmebonner is offline   Reply With Quote
Old 10-12-2003, 11:22 PM   #4 (permalink)
DPA
Registered User
 
DPA's Avatar
 
Join Date: Oct 2002
Location: Ghetto KCMO
Posts: 1,320
DPA is on a distinguished road
Send a message via ICQ to DPA Send a message via AIM to DPA Send a message via Yahoo to DPA
take a vacation man! i was wondering myself if you were dead or not, and figured that if you hadn't said anything by wednesday then it was official.

HOLY GRAIL RULES YOUR LIFE!
DPA is offline   Reply With Quote
Old 10-13-2003, 12:18 AM   #5 (permalink)
Registered User
 
Gouki's Avatar
 
Join Date: Oct 2001
Location: Cape Girardeau, MO
Posts: 940
Gouki is on a distinguished road
Send a message via ICQ to Gouki
Quote:
Originally posted by jmebonner
LOL Gouki, I thought of the same high pitched whine

My all time fav is the knight in the holy grail... No arms, no legs, but still talkin' trash.

"Well look you stupid bastard...you got no arms left!"
"Yes I have!"
"Well look!"
"It's just a flesh wound..."

__________________
For Some it's the Path...not the Goal.
Gouki is offline   Reply With Quote
Old 10-13-2003, 11:43 AM   #6 (permalink)
Contributing Editor
 
tony_j15's Avatar
 
Join Date: Mar 2003
Location: CJ,MO:REBEL Base
Posts: 2,169
tony_j15 is on a distinguished road
Send a message via ICQ to tony_j15 Send a message via AIM to tony_j15
"You Lie!"
"C'mon you pansy!"

Good to hear from you Bitspit!
tony_j15 is offline   Reply With Quote
Old 10-13-2003, 11:55 AM   #7 (permalink)
Registered User
 
eagle1's Avatar
 
Join Date: Oct 2001
Location: La Isla del Encanto
Posts: 4,125
eagle1 is on a distinguished road
Quote:
Since my Linux knowledge is rather weak, it takes my a while to do a few things (btw, what's a good CLI text editor that simple like Edit or Notepad?
An easy one to use is pico (if you have it installed).
__________________
boo!
eagle1 is offline   Reply With Quote
Old 10-13-2003, 01:35 PM   #8 (permalink)
Registered User
 
BitSpit's Avatar
 
Join Date: Mar 2003
Location: Glasgow, KY
Posts: 150
BitSpit is on a distinguished road
Send a message via ICQ to BitSpit Send a message via Yahoo to BitSpit
pico, huh? I'll have to install that when I get home.

I fixed the problem with the Compaqs. Needed to update the BIOS. Now the problem I have is THINK. It refuses to think. It give me the error (371) THINK already running. This is on a fresh boot. I checked and there is not another copy running when it gives me that error. It's driving me nuts. My other problem is server doesn't recoqnize command options when run from a script. That makes it impossible to have each node installed automatically. All I want to do is:

./server -receive
./server -allocate `ls j1*.log` `hostname`

(can you tell I've been doing some reading?)

All the the server sees is ./server so it tries to load and of course says that it's already running (which it is).

And now I have to deal with this network at work. Very crappy network cable.

Edit: thread at FaD forum with info about my problems

Last edited by BitSpit; 10-13-2003 at 02:51 PM.
BitSpit is offline   Reply With Quote
Old 10-13-2003, 03:30 PM   #9 (permalink)
Registered User
 
eagle1's Avatar
 
Join Date: Oct 2001
Location: La Isla del Encanto
Posts: 4,125
eagle1 is on a distinguished road
you have to add an & after the first ./server .

Like:

./server -receive &
./server -allocate `ls j1*.log` `hostname` &

See if that works.
Also, I only use ./server -auto & so ...
__________________
boo!
eagle1 is offline   Reply With Quote
Old 10-13-2003, 04:17 PM   #10 (permalink)
Registered User
 
BitSpit's Avatar
 
Join Date: Mar 2003
Location: Glasgow, KY
Posts: 150
BitSpit is on a distinguished road
Send a message via ICQ to BitSpit Send a message via Yahoo to BitSpit
I'll try that in addition to the static linked client when I get home.
BitSpit is offline   Reply With Quote
Reply




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Most Active Discussions

Recent Discussions

All times are GMT -6. The time now is 08:52 PM.