• Mastering Nutanix Life Cycle Management (LCM): Technical Insights and Implementation

    Mastering Nutanix Life Cycle Management (LCM): Technical Insights and Implementation Introduction to Nutanix Life Cycle Management (LCM) Nutanix Life Cycle Management (LCM) is an advanced automated framework designed to simplify the updating and upgrading of Nutanix infrastructure components. By automating the software and firmware updates across the entire Nutanix stack,...


  • Comprehensive Guide to Nutanix Guest Tools: Features, Benefits, and Deployment

    Comprehensive Guide to Nutanix Guest Tools: Features, Benefits, and Deployment Introduction to Nutanix Guest Tools (NGT) Nutanix Guest Tools (NGT) is an essential suite of software utilities designed to enhance the management and functionality of virtual machines (VMs) on the Nutanix Acropolis Hypervisor (AHV). NGT offers features such as file-level...


  • Cheatips for Sysadmins maintenances

    List of usefull scripts as a sysadmin boy Monitoring An easy way to monitor server connectivity during large maintenance operations. "[MIGRATION] Alive Network Configuration Check" ForEach ($targetSrv in (Get-Content .\serverlist.txt)) { if (Test-Connection -ComputerName $targetSrv -Count 1 -Quiet) { "[+] $targetSrv - Conn OK" } else { "[-] $targetSrv -...


  • Setup a Flask environment

    How to setup a proper Flask environment Flask is a microframework for Python based on Werkzeug, Jinja 2 and good intentions. And before you ask: It’s BSD licensed! A proper Flask environment need Virtualenv and Virtualenvwrapper. Virtualenv is a tool to create isolated Python environments. You can install it directly...


  • Auto generate requirements.txt file

    What is a requirements.txt file ? Usually, a requirement file is just a list of pip install arguments. You can also specify a match version for each. Theses files can be easy install with the pip app pip install -r requirements.txt. A simple requirement file looks like: ovh==0.4.5 requests==2.11.1 tornado==4.4.1...