Lab 2 - Command Line Practice¶
After an admittedly stressful lab 1 in Excel, I thought it would be good to give you a nice treat with Lab 2.
This week, there are two tasks for you to do: continuing your machine set-up, and practicing the command-line through a game.
This lab must be completed individually.
Accept the lab¶
To accept this lab on GitHub Classroom, you must click this link.
Objectives¶
Practice with command-line interfaces
Create and navigate directories
Create, modify, rename and delete files
Understand Git and Git fundamentals
Marking and Evaluation (20 marks)¶
Step 1: Accept the lab assignment You can find the link to accept the lab on Canvas.
Step 2: Clone the repository on your local computer and navigate to that directory
As with Lab 1, you will need to clone the GitHub repository somewhere locally. The steps to do this are:
cd /path/to/where/you/want/labs
git clone https://github.com/data301-2020-winter1/lab2-yourUserName
Part 1: Setting up Python and Jupyter Lab (30% - 6 marks)¶
Below are the instructions for you to continue installing software on your system. We will need this for the first python lecture this week.
At the end, please include a screenshot of a Terminal window, running a Jupyter Lab session locally on your computer, with a Python 3 kernel to get full marks for this portion.
Add the screenshot to the repository (remember to fix the name and add your own commit message):
git add screenshot.png
git commit -m "Added Jupyter Lab screenshot"
git push
Part 2: Practicing with Command Line (70% - 14 marks)¶
Here is a guide to the first few steps of the activity.
Here is a guide to the first few steps of the activity.
Setting up for the game¶
Open a Terminal window.
Change the directory to where this file is:
cd /path/to/this/folder
.Type
ls
into the Terminal; you will see two things:README.md
and theentrance
directory.Once you go into the
entrance
directory (cd entrance
), the command line based game will begin!
Tip: When I say âgo into the cd <BLANK>
. In this game, a âroomâ is a âdirectoryâ.
Starting the game¶
Now that you have entered the dungeon
entrance
, you should typels
in the terminal to look around and see whatâs there.You will see there are two âthingsâ in this room, there is a
scroll
, and another room calledcellar
.Letâs read the scroll using
cat scroll
.
Tip: When I say âread the scrollâ, I mean output the contents of the scroll file into the Terminal using cat scroll
.
Great! The scroll told us that we can look and see whatâs in the room using
ls
and move in and out of rooms usingcd <directory>
. Letâs go into the cellar:cd cellar
.Once weâre in the
cellar
, letâs have a look around:ls
. You should see anarmoury
, ascroll
, and sometreasure
.Letâs read the scroll:
cat scroll
. It should tell you aboutls -F
. Here is some more information aboutls -F
:
Display a slash (`/â) immediately after each pathname that is a directory, an asterisk (â*â) after each that is executable, an AT sign (â@â) after each symbolic link.
That sounds useful, letâs do an
ls -F
in the cellar to see what each of the things are. Youâll notice that the armoury is another room, the scroll is just a file, and the treasure has a â*â at the end, so itâs an executable. Cool! We donât know what to do with the executable yet, but letâs trycat treasure
to see what happens.Mm. Didnât work - okay letâs move on and come back to this room later. Letâs go into the
armoury
now:cd armoury
and thenls -F
.We see another scroll (and a potion, a treasure, and another room)! Letâs read the scroll:
cat scroll
.Oooh, we have now learned how to collect
treasure
! Letâs do that in the armoury and follow the instructions to keep our treasure (using environment variables).
Tip: When I say âpick up the ./ <BLANK>
.
It tells us to go back and get the treasure from the cellar! Letâs go and do that now with
cd ..
, pick up the treasure from the cellar, and then come back to the armoury.The potion is also something we can âpick upâ, so letâs go ahead and do that. It asks us if you want to drink it: type âYâ for yes, and anything else for no (like ânâ). Choose an option and see what happens (follow on-screen instructions!)
Alright check if thereâs anything else to do this in room, if not, head to the
chamber
next. Start withls -F
and hopefully by now, you know the drill!Have fun! More dungeon rooms will open up as you complete certain tasks, kill certain monsters, and read specific scrolls and tomes. Have fun with it, this is your opportunity to practice your Terminal skills - it sure beats the way I learned Terminal commands (blindly typing in commands in a black box until I got it to do what I wanted!). There is no need to hit every room in the dungeon, but do make a concerted effort and youâll likely get most of the marks for this lab.
Tip: You can ignore a few of the more âadvancedâ entries of the Tome, including anything related to tmux
or gzip
. I say âpick up the ./ <BLANK>
.
What you need to submit for Part 2.¶
When youâre done exploring the dungeon there are several things I want you to do:
1. Commit everything to your repository and push to the cloud:¶
git add .
git commit -m "Finished playing with the dungeon"
git push
2. Run tree
, and save the output to a file:¶
Update: This has been made optional because itâs not trivial to install tree
on Windows. This Piazza post has some directions if youâre interested in installing it.
You may need to install tree (if you didnât already do it in the dungeon) with: conda install -c conda-forge tree
tree
tree > mydungeonmap.md
3. Commit the dungeon map to your repository¶
Run the following commands in your Terminal:
git add .
git commit -m "Added my dungeon map"
git push
4. Save the last 100 commands from your Terminal¶
We want to see some serious effort with the dungeon map, so we are asking for the last 100 commands you entered into the Terminal. Please open this file and do a quick check to make sure there is no sensitive information in this file (like passwords or private messages). If there is, you can simply edit file or remove that command.
Note: Just because weâre asking for the last 100 commands doesnât mean that we expect you to have 100 commands, you may have less and you may have more. Thatâs fine.
history 100 > dungeonHistory.md
5. Commit the dungeon history to your repository¶
Run the following commands in your Terminal:
git add .
git commit -m "Added my dungeon history"
git push
6. Submit the link to your GitHub.com repo to Canvas¶
Youâre done!
Attribution¶
The bashcrawl
game was adapted from @slackermedia
on GitLab.
FULL Credit for the game goes to Seth Kenlon.
The link to the game source code is here.