Go Back   EQEmulator Home > EQEmulator Forums > Archives > Archive::Misc > Archive::Off Topic

Archive::Off Topic Archive area for Off Topic's posts that were moved here after an inactivity period of 90 days.

Reply
 
Thread Tools Display Modes
  #1  
Old 09-16-2004, 11:28 AM
Spike
Discordant
 
Join Date: Mar 2004
Location: Florida
Posts: 362
Default Activating linux files?

How would I go about activation a linux file on a web host server?

It isn't going to be on my free hostultra account, but on my pay account on hostultra.com. I want to basically activate a dedicated linux file...

Install instructions:

On your linux box:
-Create a directory for the game. example:
mkdir /usr/local/games/ja
-Copy the linux binary into this directory
-Mark the file as executable. example:
chmod a+x /usr/local/games/ja/linuxjampded
-Create the 'base' directory. example:
mkdir /usr/local/games/ja/base
Note, YES, it is case sensitive and the program will look for all lower case
-Copy the files from the base directory of the retail CD into the
base directory you just created. In particular, the assets0.pk3, assets1.pk3 and assets2.pk3
Yes, you need all of them...
-Copy the libcxa.so.1 to your lib directory if it doesn't already have it. Example:
cp libcxa.so.1 /usr/lib



That's the instructions, how would I use it to activate the linux file?

If you could show me through example that would be of great help, maybe helping me understand it more.
-----------------------------------------------------------------------------------
THIS IS MY FTP

placida.fu8.com >

www
tmp
public_html
public_ftp
mail
etc
.trash
.sqmaildata
.neomail
.htpasswds
.htmltemplates
.gnupg
.fantasticodata
.autorespond
libcxa.so.1
config.php
.spamkey
.phpchats
.mailboxlist
.lastlogin
.cpanel-ducache
.contactemail
.autorespond-loopprotect
__________________
Reply With Quote
  #2  
Old 09-16-2004, 12:17 PM
sotonin
Demi-God
 
Join Date: May 2004
Posts: 1,177
Default

you can't do anything through ftp.

You have to have shell access and log in via secure shell.
Reply With Quote
  #3  
Old 09-16-2004, 12:48 PM
wize_one
Dragon
 
Join Date: Jan 2004
Location: LasShithole, NV
Posts: 520
Default

perl, a users dream and a system ops nightmare
__________________
Perfect quote from another site: it's immature pricks who refuse to read the numerous stickies in every forum pointing out what to do and what not to do that get flamed. Grow up and learn to do your fucking homework before opening your cake hole, junior. EQEmu doesn't like you anymore, and that's why you're getting errors. So go away.
__________________
Reply With Quote
  #4  
Old 09-16-2004, 02:02 PM
Spike
Discordant
 
Join Date: Mar 2004
Location: Florida
Posts: 362
Default

I'm sorry world builders but... can you talk in newbie language really quick cause, im just one giant newbie at this whole webpage stuff. Shell? Perl? What? How do I use this stuff?
__________________
Reply With Quote
  #5  
Old 09-16-2004, 02:05 PM
sotonin
Demi-God
 
Join Date: May 2004
Posts: 1,177
Default

well linux is a command line operating system at heart.

shell is like a telnet for logging into linux command prompt.

imagine logging into dos prompt on a remote machine from your home pc. its like that. it plants you right into the file system of the server.

most hosts do not allow this. if they allow any shell it's very restricted and you can only access your little folder. more than likely you cant put ANY files into /usr/bin and the like. you need your own server for that stuff.

So you're likely shit outa luck. =(
Reply With Quote
  #6  
Old 09-16-2004, 02:15 PM
Spike
Discordant
 
Join Date: Mar 2004
Location: Florida
Posts: 362
Default

Nothing inside of my webhoster's control panel will allow me to activate a linux file?

__________________
Reply With Quote
  #7  
Old 09-16-2004, 02:27 PM
daeken_bb
Discordant
 
Join Date: Mar 2003
Location: Chambersburg, PA
Posts: 469
Default

