Managing_Linux_Processes

What is Linux Process? Important commands for Linux Process

In an operating system, to complete a certain operation or task, the processes are required, Process is nothing but a running task or a system of users tasks. When you visit any website, lots of processes start running on the server, even though if you do not visit the website still there are lots of […]

See More

How to Zip and Unzip files in UNIX

Here is how to Zip and Unzip files in UNIX unzip myFile.zip – This command will uncompress compressed files with the .zip extension. tar xvf myFile.tar – This command will uncompress compressed files with the .tar extension. gunzip myFile.gz  – This command will uncompress compressed files with the .gz extension.

See More