Intermediate Linux Course | TryHackMe Linux Strength Training
The post provides an in-depth walkthrough of a TryHackMe room focused on Linux Strength Training, targeting beginner to intermediate users.
Introduction
The room focuses on improving Linux command-line skills, specifically:
Target Audience: Users familiar with Linux Fundamentals who want to transition to intermediate concepts.
Tasks and Key Concepts
1. File Searching Using thenbsp;findnbsp;Command
find /home/dobson -type f -name "readme_if_stuck.txt"
Search for files modified on a specific date:
find /path -type f -newermt "2016-09-11" ! -newermt "2016-09-13"
Use quotes for file names with spaces.
Escape spaces in directories using backslashes (\).
2. Reading and Searching File Content
less filename
/keyword
3. Moving and Renaming Files
mv /source/* /destination/
Renaming Files or Folders:
mv old_name new_name
Handling special characters (e.g., names starting with -):
mv -- -old_name new_name
4. Transferring Files Usingnbsp;scp
scp /path/to/file username@ip_address:/destination_path
Examples and Scenarios
grep -irl "keyword" /home/dobson/chat_logs/
Working with modified files:
find /home/workflows -type f -newermt "2016-09-11" ! -newermt "2016-09-13"
General Takeaways
TryHackMe Linux Strength Training | Room Answers
Room answers can be found here
Video Walkthrough.