If you mean 'execute', then you'll either need to write a script to execute it remotely, or have shell access... I think you're SOL on both counts.
__________________
Keep me unemployed and working on OpenEQ, PM me about donating

Check out my deviantART page at http://daeken.deviantart.com/
Reply With Quote
  #8  
Old 09-16-2004, 04:01 PM
govtcheeze
Hill Giant
 
Join Date: Mar 2004
Location: South Florida
Posts: 247
Default

If you have access to php
__________________
GovtCheeze, Welfare Warrior
"Listen, here's the thing. If you can't spot the sucker in the first half hour at the table, then you ARE the sucker." -- Mike McDermott, Rounders

Developer of the original (circa 2004):
Loots v2.0, bitch!
Faction v1.0, bitch!
Magelo-like clone v0.3, bitch!
Zone geometry and spawn/path viewer, bitch!
Reply With Quote
  #9  
Old 09-16-2004, 08:04 PM
eq_addict_08
Hill Giant
 
Join Date: Nov 2003
Location: Drunk tank
Posts: 199
Default

hehe, looks like it was set up for web site devevopement. Prolly get tiked at you for the cpu/mem usage you would get hosting an emu server from there...
Reply With Quote
  #10  
Old 09-16-2004, 11:22 PM
Spike
Discordant
 
Join Date: Mar 2004
Location: Florida
Posts: 362
Default

daeken_bb - Could you perhaps write a script for me, and tell me how to work it?


govtcheeze - I do have access to php, would it be a .php file to activate it? If so, what would I put into the .php file. Or, could you make me one and tell me how to work it?



Thanks for any help.
__________________
Reply With Quote
  #11  
Old 09-16-2004, 11:29 PM
daeken_bb
Discordant
 
Join Date: Mar 2003
Location: Chambersburg, PA
Posts: 469
Default

Read the manual page for exec() and figure it out.. you're not going to learn anything by having someone else do it for you.
__________________
Keep me unemployed and working on OpenEQ, PM me about donating

Check out my deviantART page at http://daeken.deviantart.com/
Reply With Quote
  #12  
Old 09-16-2004, 11:47 PM
Spike
Discordant
 
Join Date: Mar 2004
Location: Florida
Posts: 362
Default

Just tell me if I am correct here...

The file is called jampded

start Notepad.exe minimized in the background:
$WshShell = new COM("WScript.Shell");
$oExec = $WshShell->Run("jampded", 7, false);

start a shell command invisible in the background:
$WshShell = new COM("WScript.Shell");
$oExec = $WshShell->Run("cmd /C dir /S %windir%", 0, false);

start MSPaint maximized and wait for you to close it before continuing the script:
$WshShell = new COM("WScript.Shell");
$oExec = $WshShell->Run("jampded", 3, true);
__________________
Reply With Quote
  #13  
Old 09-16-2004, 11:51 PM
daeken_bb
Discordant
 
Join Date: Mar 2003
Location: Chambersburg, PA
Posts: 469
Default

Heh, linux doesn't have COM... just use exec()
__________________
Keep me unemployed and working on OpenEQ, PM me about donating

Check out my deviantART page at http://daeken.deviantart.com/
Reply With Quote
  #14  
Old 09-17-2004, 01:04 AM
sotonin
Demi-God
 
Join Date: May 2004
Posts: 1,177
Default

it wouldnt work anyways spike you would need to put those files it says into /usr/bin which i guarantee you dont have access too. you're screwed man you need your own server
Reply With Quote
  #15  
Old 09-17-2004, 06:30 AM
wize_one
Dragon
 
Join Date: Jan 2004
Location: LasShithole, NV
Posts: 520
Default

Quote:
Originally Posted by spike
start Notepad.exe minimized in the background:
yup thats linux alright
__________________
Perfect quote from another site: it's immature pricks who refuse to read the numerous stickies in every forum pointing out what to do and what not to do that get flamed. Grow up and learn to do your fucking homework before opening your cake hole, junior. EQEmu doesn't like you anymore, and that's why you're getting errors. So go away.
__________________
Reply With Quote
Reply


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 On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 10:03 PM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3