There are stopped jobs (on bash exit)

    A stopped job is one that has been temporarily put into the background and is no longer running, but is still using resources such (i.e. system memory). Because that job is not attached to the current terminal, it cannot produce output and is not...

Linux search and find commands

How to search top 10 biggest Files and Directories On a Linux ? du -a / | sort -n -r | head -n 10 sample output: 13114096 / 10202596 /opt 10202588 /opt/hybris 7103152 /opt/hybris/data 6512664 /opt/hybris/data/acceleratorservices 6498916...

How to take java threaddump?

Get the PID of Java ps -el | grep java top | grep java jstack  -F <your-pid> >dump.log sudo jstack -F `pidof java` > /tmp/`hostname`_threaddump_`date +”%Y%m%d_%H%M”`.txt     Result: hybris@aws-hybris5prd-ecom-app02:~$ jstack -F 31987 >...