Thanks to antville.org |
Sunday, 28. May 2017
find dead processes
shantanuo
07:39h
The 8th column of ps aux command will list the status of the process. ps aux | awk '{if ($8 ~ "D") print $0}' Here is a list of the various process statuses and what they mean: D – Uninterruptible sleep (usually a critical system process, a process that cannot be killed without rebooting) ... Comment |
Online for 5719 days
Last modified: 1/10/18 10:47 AM Status
Youre not logged in ... Login
Menu
Search
Calendar
Recent updates
stack bookmarklet This bookmarklet will
help to quickly access stack pages linking to current page...
by shantanuo (1/10/18 10:47 AM)
Manage S3 like rsync ####
create bucket aws s3 mb s3://johntest123/ #### rsync all files...
by shantanuo (12/22/17 12:04 PM)
apache docker container issues If
apache docker container does not start then make these changes......
by shantanuo (11/10/17 3:00 PM)
Install aws client on centos
If pip is not installed, then the following command will...
by shantanuo (10/26/17 9:51 AM)
Managing Amazon keys Use this
command to convert private key to public key. ssh-keygen -y...
by shantanuo (10/9/17 7:04 AM)
percona utility We can re-create
mysql users using the percona utility. wget percona.com/get/pt-show-grants chmod 777...
by shantanuo (9/6/17 8:22 AM)
mail merge separate file per
record Microsoft Word has an excellent feature called Mail-Merge. If...
by shantanuo (7/6/17 12:09 PM)
find dead processes The 8th
column of ps aux command will list the status of...
by shantanuo (5/28/17 7:39 AM)
Amazon Web Services Here are
some of the important Amazon products to use. cloudTrail...
by shantanuo (5/10/17 11:35 AM)
Self signed security certificate http://www.thegeekstuff.com/2009/07/linux-apache-mod-ssl-generate-key-csr-crt-file/
openssl genrsa -out 34.195.94.88.key 1024 openssl req -new -key 34.195.94.88.key...
by shantanuo (1/16/17 8:02 AM)
docker and aws Before starting
docker daemon, add the aws credentials. vi /etc/init/docker.override env AWS_ACCESS_KEY_ID=...
by shantanuo (11/23/16 3:01 PM)
Turn off Windows Updates in
Windows 10 There is no option to turn off Windows...
by shantanuo (10/30/16 2:43 PM)
RSS extension for chrome RSS
Subscription Extension (by Google) is a must have chrome extension...
by shantanuo (7/9/16 7:28 AM)
Free Software Download http://onlinesoftzone.com/dc-plus-plus-file-sharing-software-free-download.php
by Online Softzone (5/23/16 3:19 PM)
use putty for presentation Config
- Change settings... - Window - Colours - Use system...
by shantanuo (5/23/16 1:26 PM)
docker command examples # options
for running docker docker run -d --name abcd2 -p 23:23...
by shantanuo (5/21/16 11:04 AM)
start with docker # create
a docker file vi dockerfile COPY php.ini /usr/local/etc/php/ FROM php:5.6-apache...
by shantanuo (5/21/16 8:10 AM)
Start 2 containers at once
Here is how you can start neo4j as well as...
by shantanuo (5/21/16 7:29 AM)
linguistics using Python These are
the 4 libraries apart from standard library nltk are useful...
by shantanuo (2/9/16 4:46 PM)
Aurora Amazon rates The cost
of Aurora hosting per hour. db.r3.large $0.290 (0.24 mysql) db.r3.xlarge...
by shantanuo (1/26/16 3:06 PM)
connect to AWS It is
possible to use password to connect to AWS 1) change...
by shantanuo (1/25/16 11:17 AM)
Install percona extra backup tool
innobackupex Steps to install innobackupex on Ubuntu: $ apt-key adv...
by shantanuo (9/28/15 8:24 AM)
Backup mysql data using innobackup
BACKUP innobackupex --user=USERNAME --password=PASSWORD --no-timestamp /data/backups/new_backup
by shantanuo (9/28/15 8:09 AM)
Tuning MySQL Getting the shell
script: wget https://launchpadlibrarian.net/78745738/tuning-primer.sh Running: sh tuning-primer.sh
by shantanuo (9/4/15 4:34 PM)
convert a rpm to deb
Here are simple steps to convert a rpm package to...
by shantanuo (9/1/15 3:28 PM)
|