- Lab
- A Cloud Guru
Using Directories and Listing Files
In this hands-on lab, we will practice moving through directories and listing files. Becoming comfortable changing directories, and listing files is a necessary step in moving through a Linux file system.
Path Info
Table of Contents
-
Challenge
Determine Which File Is the Oldest
- To list the directory and sort by date, we use
-l
for "long listing",-A
for "almost all", and-t
for "sort by time".
ls -lAt ~/Practice/Test/var/log/
- To list the directory and sort by date, we use
-
Challenge
Determine Which File Is the Largest
- To list the directory and sort by file size, we use
-l
("long listing") and-S
("sort by file size").
ls -lS ~/Practice/Test/var/log/
- To list the directory and sort by file size, we use
-
Challenge
Determine When the File `~/Practice/Test/sos_commands/networking/netstat_-W_-neopa` Was Last Modified
- We use a simple
-l
for "long listing" to view the last modified time and date.
ls -l ~/Practice/Test/sos_commands/networking/netstat_-W_-neopa
- We use a simple
-
Challenge
Determine When the File `~/Practice/Test/sos_commands/networking/netstat_-W_-neopa` Was Last Accessed
- To view access times, we use
-l ("long listing") and
-u` (access time).
ls -lu ~/Practice/Test/sos_commands/networking/netstat_-W_-neopa
- To view access times, we use
What's a lab?
Hands-on Labs are real environments created by industry experts to help you learn. These environments help you gain knowledge and experience, practice without compromising your system, test without risk, destroy without fear, and let you learn from your mistakes. Hands-on Labs: practice your skills before delivering in the real world.
Provided environment for hands-on practice
We will provide the credentials and environment necessary for you to practice right within your browser.
Guided walkthrough
Follow along with the author’s guided walkthrough and build something new in your provided environment!
Did you know?
On average, you retain 75% more of your learning if you get time for practice.