Use tmux to manage sessions.
Detach with Ctrl+B, D, reattach with tmux attach.
This keeps processes running even after SSH disconnections.
Try tmux new-session -s mysession for named sessions.
Use tmux ls to list all sessions and tmux kill-session -t mysession to end them cleanly.
Use tmux to manage sessions.
Detach with Ctrl+B, D, reattach with tmux attach.
This keeps processes running even after SSH disconnections.
Try tmux new-session -s mysession for named sessions.
Use tmux ls to list all sessions and tmux kill-session -t mysession to end them cleanly.
Ever wonder what those weird letters and dashes mean when you run ls -l in your terminal?
drwxr-xr-x is a permission string. What's it mean?:
d = directory ( - for a file)
rwx = owner perms (read, write, execute)
r-x = group perms (read, execute)
r-x = other perms (read, execute)
Ever wonder what those weird letters and dashes mean when you run ls -l in your terminal?
drwxr-xr-x is a permission string. What's it mean?:
d = directory ( - for a file)
rwx = owner perms (read, write, execute)
r-x = group perms (read, execute)
r-x = other perms (read, execute)
Now how do we create new directories, copy stuff, move stuff and remove stuff we dont want?
Like this!:
1: "mkdir" makes a new directory
2: "rm" deletes files (be careful with this one!)
3: "cp" copies files
4: "mv" moves or renames files
Now how do we create new directories, copy stuff, move stuff and remove stuff we dont want?
Like this!:
1: "mkdir" makes a new directory
2: "rm" deletes files (be careful with this one!)
3: "cp" copies files
4: "mv" moves or renames files
Starting a new series on mastering Linux CLI! From Air Force Cyber work to Linux admin, I'll share my experiences & tips to make Linux fun & accessible. Follow along for CLI basics, file management & more! What do you want to see in future posts? #Linux #CLI
Navigating the File System:
1: cd ~" takes you to your home directory
2: "cd .." moves you up one directory level
3: "pwd" shows you where you are
4: "ls -l" lists files and directories in detail
Navigating the File System:
1: cd ~" takes you to your home directory
2: "cd .." moves you up one directory level
3: "pwd" shows you where you are
4: "ls -l" lists files and directories in detail