Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

...

Expand
titleOther Windows ssh/Terminal options

If your Windows version does not have ssh in Command Prompt or PowerShell:

More advanced options for those who want a full Linux environment on their Windows system:

From now on, when we refer to "Terminal", it is either the Mac/Linux Terminal program, Windows Command Prompt or PowerShell, or the PuTTY program.

...

Code Block
languagebash
titleSet up $HOME/local/bin directory
mkdir -p ~/local/bin
cd ~/local/bin
ln -s -f /work/projects/BioITeam/common/bin/launcher_creator.py
ln -s
-f /work/projects/BioITeam/common/script/launcher_maker.py


Tip
titleThe tilde ( ~ ) character

The tilde character ( ~ ) is a pathname shortcut that means "Home directory". We'll see more of it later.

$HOME is an environment variable set by TACC that also refers to your Home area directory.

...