...
Expand |
---|
title | Other 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:
- Windows Subsystem for Linux – Windows 10 Professional includes a Ubuntu-like bash shells
|
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.
...
When you login via an interactive shell, a well-known script is executed to establish your favorite environment settings. The well-known filename is ~/.bashrc (or ~/.profile on some systems), which is specific to the bash shell.
We've set up a common login script for you to start with that will help you know where you are in the file system and make it easier to access some of our shared resources. To set it up, perform the steps below:
Tip |
---|
You can copy and paste these lines from the code block below into your Terminal window. Just make sure you hit Enter after the last line. |
Warning |
---|
If you already have a .bashrc set up, make a backup copy first. Code Block |
---|
| cd
ls cp-la .bashrc .bashrc. ~
# Do you see a .bashrc file? If so, save it off
cp .bashrc .bashrc.beforeNGS |
You can restore your original login script after this class is over. |
If your Terminal has a dark background (e.g. black), copy this file:
Code Block |
---|
language | bash |
---|
title | Copy a pre-configured login script for dark background Terminals |
---|
|
cd
cp /workcorral-repl/projectsutexas/BioITeam/projects/courses/Core_NGS_Tools/tacc/core_ngs_tools/login/bashrc.corengs.ls6.dark_bg ~/.bashrc
chmod 600 ~/.bashrc |
Expand |
---|
title | What is chmod doing? |
---|
|
What's going on with chmod? - The chmod 600 .bashrc command marks the file as readable and writable only by you.
The .bashrc script file will not be executed unless it has these exact permissions settings. - The well-known filename is ~/.bashrc (or ~/.profile on some systems), which is specific to the bash shell.
|
Since your ~/.bashrc is executed when you login, to ensure it is set up properly you should first log off ls6 like this:
Code Block |
---|
language | bash |
---|
title | Log off Lonestar6 |
---|
|
exit |
Then log back in to ls6.tacc.utexas.edu. This time your ~/.bashrc will be executed and you should see a new shell prompt:
...
If your Terminal has a light background (e.g. white), copy this file:
Code Block |
---|
language | bash |
---|
title | Copy a pre-configured login script for dark background Terminals |
---|
|
cp /corral-repl/utexas/BioITeam/core_ngs_tools/login/bashrc.corengs.ls6.light_bg ~/.bashrc
chmod 600 ~/.bashrc |
So why don't you see the .bashrc file you just copied to your home directory when you do ls? Because all files starting with a period (dot files) are hidden by default. To see them add the -l (long listing) and -a (all) options to ls:
Code Block |
---|
|
mkdir# -p ~/tmp/a/b/c
cd ~/tmp/a/b/c
# Your prompt should look like this:
ls6:~/tmp/a/b/c$ |
The prompt now tells you you are in the c sub-directory of the b sub-directory of the a sub-directory of the tmp sub-directory of your Home directory ( ~ ).
...
show a long listing of all files in the current directory, including "dot files" that start with a period
ls -la |
Expand |
---|
title | What is chmod doing? |
---|
|
What's going on with chmod? The chmod 600 ~/.bashrc command marks the file as readable and writable only by you. The .bashrc script file will not be executed unless it has these exact permissions settings. |
Since your ~/.bashrc is executed when you login, to ensure it is set up properly you should first log off ls6 like this:
Code Block |
---|
language | bash |
---|
title | How to see hidden files |
---|
|
cd
ls -a |
To see even more detail, including file type and permissions and symbolic link targets, add the -l (long listing) option:
Code Block |
---|
title | Long listing form of ls |
---|
|
ls -la |
Your Terminal has logged off of Lonestar6 and is now back on your local computer.
Now log back in to ls6.tacc.utexas.edu. This time your ~/.bashrc will be executed to establish your environment:
Tip |
---|
|
Your new ~/.bashrc file defines a ll alias command, so when you type ll it is short for ls -la. |
Details about your login script
We list the contents of your .bashrc login script to the Terminal with the cat (concatenate files) command. cat simply reads a file and writes each line of content to standard output (here, your Terminal):You should see a new command line prompt:
The great thing about this prompt is that it always tells you where you are, which avoids you having to execute the pwd (present working directory) command every time you want to know what the current directory is. Execute these commands to see how the prompt reflects your current directory.
Code Block |
---|
language | bash |
---|
title | List .bashrc file contents without pausing |
---|
|
cd
cat .bashrc
# or for larger files...
more .bashrc |
Tip |
---|
title | Don't use cat for large files |
---|
|
The cat command just displays the entire file's content, line by line, without pausing, so should not be used to display large files. Instead, use a pager (like more or less) or look at parts of the file with head or tail. |
You'll see the following (you may need to scroll up a bit to see the beginning):
Code Block |
---|
language | bash |
---|
title | Contents of your .bashrc file |
---|
|
#!/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
export PATH=.:$HOME/local/bin:$PATH
fi
# 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_mkdir -p ~/tmp/a/b/c
cd ~/tmp/a/b/c
# Your prompt should look like this:
ls6:~/tmp/a/b/c$ |
The prompt now tells you you are in the c sub-directory of the b sub-directory of the a sub-directory of the tmp sub-directory of your Home directory ( ~ ).
Your login script has configured this command prompt behavior, along with a number of other things.
Details about your login script
Let's take a look at the contents of your ~/.bashrc login script, using the cat (concatenate files) command. cat simply reads a file and writes each line of content to standard output (here, your Terminal):
Code Block |
---|
language | bash |
---|
title | Display .bashrc file contents |
---|
|
cd
cat .bashrc
|
Tip |
---|
title | Don't use cat for large files |
---|
|
The cat command just displays the entire file's content, line by line, without pausing, so should not be used to display large files. Instead, use a pager (like more or less) or look at parts of the file with head or tail. |
You'll see the following (you may need to scroll up a bit to see the beginning):
Code Block |
---|
language | bash |
---|
title | Contents of your .bashrc file |
---|
|
#!/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
export PATH=.:$HOME/local/bin:$PATH
fi
# For better colors using a dark background terminal, un-comment this line:
#export LS_COLORS=$LS_COLORS:'di=1;3433:fi=01:ln=01;36:'
export LANG="C" # avoid # 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:'
export LANG="C" # avoid the annoying Perl locale warnings
export BIWORK=/work/projects/BioITeam
export CORENGS=$BIWORK/projects/courses/Core_NGS_Tools
export BI=/corral-repl/utexas/BioITeam
export ALLOCATION=OTH21164 # For ls6 Group is G-824651
##export ALLOCATION=UT-2015-05-18 # For stampede2 Group is G-816696
##########
# SECTION 3 -- controlling the prompt
if [ -n "$PS1" ]; then PS1='ls6:\w$ '; fi
##########
# SECTION 4 -- Umask and aliases
#alias ls="ls --color=always"
alias ll="ls -la"
alias lah="ls -lah"
alias lc="wc -l"
alias hexdump='od -A x -t x1z -v'
umask 002
##########
# Optional Startup Script tracking
if [ -n "$SHELL_STARTUP_DEBUG" ]; then DBG_ECHO "${DBG_INDENT}}"; fi |
So what does this login script do? A lot! LetThere's look at just a few of them.
the "she-bang"
The first line is the she-bang. Even though the expression is inside a shell comment (denoted by the # character), it tells the shell (bash) what program should execute this file – in this case, bash itself.
Code Block |
---|
language | bash |
---|
title | The "she-bang" line |
---|
|
#!/bin/bash
|
environment variables
The login script also sets an environment variable $BIWORK to point to the shared directory /work/projects/BioITeam, and another environment variable $CORENGS to point to the specific sub-directory for our class.a lot of stuff here; let's look at just a few things.
environment variables
The login script sets several environment variables.
Code Block |
---|
language | bash |
---|
title | Setting environment variables to useful locations |
---|
|
export BIWORK=/work/projects/BioITeam
export CORENGS=$BIWORK/projects/courses/Core_NGS_Tools
export ALLOCATION=OTH21164 |
Environment variables are like variables in other programming languages like python or perl (in fact bash is a complete programming language).
They have a name (like BIWORK above) and a value (the value of $BIWORK is the pathname of the shared /work/projects/BioITeam directory). Read more about environment variables here: More on environment variables.
To see the value of an environment variable, use the echo command, then the variable name after a dollar sign ( $ ):
Code Block |
---|
language | bash |
---|
title | Setting environment variables to useful locations |
---|
|
export BIWORK=/work/projects/BioITeam
export CORENGS=$BIWORK/projects/courses/Core_NGS_Toolsecho $CORENGS
echo $ALLOCATION |
Environment variables are like variables in a programming language like python or perl (in fact bash is a complete programming language). They have a name (like BIWORK above) and a value (the value of $BIWORK is the pathname /work/projects/BioITeam). Read more about environment variables here: More on environment variables.
...
Tip |
---|
title | Important Tip -- the Tab key is your BFF! |
---|
|
The Tab key is one of your best friends in Linux. Hitting it invokes shell completion, which is as close to magic as it gets! - Tab once will expand the current command line contents as far as it can unambiguously.
- if nothing shows up, there is no unambiguous match
- Tab twice will give you a list of everything the shell finds matching the current command line.
- you then decide where to go next
|
Follow along with this:
Code Block |
---|
language | bash |
---|
title | Shell completion exercisecompletion exercise |
---|
|
# hit Tab once to expand the environment variable name
ls $BIW
# hit Tab once after typing $BIWORK/ again to expand the environment variable
ls $BIWORK/
# now hit Tab twice to see the contents of the directory
ls /work/projects/BioITeam/
# type "pr" and hit Tab again
ls /work/projects/BioITeam/pr
# type "co" and hit Tab again
ls /work/projects/BioITeam/projects/co
# type "Co" and hit Tab again
ls /work/projects/BioITeam/projects/courses/Co
# your command line should now look like this
ls /work/projects/BioITeam/projects/courses/Core_NGS_Tools/
# now type "mi" and one Tab
ls /work/projects/BioITeam/projects/courses/Core_NGS_Tools/mi
# your command line should now look like this
ls /work/projects/BioITeam/projects/courses/Core_NGS_Tools/misc/
# now hit Tab once
# There hit Tab once
# the shell expands as far as it can unambiguously,
# so is no unambiguous match, so hit Tab again
# After hitting Tab twice you should see several filenames:
# fastqc/ small.bam small.fq small2.fq
# now type "sm" and one Tab
# your command line should now look like this
ls /work/projects/BioITeam/projects/courses/Core_NGS_Tools/misc/small
# now hit Tab twice
# You should see 3 filenames, all starting with "small"
# small.bam small.fq
small2.fq
# type a period (".") then hit Tab twice again
# You're narrowing down the choices -- you should see two filenames
ls /work/projects/BioITeam/projects/courses/Core_NGS_Tools/misc/small
# small.bam small.fq
# finally, type "f" then hit Tab again. It should complete to this:
ls /work/projects/BioITeam/projects/courses/Core_NGS_Tools/misc/small.fq |
...
Here's how the common login script adds your $HOME/local/bin directory to the location list – recall that's where we linked several useful scripts – (we'll create that directory shortly), along with a special dot character ( . ) that means "here", or "whatever the current directory is". In the statement below, colon ( : ) separates directories in the list.
...
Code Block |
---|
language | bash |
---|
title | Setting up the friendly shell prompt for stampede |
---|
|
##########
# SECTION 3 -- controlling the prompt
if [ -n "$PS1" ]; then PS1='ls6:\w$ '; fi
|
Create some symbolic links and directories
First we will create a few directories and links we will use (more on these later).
Tip |
---|
You can copy and paste these lines from the code block below into your Terminal window. Just make sure you hit Enter after the last line. |
Create some symbolic links and directories
Create some symbolic links that will come in handy later:
...
Tip |
---|
$WORK and $SCRATCH are TACC environment variables that refer to your Work and Scratch file system areas (more on these file system areas soon). Environment variables are like variables in other programming languages: they have a name (WORK, SCRATCH) and hold a value ($WORK, $SCRATCH) To see the value of an environment variable, use the echo command, then the variable name after a dollar sign ( $ ): Code Block |
---|
|
|
echo $SCRATCH(more on these file system areas soon).
Expand |
---|
title | What is "ln -s" doing? |
---|
|
The ln -s command creates a symbolic link, a shortcut to the linked file or directory. - Here the link targets are your Work and Scratch file system areas
- Having these link shortcuts will help when you want to copy files to your Work or Scratch, and when you navigate the TACC file system using a remote SFTP client
- Always change directory (cd) to the directory where we want the links created before executing ln -s
- Here we want the links under your home directory (cd with no arguments)
Want to know where a link points to? Use ls with the -l (long listing) option- directory (cd with no arguments)
Want to know where a link points to? Use ls with the -l (long listing) option. Code Block |
---|
language | bash |
---|
title | ls -l shows where links go |
---|
| ls -l |
|
Anchor |
---|
| Local_Bin_Setup |
---|
| Local_Bin_Setup |
---|
|
Set up a ~/local/bin directory and link a script there that we will use in the class. Code Block |
---|
| bash |
title | ls -l shows where links go |
---|
ls -l |
...
| bash |
---|
title | Set up ~/local/bin directory |
---|
|
mkdir -p ~/local/bin
cd ~/local/bin
ln -s -f /work/projects/BioITeam/common/bin/launcher_creator.py
|
Since our ~/.bashrc login script added ~/local/bin to our $PATH, we can call any script or command in that directory with just its file name. And Tab completion works on program names too:
Code Block |
---|
language | bash |
---|
title | Set up $HOME/local/bin directory |
---|
|
mkdir -p ~/local/bin
cd ~/local/bin
ln -s -f /work/projects/BioITeam/common/bin/cd
# hit Tab once after typing "laun"
# This will expand to launcher_creator.py
|
Tip |
---|
title | The 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. |