UsefulLinks
Computer Science
Operating Systems
Linux
Linux Command Line
1. Introduction to the Command Line
2. Navigating the Filesystem
3. Working with Files and Directories
4. Viewing and Editing Files
5. Permissions and Ownership
6. Process Management
7. Input/Output Redirection and Pipes
8. Searching and Text Processing
9. System Information and Administration
10. Networking
11. Archiving and Compression
12. Shell Environment and Customization
13. Introduction to Shell Scripting
6.
Process Management
6.1.
Understanding Processes
6.1.1.
Definition of a Process
6.1.2.
Process ID (PID)
6.1.3.
Parent and Child Processes
6.1.4.
Daemons and Background Processes
6.2.
Viewing Processes
6.2.1.
Process Status (ps)
6.2.1.1.
Common Options
6.2.1.2.
Filtering Processes
6.2.1.3.
Searching Processes
6.2.2.
Interactive Process Viewer (top)
6.2.2.1.
Understanding Columns
6.2.2.2.
Sorting Processes
6.2.2.3.
Filtering Processes
6.2.3.
Enhanced Process Viewer (htop)
6.2.3.1.
Features of htop
6.3.
Managing Processes
6.3.1.
Process Signals
6.3.1.1.
SIGTERM Signal
6.3.1.2.
SIGKILL Signal
6.3.1.3.
SIGINT Signal
6.3.2.
Kill Process by PID (kill)
6.3.3.
Kill Processes by Name (killall)
6.3.4.
Kill Processes by Attributes (pkill)
6.3.5.
Process Priority
6.3.5.1.
Nice Command
6.3.5.2.
Renice Command
6.4.
Job Control
6.4.1.
Foreground vs Background Processes
6.4.2.
Running Commands in Background
6.4.3.
List Background Jobs (jobs)
6.4.4.
Bring Job to Foreground (fg)
6.4.5.
Resume Job in Background (bg)
6.4.6.
Suspend Foreground Process
6.4.7.
Interrupt Foreground Process
6.4.8.
Disowning Jobs
Previous
5. Permissions and Ownership
Go to top
Next
7. Input/Output Redirection and Pipes