Skip to content

Instantly share code, notes, and snippets.

View gauravk-io's full-sized avatar
🎯
focused

Gaurav gauravk-io

🎯
focused
View GitHub Profile
@gauravk-io
gauravk-io / linux.md
Created May 17, 2023 13:52 — forked from miranda-zhang/linux.md
Linux Command Cheat Sheet, Ubuntu, CentOS

Linux Command Cheatsheet

Linux Keyboard shortcuts

open terminal: Ctrl+Alt+T

Ctrl + C is used to kill a process with signal SIGINT , in other words it is a polite kill .

Ctrl + Z is used to suspend a process by sending it the signal SIGTSTP , which is like a sleep signal, that can be undone and the process can be resumed again.