A Short Guide to code01.fit.edu

An FIT student can remotely access code01.fit.edu with his/her TRACKS account. It's a Linux-based system so it's similar to a Mac or Cygwin (on Windows) in terms of command-line interaction.

After you login to a lab Windows computer or code01.fit.edu, you have access to your U Drive. That is, your U Drive is accessible from many FIT computers.

  1. If you are off-campus, you would need VPN (Virtual Private Network) to be on FIT network to access FIT computers remotely
  2. How to use SSH and SFTP to Code01. Additional information:
  3. To set up a more recent version of Java on code01.fit.edu:
    1. login to code01.fit.edu
    2. check if .bash_profile exists in the home directory. If not, create one:
      ls .bash_profile
    3. (if you don't know how to modify a file on code01, you can download .bash_profile, then edit and upload it)
    4. add the following 2 lines to the *end* of .bash_profile
      export PATH=/usr/lib/jvm/java-18-openjdk/bin:$PATH
      echo "added /usr/lib/jvm/java-18-openjdk/bin to PATH"
    5. logout
    6. login to code01 (which automatically runs .bash_profile), you should see:
      added /usr/lib/jvm/java-18-openjdk/bin to PATH
    7. check the javac version, it should say: javac 18.0.1
      javac -version
  4. To compile and run your program on code01.fit.edu:
  5. more on "module" on code01
  6. UNIX/LINUX Tutorial for Beginners