TDM 20100: Project 2 — 2023
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 Jupyter Lab system, using ondemand.anvil.rcac.purdue.edu, is new to some of you, and maybe familiar to others. 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 (1 pt)
-
A list of length >=2 of modifications you made to your environment, in a markdown cell.
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 ondemand.anvil.rcac.purdue.edu.
Open your settings by navigating to
.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. Jackson loves to customize his own environment, but he despises Emacs bindings. Feel free to choose whatever is most comfortable to you.
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 (1 pt)
-
In a markdown cell, what is the absolute path of your home directory in Jupyter Labs?
In the previous project’s question 3, we used a tool called awk
to parse through a dataset. This was an example of running bash code using the seminar
kernel. Aside from use the %%bash
magic from the previous project, there are 2 other 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, using ls
can be done like so:
!ls
import pandas as pd
myDF = pd.DataFrame({'col1': [1, 2, 3], 'col2': [4, 5, 6]})
myDF.head()
This does not require you to have other, Python code in the cell. The following is perfectly valid.
With that being said, using this method, each line must start with an exclamation point. |
The second method is to open up a new terminal session. To do this, go to man
.
# man is short for manual, to quit, press "q"
# use "k" or the up arrow to scroll up, or "j" or the down arrow to scroll down.
man man
Great! Now that you’ve learned 2 new ways to run bash
code from within Jupyter Lab, please answer the following question:
What is the absolute path of the default directory of your bash
shell? When we say "default directory" we mean the folder that you are "in" when you first run bash
code in a Jupyter cell or when you first open a Terminal. This is also referred to as the home directory.
Relevant topics: pwd
-
bash
code to print the full filepath of the default directory (home directory), and the output of running that code. Ex: Kevin’s is:/home/x-kamstut
and Dr Ward’s is:/home/x-mdw
.
Question 3 (1 pt)
-
bash
to navigate to/anvil/projects/tdm/data
-
bash
to print the current working directory -
bash
to list the files in the current working directory -
bash
to list all of the files in/anvil/projects/tdm/data/movies_and_tv
, including hidden files -
bash
to return to your home directory -
bash
to confirm that you are back in your home directory (print your current working directory)
It is a critical skill to be able to navigate a UNIX-like operating system, and you will very likely need to use UNIX or Linux (or something similar) at some point in your career. For this question, write bash
code to perform the following tasks in order. In your final submission, please ensure that all of your steps and their outputs are included.
For the sake of consistency, please run your |
-
Navigate to the directory containing the datasets used in this course:
/anvil/projects/tdm/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
/anvil/projects/tdm/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 your home directory.
|
Relevant topics:
-
bash
to navigate to/anvil/projects/tdm/data
, and print the current working directory -
bash
to list the primary files in the current working directory -
bash
to list all of the files in/anvil/projects/tdm/data/movies_and_tv
, including hidden files -
bash
to return to your home directory and confirm you are there.
Question 4 (1 pt)
-
Write a single command to navigate to the modulefiles directory:
/anvil/projects/tdm/opt/lmod
, then confirm that you are in the correct directory using theecho
command. (0.5 pts) -
Write a single command to navigate back to your home directory, using relative paths, then confirm that you are in the correct directory using the 'echo' command. (0.5 pts)
When running the ls
command (specifically the ls
command that showed hidden files and folders), 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 /anvil/projects/tdm/data
directory, the .
refers to the /anvil/projects/tdm/data
directory. If you are running the following bash command, the .
is redundant and refers to the /anvil/projects/tdm/data/yelp
directory.
ls -la /anvil/projects/tdm/data/yelp/.
..
represents the parent directory, relative to the rest of the path. For example, if you are in the /anvil/projects/tdm/data
directory, the ..
refers to the parent directory, /anvil/projects/tdm
.
Any path that contains either .
or ..
is called a relative path (because it is relative to the directory you are currently in). Any path that contains the entire path, starting from the root directory, /
, is called an absolute path.
For this question, perform the following operations in order. Each operation should be a single command. In your final submission, please ensure that all of your steps and their outputs are included.
-
Write a single command to navigate to our modulefiles directory:
/anvil/projects/tdm/opt/lmod
. -
Confirm that you are in the correct directory using the
echo
command. -
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. -
Confirm that you are in the corrrect directory using the
echo
command.
If you don’t fully understand the text above, please take the time to understand it. It will be incredibly helpful to you, not only in this class, but in your career. You can also come to seminar or visit TA office hours to get assistance. We love to talk to students, and everyone benefits when we all collaborate. |
Relevant topics: pwd, cd, special-symbols
-
Single command to navigate to the modulefiles directory.
-
Single command to navigate back to your home directory using relative paths.
-
Commands confirming your navigation steps were successful.
Question 5 (1 pt)
-
Navigate to your scratch directory using environment variables.
-
Run
tokei
on your home directory (use an environment variable). -
Output the first 5 lines and last 5 lines of
/anvil/datasets/training/anvil-101/batch-test/batch-test-README
. Make sure it is clear which lines are the first 5 and which are the last 5. -
Output the number of lines in
/anvil/datasets/training/anvil-101/batch-test/batch-test-README
-
Output the size, in bytes, of
/anvil/datasets/training/anvil-101/batch-test/batch-test-README
-
Output the location of the
tokei
program we used earlier.
|
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).
The /anvil/projects/tdm
space is a directory created for The Data Mine. It holds our datasets (in the data
directory), as well as data for many of our corporate partners projects.
There exists 1 more important location on each cluster, scratch
. Your scratch
directory is located at /anvil/scratch/$USER
, or, even shorter, $SCRATCH
. scratch
is meant for use with really large chunks of data. The quota on Anvil is currently 100TB and 1 million files. You can see your quota and usage on Anvil by running the following command.
myquota
Doug Crabill is the one of the Data Mine’s extraordinarily wise computer wizards, and he has kindly collated a variety of useful scripts to be publicly available to students. These can be found in |
One of the helpful scripts we have at our disposal is tokei
, a code analysis tool. We can use this tool to quickly determine the language makeup of a project. An in-depth explanation of tokei can be found here, but for now, you can use it like so:
tokei /path/to/project
Sometimes, you may want to know what the first or last few lines of your file look like. head and tail can help us do that. Take a look at their documentation to learn more.
One goal of our programs is often to be size-efficient. If we have a very simple program, but it is enormous, it may not be worth our time to download and use. The wc tool can help us determine the size of our file. Take a look at its documentation for more information.
Be careful. We want the size of the script, not the disk usage. |
Finally, we often may know that a program exists, but we don’t know where it is. which can help us find the location of a program. Take a look at its documentation for more information, and use it to solve the last part of this question.
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
|
-
Navigate to your scratch directory, and run tokei on your home directory, using only environment variables.
-
Print out the first 5 lines and last 5 lines of the
/anvil/datasets/training/anvil-101/batch-test/batch-test-README
file. -
Print out the number of lines in the
/anvil/datasets/training/anvil-101/batch-test/batch-test-README
file. -
Print out the size in bytes of the
/anvil/datasets/training/anvil-101/batch-test/batch-test-README
file. -
Print out the location of the
tokei
program we used earlier in this question.
Question 6 (2 pts)
-
Navigate to your scratch directory.
-
Copy the file
/anvil/projects/tdm/data/movies_and_tv/imdb.db
to your current working directory. -
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.
Now that we know how to navigate a UNIX-like system, let’s learn how to create, move, and delete files and folders. For this question, perform the following operations in order. Each operation should be a single command. In your final submission, please ensure that all of your steps and their outputs are included.
First, let’s review the cp
command. cp
is short for copy, and it is used to copy files and folders. The syntax is as follows:
cp <source> <destination>
Next let’s take a look at the rm
command. rm
is short for remove, and it is used to remove files and folders. The syntax is as follows:
rm <file>
rm -r <directory>
Be very careful when using this command. If you use |
Finally, let’s learn about touch
and mkdir
. touch
is used to create new files, whereas mkdir
creates new directories. The basic syntax for these is as follows:
touch <file>
mkdir <directory>
With that, you should have all of the knowledge you need to work on this question! Remember, each command has its own unique flags and syntax. When in doubt, use man
to learn more about a command and its flags before using it haphazardly.
Question 7 (1 pt)
-
Use terminal autocompletion to print the contents of
hello_there.txt
, and put the contents in a markdown cell in your notebook.
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 /anvil/projects/tdm/data/flights/
. Type cd /anvil/
, and press tab. You should be presented with a small list of options — the folders in the anvil
directory. Type p
, then press tab, and it will complete the word for you. Type t
, then press tab. Finally, press tab, but this time, press tab repeatedly until you’ve selected data
. You can then continue to type and press tab as needed.
Below is an image of the absolute path of a file in Anvil. Use cat
and tab completion to print the contents of that file.
-
The contents of the file,
hello_there.txt
, in a markdown cell in your notebook.
Submitting your Work
Congratulations, you’ve finished Project 2! Make sure that all of the below files are included in your submission, and feel free to come to seminar, post on Piazza, or visit some office hours if you have any further questions.
-
firstname-lastname-project02.ipynb
.
You must double check your You will not receive full credit if your |
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. In addition, please review our submission guidelines before submitting your project. |
Here is the Zoom recording of the 4:30 PM discussion with students from 28 August 2023: