Hacking101
  • Welcome
    • Roadmap
    • Linux 101
      • Getting Started
      • Linux File System
    • Networking 101
    • Python 101
    • Curiosity 101 (Searching)
  • Useful Tools
    • Gobuster
    • nmap
  • Linux
    • Linux
    • Useful Linux Commands
    • FTP
  • Windows
    • Windows
  • HackTheBox
    • Lame
    • Shocker
  • TryHackMe
    • Vulnversity
Powered by GitBook
On this page
  • Get Help
  • Terminal or Shell Format
  • Reading Files

Was this helpful?

Edit on GitLab
  1. Welcome
  2. Linux 101

Getting Started

Linux is fairly simple to get started with.

PreviousLinux 101NextLinux File System

Last updated 1 year ago

Was this helpful?

Get Help

Need info for any command ? Try below

man --> man command_name_here

info -> info command_name_here

explain-shell - - >

command_itself --> check by executing , -h or --help arguments can help.

Terminal or Shell Format

┌──(abhinav㉿ETHICALHACKX)-[~] --> username@hostname [current_path] which here is ~ ( user home dorectory )
└─$                            --> $ indicates non-root user
┌──(abhinav㉿ETHICALHACKX)-[~]
└─$ cd Downloads
                                                                                
┌──(abhinav㉿ETHICALHACKX)-[~/Downloads] --> current path ( changed in last command)
└─$
┌──(abhinav㉿ETHICALHACKX)-[~/Downloads]
└─$ sudo su   
┌──(root㉿ETHICALHACKX)-[/home/abhinav/Downloads]
└─#                        ---> When $ changes to # , means the user is root
  

Reading Files

more

less

cat

https://explainshell.com/