Simple one, it monitor regularly the Established connection to file: Continue reading “Monitor TCP Connection in bash regularly”
kodi Database find duplicates movies
list movies that having duplicate entries
find files more than specific size
find ./ -size +5G -exec sh -c ‘ls -h “{}”|egrep -i -q “*.(avi|AVI|mkv|MKV|mp4|MP4)$”‘ ‘;’ -print
External IP change notification in python
This post is mostly the equivalent of one of a previous post which initially was in bash.
Continue reading “External IP change notification in python”
Enable icmp reply (ping) in Powershell
Start Windows CMD window as Admin (Run as).
Then run this command:
Continue reading “Enable icmp reply (ping) in Powershell”
How to patch ESXi without an access to the VMware-ESXi-6.0.0-2494585 by command line.
– Connect to your ESXi with vSphere client and if necessary, enable SSH by going to configuration > security profile > properties > ssh and start the SSH service.
Remove OneDrive Icon from Windows 10 Explorer
Each single that I am pressing to Windows + E; Having the windows explorer window loaded – Always clicking by mistake to OneDrive.
Thankfully, there’s registry tweak that can quickly remove OneDrive from your File Explorer sidebar.
Continue reading “Remove OneDrive Icon from Windows 10 Explorer”
Send email to multiple recipients which contains URL from file
I have had the need to send mutiple email messages which contains for each one specific URL, this message had to be sent to multiple recipients.
Continue reading “Send email to multiple recipients which contains URL from file”
Error: Parsing primary.xml error: Start tag expected, ‘<' not found on CentOS 6.x
- export LD_LIBRARY_PATH=/usr/lib64:/usr/local/lib
- yum clean all
- yum update
From time to time, yum and getting such of error. these two line above is sorting it out.
Execute the same command on multiple Linux host in once
I found difficult to maintain updates over multiple hosts however, some tool exist to facilitate that time of maintenance steps.
Alternatively, some python script could also be used however I have decided to present that one for now.
Continue reading “Execute the same command on multiple Linux host in once”