SAGARFIVE

Category: Linux Basics

Linux – filters

Linux Filter commands accept input data from stdin (standard input) and produce output on stdout (standard output). It transforms plain-text data into a meaningful way

Read More »

Linux – processes kill

To kill a process use command, extend with different signal numbers, command : kill -SIGNAL PID Process signal names and numbers: process kill methods mentioned

Read More »

Linux – processes

To view currently running processes on the system with the ps command. It mostly return PID(Process ID), TTY(type of terminal ), TIME(process cpu use time),CMD(command

Read More »

Linux – man

The “man” is a short term for a manual page. In unix-like operating systems such as linux, man is an interface to view the system’s

Read More »

Linux – Archiving

File archiving is used when one or more files need to be transmitted or stored as efficiently as possible. Archiving: Combines multiple files into one,

Read More »

Linux – VI Editor

VI=VIsual Editor , it’s text editor in UNIX/Linux environment. It has two modes, (i) Command Mode  : based on commands you can edit text ,

Read More »