Simple one, it monitor regularly the Established connection to file: Continue reading “Monitor TCP Connection in bash regularly”
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.
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”
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”
Allow Ping ICMP in Powershell Windows 2012
Continue reading “Allow Ping ICMP in Powershell Windows 2012”
PrestaShop on Centos 6.x
As once the centos server has been installed. (Server minimum).
the following components are needed:
- Apache httpd server
- PHP
- MySQL
Let start:
Continue reading “PrestaShop on Centos 6.x”
Set time zone on Raspberry pi
Run this command which should work in most of distro.
Select the correct Zone that you wish to apply:
Example (London):
cp /usr/share/zoneinfo/Europe/London /etc/localtime
How to re-enable the systray (indicator panel) on Ubuntu 14.04
Installation in the terminal:
sudo apt-add-repository ppa:fixnix/indicator-systemtray-unity sudo apt-get update sudo apt-get install indicator-systemtray-unity
Once installed, you can enable it by this command:
gsettings list-recursively net.launchpad.indicator.systemtray
If you wish to remove it, run this command:
sudo apt-get --purge remove indicator-systemtray-unity
Sensor CPU check in bash
This script is checking the CPU Temp sensor; If one reach the threshold then a notification or shutdown (if needed) is done.
A few variables required to be set; then you are done