Table of Contents |
---|
...
- Macs and Linux have Terminal programs built-in – find it now on your computer
- Windows needs help
- Putty – http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html
- simple Terminal and file copy programs
- download either the Putty installer (https://the.earth.li/~sgtatham/putty/latest/w64/putty-64bit-0.70-installer.msi)
- or putty.exe (terminal) and pscp.exe (secure copy client)
- Windows Subsystem for Linux – Windows 10 Professional includes a Ubuntu-like bash shells
- See https://docs.microsoft.com/en-us/windows/wsl/install-win10
- We recommend the Ubuntu Linux distribution, but any Linux distribution will have an SSH client
- Cygwin – http://www.cygwin.com/
- A full Linux environment, including X-windows for running GUI programs remotely
- Complicated to install
- Putty – http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html
...
Code Block | ||||
---|---|---|---|---|
| ||||
#!/bin/bash # TACC startup script: ~/.bashrc version 2.1 -- 12/17/2013 # This file is NOT automatically sourced for login shells. # Your ~/.profile can and should "source" this file. # Note neither ~/.profile nor ~/.bashrc are sourced automatically # by bash scripts. # In a parallel mpi job, this file (~/.bashrc) is sourced on every # node so it is important that actions here not tax the file system. # Each nodes' environment during an MPI job has ENVIRONMENT set to # "BATCH" and the prompt variable PS1 empty. ################################################################# # Optional Startup Script tracking. Normally DBG_ECHO does nothing if [ -n "$SHELL_STARTUP_DEBUG" ]; then DBG_ECHO "${DBG_INDENT}~/.bashrc{"; fi ########## # SECTION 1 -- modules if [ -z "$__BASHRC_SOURCED__" -a "$ENVIRONMENT" != BATCH ]; then export __BASHRC_SOURCED__=1 module load launcher fi ############ # SECTION 2 -- environment variables if [ -z "$__PERSONAL_PATH__" ]; then export __PERSONAL_PATH__=1 fi # for CCBB summer school courses export PATH=.:$HOME/local/bin:$PATH export ALLOCATION=UT-2015-05-18 export BIWORK=/work/projects/BioITeam export CORENGS=$BIWORK/projects/courses/Core_NGS_Tools export BI=/corral-repl/utexas/BioITeam export LS_OPTIONS='-N --color=auto -T 0' # For better colors using a dark background terminal, un-comment this line: #export LS_COLORS=$LS_COLORS:'di=1;33:fi=01:ln=01;36:' # For better colors using a white background terminal, un-comment this line: #export LS_COLORS=$LS_COLORS:'di=1;34:fi=01:ln=01:;36:' ########## # SECTION 3 -- controlling the prompt if [ -n "$PS1" ]; then PS1='ls5:\w$ ' fi ########## # SECTION 4 -- Umask and aliases umask 002 alias ls="ls --color=always" alias ll="ls -la" alias lah="ls -lah" alias hexdump='od -A x -t x1z -v' ########## # Optional Startup Script tracking if [ -n "$SHELL_STARTUP_DEBUG" ]; then DBG_ECHO "${DBG_INDENT}}"; fi |
...