Week Report 4
- The Linux File System Presentation
- Ls Command Cheat Sheet
- Absolute Path and Relative Path Cheat sheet
- Video here
Complete the following tasks
1. Complete Week Report 4. Your report must contain the following:
- Create a file inside the
weekReports
directory that is located inside the cis106 directory. Name this file,wr4.md
- You will complete the week report inside the
wr4.md
file. Your report must contain:- Screenshots from each practice from the presentation The Linux File system:
- Take a screenshot of your terminal showing all the commands, or most of the commands, you used to complete each practice.
- Place all your screenshots in your week report 4 file.
- Make sure to label each practice using heading 2 or heading 3 markdown formatting.
- Screenshots from each practice from the presentation The Linux File system:
2. Complete Notes 4
All the information can be found here:
- Create a file in the
clasNotes
directory namednotes2.md
- The file must be properly formatted using bold, code formatting and headings
- The file must contain the following:
- Each of the commands used for navigating the file system
- for each command include: Description, usage/formula, and examples (3 or more if available)
- Each of the commands used for navigating the file system
- Definitions of the following terms:
- File system
- pathname
- Absolute path
- Relative path
- The difference between your home directory and the home directory
- parent directory
- child directory or subdirectory
- Bash special characters
- environment variables
- user defined variables
- Why do we need use $ with variables in bash shell scripting?
3. Complete lab 4 The linux File System
- Please do this after you complete the Week report and class notes! Trust me, it is better this way.
- Instructions here
4. Complete discussion boards
- Work on your next discussion board
Special Note: Git Commands Reminder
git clone repository/url/here
: is the command to clone a repository where cloning means downloading a repository to your computergit pull
: to pull/synchronize your repository from github to your local machine. Always run this command BEFORE you start working VS Codegit add .
: to track all the changes made to your file.git commit -m "label for your changes here"
: this command will label all the changes you added with theadd
commandgit push
: will send all your changes to your github repository
Always run the commands in this order:
pull
=>add
=>commit
=>push
Never use the github website to make changes to your repository unless you know what you are doing and can remember to pull the changes before working on your local repository!