How To Quickly Find Out List Of Modified Files Today In Linux Mint / Ubuntu

find ~ -type f -mtime 0; finding list of modified files today in linux terminal
Here’s how to quickly find out list of modified files today in Linux Mint / Ubuntu: 1. Issue the following command at the terminal – find ~ -type f -mtime 0 [In above screenshot, we found that the two files created by us on the desktop appeared in the list]  

How To Create TCP Dump In Linux Mint / Ubuntu

tcpdump output in linux mint / ubuntu
Here’s how to create TCP Dump in Linux Mint / Ubuntu: 1. Issue the following command at the terminal – sudo tcpdump -i <network interface name> > tcpdump.txt For example, to create TCP Dump for network interface eth0, issue the folllowing command at the terminal – sudo tcpdump -i eth0 > tcpdump.txt 2. You can press ‘Ctrl’ + ‘C’ after the duration...

How To Quickly Find CPU & Memory Information At Linux Terminal In Linux Mint / Ubuntu

cat /proc/cpuinfo
Here’s how to quickly find CPU and memory information at Linux terminal in Linux Mint / Ubuntu: 1. Issue the following command at the terminal to find CPU information – cat /proc/cpuinfo 2. Issue the following command at the terminal to find memory information – cat /proc/meminfo