Skip to main content

Posts

Showing posts with the label TryHackMe: Learn Linux

TryHackMe: Learn Linux

[Task 1] Intro [Task 2] Methodology [Task 3] [Section 1: SSH] — Intro [Task 4] [Section 1: SSH] — Putty and ssh Download Putty here: https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html Or using linux apt install putty 2. Login using Putty username: shiba1 Enter username, ip and click Open Click Accept Enter password “shiba1” 3. Login using command line in linux or windows ssh <username>@<ip> [Task 5] [Section 2: Running Commands] — Basic Command Execution echo hello [Task 6] [Section 2: Running Commands] — Manual Pages and Flags How would you output hello without a newline man echo echo -n hello [Task 7] [Section 3: Basic File Operations] — ls What flag outputs all entries ls -a 2. What flag outputs things in a “long list” format ls -l [Task 8] [Section 3: Basic File Operations] — cat What flag numbers all output lines? cat --help [T a sk 9] [Section 3: Basic File Operations] — touch touch b.txt ls [Task 10] [Section 3: Basic File Operations] — Running A Binary ...