Found 2065 Articles for Operating System

Learn How to use Dstat tool to Monitor Linux Server Performance?

Samual Sam
Updated on 22-Jan-2020 07:05:35

360 Views

Dstats is a versatile resource statistic tool. This instrument combines the capability of iostat, vmstat, netstat, and ifstat. Dstats permits us to watch the server assets in real-time. While you need to collect this know-how in actual-time, Dstat will adjust /suit your requirements. This article explains about how to use Dstat tool to Monitor Linux Server Performance.FeaturesIt combines vmstat, iostat, ifstat, netstat know-how and extraIt shows stats in exactly the equal timeframeIt has the capability to enable/order counters as they make most sense for the period of evaluation/troubleshootingIt is a modular designThis is python program so comfortably extendable for the ... Read More

How to Install Lynis 2.2.0 – Security Auditing Tool for Linux

Sharon Christine
Updated on 22-Jan-2020 06:37:33

154 Views

Lynis is a security audit tool for Unix and Linux based systems. It assists auditor in scanning the system and its security defenses helps in improving system hardening. This software will determine system information which is specific to OS type, installed packages, system and network configuration. Additionally, it will check the system for configuration errors and security issues. This article explains about how to install lynis on Ubuntu.FeaturesIt is an open sourceIt supported shell scriptNo dependenciesEasy to understandDynamic OS detectionIt supported 300+ built-in testsIt supports for custom testsPlugin supportIt supports compliance checksExtensive software supportInstalling of LynisLynis doesn’t required any installation, ... Read More

How to Find the List of Daemon Processes and Zombie Processes in Linux

karthikeya Boyini
Updated on 21-Jan-2020 11:08:44

5K+ Views

This article will guide you to understand the Zombie process and Daemons, and also help us to find the process which is running in the background.What is Zombie Process?When a process ends the execution, then it will have an exit status to report to its master process. Because of that little bit of information, the process will remain in the OS process table as a zombie process, which indicates that it is not to be scheduled for future, but this process cannot be completely removed or the process ID will not be used until the exit has been determined and ... Read More

How to Add Cron Jobs to A Specific User in a Linux System

karthikeya Boyini
Updated on 21-Jan-2020 07:29:21

3K+ Views

This article we will teach you to schedule a cron job to be executed at a specific time in a day.General Syntax of a Cron JobMIN    HOUR    Day of month    Month    Day of Week    Command 0-59   0-23       1-31          1-12       0-6       linux command or scriptTo see the list of cron jobs which exists on the machine, run the below command# crontab -u test1 -l no crontab for test1To Add the New Cron Job to Test1 User, run the below Command #crontab -u test1 ... Read More

Difference between green and native thread

Himanshu shriv
Updated on 21-Jan-2020 07:34:28

1K+ Views

Green threads are created and scheduled by Virtual machine without using OS libraries. “Green” was the project code name of the thread project which was developed by the Java, therefore the name of the thread is “Green”. It can not make use of multiprocessor.On the other hand, Native threads are created and scheduled by Kernel of operating system. It can swap between threads from running thread to non-running thread. All modern OS supports native thread. Sr. No.KeyGreen ThreadNative Thread1Basic Green threads are created and scheduled by Virtual machine without using OS librariesNative threads are created and scheduled by Kernel of operating system2Platform Dependent It ... Read More

How to Protect Files and Directories from Deleting in Linux

karthikeya Boyini
Updated on 21-Jan-2020 05:50:28

1K+ Views

Are you working as a Linux Admin? Do you generally defend script documents or any important files? You might be aware that, Chattr (change Attribute) is a command line Linux utility that is used to set/unset exact attributes to a file in Linux process to comfortable unintended deletion or change of major files and folders, although you’re logged in as a root user.This article helps you to look after your records or folders that may support in disallowing an unauthorized user to delete your touchy contents.Protecting FileIn the below example abc.txt is the file nameProtecting a fileTo protect file, use ... Read More

How to install Everpad Client in Ubuntu

Sharon Christine
Updated on 20-Jan-2020 13:02:43

186 Views

Everpad is a fantastic tool for work, but it is also a great tool outside of the workspace. It is an open-source client for the note taking. Although there isn’t an official Everpad client available for Linux, by installing Wine, you can use the exact Everpad client. This article describes “how to install Everpad client in Ubuntu”It supports Unity Lens which allows you to search through your Everpad, then click to open them for additional editing. From the application, you can create and manage all of your Everpad from one single place.Installing EverpadTo install Everpad, we require Everpad ppa  from ... Read More

How to Install Bower on Ubuntu

Sharon Christine
Updated on 20-Jan-2020 12:40:22

957 Views

Bower is a bundled supervisor for the web and offers a conventional technique for the drawbacks in entrance-finish package management. It basically maintains and monitors all packages and examines new updates. Bower also makes use of a take place file called bower.Json to keep track of applications. This article explains about -“How to install bower on Ubuntu”.To install bower, we require pre-installed Node.js and NPM. To verify the node.js version, use the following command-$ node -vThe sample output should be like this-v6.9.2To verify the NPM version, use the following command$ npm -vThe sample output should be like this-3.10.9If you wants ... Read More

How to Use ‘cat’ and ‘tac’ Commands with Examples in Linux

karthikeya Boyini
Updated on 20-Jan-2020 12:22:24

1K+ Views

Cat command is a well known Unix utility that reads files sequentially. Writing them to conventional output. The name is derived from its function for concatenating and listing the documents. Tac (that is “cat” backwards) concatenates every record to traditional output much like the cat command. However in opposite: line-by means of-line, printing the last line first. This article explains about “How to use ‘cat’ and ‘tac’ commands with examples”.The basic example of cat command should be like this –$ cat text.txtThe above command is to read files and display them to stdout, meaning to display the content of files ... Read More

How to Run a Cron Job Every Day on a Linux System

karthikeya Boyini
Updated on 20-Jan-2020 10:46:57

5K+ Views

This article will teach you on, how to schedule a corn job for executing a script or command or shell script at a particular time every day. As a system administrator, we know the importance of running the routine maintenance jobs in the background automatically. The Linux corn utility will help us to maintain these jobs to run in the background.General Syntax of a Cron JobMIN HOUR Day of month Month Day of Week Command 0-59 0-23 1-31 1-12 0-6 Any Linux command or scriptTo see a list of cron jobs which exists on the machine, run the below command ... Read More

Advertisements