Monday, February 12, 2018

Monitor outgoing port traffic on Linux

Following command can be used:

netstat -nputw | grep -v "127.0.0.1"

Monday, February 5, 2018

Get Linux and kernel versions

1. Get Linux version:

cat /etc/*release

2. Get kernel version:

uname -r