STAT 29000: Project 2 — Fall 2021
Navigating UNIX and using bash
Motivation: The ability to navigate a shell, like bash
, and use some of its powerful tools, is very useful. The number of disciplines utilizing data in new ways is ever-growing, and as such, it is very likely that many of you will eventually encounter a scenario where knowing your way around a terminal will be useful. We want to expose you to some of the most useful UNIX tools, help you navigate a filesystem, and even run UNIX tools from within your Jupyter Lab notebook.
Context: At this point in time, our new Jupyter Lab system, using gateway.scholar.rcac.purdue.edu and gateway.brown.rcac.purdue.edu, is very new to everyone. The comfort with which you each navigate this UNIX-like operating system will vary. In this project we will learn how to use the terminal to navigate a UNIX-like system, experiment with various useful commands, and learn how to execute bash commands from within Jupyter Lab.
Scope: bash, Jupyter Lab
Questions
If you are not a |
While it is not super common for us to push a lot of external reading at you (other than the occasional blog post or article), this is an excellent, and very short resource to get you started using a UNIX-like system. We strongly recommend readings chapters: 1, 3, 4, 5, & 7. It is safe to skip chapters 2, 6, and 8. |
Question 1
Let’s ease into this project by taking some time to adjust the environment you will be using the entire semester, to your liking. Begin by launching your Jupyter Lab session from either gateway.scholar.rcac.purdue.edu or gateway.brown.rcac.purdue.edu.
Explore the settings, and make at least 2 modifications to your environment, and list what you’ve changed.
Here are some settings Kevin likes:
Dr. Ward does not like to customize his own environment, but he does use the Emacs key bindings.
Only modify your keybindings if you know what you are doing, and like to use Emacs/Vi/etc. |
-
List (using a markdown cell) of the modifications you made to your environment.
Question 2
In the previous project, we used the ls
command to list the contents of a directory as an example of running bash code using the f2021-s2022
kernel. Aside from use the %%bash
magic from the previous project, there are 2 more straightforward ways to run bash code from within Jupyter Lab.
The first method allows you to run a bash command from within the same cell as a cell containing Python code. For example.
!ls
import pandas as pd
myDF = pd.DataFrame({'col1': [1, 2, 3], 'col2': [4, 5, 6]})
myDF.head()
The second, is to open up a new terminal session. To do this, go to man
.
# man is short for manual
# use "k" or the up arrow to scroll up, or "j" or the down arrow to scroll down.
man man
What is the absolute path of the default directory of your bash
shell?
Relevant topics: pwd
-
The full filepath of the default directory (home directory). Ex: Kevin’s is:
/home/kamstut
. -
The
bash
code used to show your home directory or current directory (also known as the working directory) when thebash
shell is first launched.
Question 3
It is critical to be able to navigate a UNIX-like operating system. It is more likely than not that you will need to use a UNIX-like system at some point in your career. Perform the following actions, in order, using the bash
shell.
I would recommend using a code cell with the magic |
-
Write a command to navigate to the directory containing the datasets used in this course:
/depot/datamine/data/
. -
Print the current working directory, is the result what you expected? Output the
$PWD
variable, using theecho
command. -
List the files within the current working directory (excluding subfiles).
-
Without navigating out of
/depot/datamine/data/
, list all of the files within the themovies_and_tv
directory, including hidden files. -
Return to your home directory.
-
Write a command to confirm that you are back in the appropriate directory.
|
-
Code used to solve this problem.
-
Output from running the code.
Question 4
When running the ls
command, you may have noticed two oddities that appeared in the output: "." and "..". .
represents the directory you are currently in, or, if it is a part of a path, it means "this directory". For example, if you are in the /depot/datamine/data
directory, the .
refers to the /depot/datamine/data
directory. If you are running the following bash command, the .
is redundant and refers to the /depot/datamine/data/yelp
directory.
ls -la /depot/datamine/data/yelp/.
..
represents the parent directory, relative to the rest of the path. For example, if you are in the /depot/datamine/data
directory, the ..
refers to the parent directory, /depot/datamine
.
Any path that contains either .
or ..
is called a relative path. Any path that contains the entire path, starting from the root directory, /
, is called an absolute path.
-
Write a single command to navigate to our modulefiles directory:
/depot/datamine/opt/modulefiles
-
Write a single command to navigate back to your home directory, however, rather than using
cd
,cd ~
, orcd $HOME
without the path argument, usecd
and a relative path.
Relevant topics: pwd, cd, . & .. & ~
-
Code used to solve this problem.
-
Output from running the code.
Question 5
Your $HOME
directory is your default directory. You can navigate to your $HOME
directory using any of the following commands.
cd
cd ~
cd $HOME
cd /home/$USER
This is typically where you will work, and where you will store your work (for instance, your completed projects). At the time of writing this, the $HOME
directories on Brown and Scholar are not synced. What this means is, files you create on one cluster will not be available on the other cluster. To move files between clusters, you will need to copy them using scp
or rsync
.
|
The depot
space is a network file system (as is the home
space, albeit on a different system). It is attached to the root directory on all of the nodes in the cluster. One convenience that this provides is files in this space exist everywhere the filesystem is mounted! In summary, files added anywhere in /depot/datamine
will be available on both Scholar and Brown. Although you will not utilize this space very often (other than to access project datasets), this is good information to know.
There exists 1 more important location on each cluster, scratch
. Your scratch
directory is located in the same place on either cluster: /scratch/$RCAC_CLUSTER/$USER
. scratch
is meant for use with really large chunks of data. The quota on Brown is 200TB and 2 million files. The quota on Scholar is 1TB and 2 million files. You can see your quota and usage on each system by running the following command.
myquota
|
-
Navigate to your
scratch
directory. -
Confirm you are in the correct location using a command.
-
Execute the
tokei
command, with input~dgc/bin
.Doug Crabill is a the compute wizard for the Statistics department here at Purdue.
~dgc/bin
is a directory he has made publicly available with a variety of useful scripts. -
Output the first 5 lines and last 5 lines of
~dgc/bin/union
. -
Count the number of lines in the bash script
~dgc/bin/union
(using a UNIX command). -
How many bytes is the script?
Be careful. We want the size of the script, not the disk usage.
-
Find the location of the
tokei
command.
When you type
— Scholar/Brown
|
Commands often have options. Options are features of the program that you can trigger specifically. You can see the options of a command in the DESCRIPTION section of the man pages.
You can see -m, -l, and -w are all options for
|
-
Code used to solve this problem.
-
Output from running the code.
Question 6
Perform the following operations.
-
Navigate to your scratch directory.
-
Copy the following file to your current working directory:
/depot/datamine/data/movies_and_tv/imdb.db
. -
Create a new directory called
movies_and_tv
in your current working directory. -
Move the file,
imdb.db
, from your scratch directory to the newly createdmovies_and_tv
directory (inside of scratch). -
Use
touch
to create a new, empty file calledim_empty.txt
in your scratch directory. -
Remove the directory,
movies_and_tv
, from your scratch directory, including all of the contents. -
Remove the file,
im_empty.txt
, from your scratch directory.
-
Code used to solve this problem.
-
Output from running the code.
Question 7
This question should be performed by opening a terminal window. . Enter the result/content in a markdown cell in your notebook. |
Tab completion is a feature in shells that allows you to tab through options when providing an argument to a command. It is a really useful feature, that you may not know is there unless you are told!
Here is the way it works, in the most common case — using cd
. Have a destination in mind, for example /depot/datamine/data/flights/
. Type cd /depot/d
, and press tab. You should be presented with a large list of options starting with d
. Type a
, then press tab, and you will be presented with an even smaller list. This time, press tab repeatedly until you’ve selected datamine
. You can then continue to type and press tab as needed.
Below is an image of the absolute path of a file in the Data Depot. Use cat
and tab completion to print the contents of that file.
-
The content of the file,
hello_there.txt
, in a markdown cell in your notebook.
Question 8 (optional, 0 pts, but recommended)
For this question, you will most likely want to launch a terminal. To launch a terminal click on . No need to input this question in your notebook. |
-
Use
vim
,emacs
, ornano
to create a new file in your scratch directory calledim_still_here.sh
. Add the following contents to the file, save, and close it.#!/bin/bash i=0 while true do echo "I'm still here! Count: $i" sleep 1 ((i+=1)) done
-
Confirm the contents of the file using
cat
. -
Try and run the program by typing
im_still_here.sh
.As you can see, simply typing
im_still_here.sh
will not work. You need to run the program with./im_still_here.sh
. The reason is, by default, the operating system looks at the locations in your$PATH
environment variable for executables to execute.im_still_here.sh
is not in your$PATH
environment variable, so it will not be found. In order to make it clear where the program is, you need to run it with./
. -
Instead, try and run the program by typing
./im_still_here.sh
.Uh oh, another warning. This time, you get a warning that says something like "permission denied". In order to execute a program, you need to grant the program execute permissions. To grant execute permissions for your program, run the following command.
chmod +x im_still_here.sh
-
Try and run the program by typing
./im_still_here.sh
. -
The program should begin running, printing out a count every second.
-
Suspend the program by typing Ctrl+Z.
-
Run the program again by typing
./im_still_here.sh
, then suspend it again. -
Run the command,
jobs
, to see the jobs you have running. -
To continue running a job, use either the
fg
command orbg
command.fg
stands for foreground andbg
stands for background.fg %1
will continue to run job 1 in the foreground. During this time you will not have the shell available for you to use. To re-suspend the program, you can press Ctrl+Z again.bg %1
will run job 1 in the background. During this time the shell will be available to use. Try runningls
to demonstrate. Note that the program, although running in the background, will still be printing to your screen. Although annoying, you can still run and use the shell. In this case, however, you will most likely want to stop running this program in the background due to its disruptive behavior. kdb:[Ctrl+Z] will will no longer suspend the program, because this program is running in the background, not foreground. To suspend the program, first send it to the foreground withfg %1
, then use Ctrl+Z to suspend it.
Experiment moving the jobs to the foreground, background, and suspended until you feel comfortable with it. It is a handy trick to learn!
By default, a program is launched in the foreground. To run a program in the background at the start, and the command with a
|
-
Code used to solve this problem. Since you will need to use Ctrl+Z, and things of that nature, when what you are doing isn’t "code", just describe what you are did. For example, if I press Ctrl+Z, I would say "I pressed Ctrl+Z".
-
Output from running the code.
Please make sure to double check that your submission is complete, and contains all of your code and output before submitting. If you are on a spotty internet connection, it is recommended to download your submission after submitting it to make sure what you think you submitted, was what you actually submitted. |