Thread: Help please

Results 1 to 6 of 6
  1. #1 Help please 
    Welcome To The Rodeo

    Zro.'s Avatar
    Join Date
    May 2009
    Posts
    4,376
    Thanks given
    94
    Thanks received
    241
    Rep Power
    714
    I got a vps from hostgator and it's linux and i don't know how to make my server run on a linux please help

    I will really love you

    I would really like if you can teamview me and do it for me thanks :3
    Attached image
    Reply With Quote  
     

  2. #2  
    Super Donator

    Sicc's Avatar
    Join Date
    Jun 2008
    Posts
    1,010
    Thanks given
    54
    Thanks received
    105
    Rep Power
    822
    In command line:

    appletviewer Name
    :trollface:

    no I jk.

    Just Download WINE and run it.
    Reply With Quote  
     

  3. #3  
    Banned
    Join Date
    Mar 2009
    Posts
    372
    Thanks given
    12
    Thanks received
    9
    Rep Power
    0
    Im sure theres a tutorial or help page here on r-s forums somewhere.
    Reply With Quote  
     

  4. #4  
    Super Donator

    Sicc's Avatar
    Join Date
    Jun 2008
    Posts
    1,010
    Thanks given
    54
    Thanks received
    105
    Rep Power
    822
    Code:
    #!/bin/bash
    java -Xmx512m -cp server
    in same directory do
    Code:
    chmod -x run
    Reply With Quote  
     

  5. #5  
    Registered Member
    LAMT's Avatar
    Join Date
    Jul 2007
    Posts
    1,120
    Thanks given
    45
    Thanks received
    10
    Rep Power
    716
    Try typing:
    sudo install java or
    sudo get java
    Does it start downloading java

    Reply With Quote  
     

  6. #6  
    Registered Member
    Its paris's Avatar
    Join Date
    Apr 2009
    Posts
    1,141
    Thanks given
    56
    Thanks received
    234
    Rep Power
    689
    Note that path names use different separator characters on different hosts. Windows uses "\", Unix"/", Macintosh ":". The static variables:

    File.separator - string with file separator
    File.separatorChar - char with file separator
    File.pathSeparator - string with path separator
    File.pathSeparatorChar - char with path separator
    can be used to insure that your programs are platform independent. For example, this snippet shows how to build a platform independent path:

    String dirName = "dataDir";
    String filename = "data.dat";
    File filData = new File(dirName + File.separator + filename);
    Source: Learning Java - Chapter 9 : Java

    This can be used to make your server really platform independant (Well, the paths).
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

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