Manually update NanoKVM by replacing /kvmapp with the app directory from a release archive, then restarting the service.
Official instructions (GitHub):
Manually update NanoKVM by replacing /kvmapp with the app directory from a release archive, then restarting the service.
Official instructions (GitHub):
| # run this to determine which firmware the kernal is looking for | |
| modinfo iwlwifi | grep iwlwifi-cc | |
| # example output: | |
| # firmware: iwlwifi-cc-a0-50.ucode | |
| # go https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/ and download the firmware | |
| # copy file to /lib/firmware | |
| sudo cp ~/Download/iwlwifi-cc-a0-50.ucode /lib/firmware |
| 1- Step : open the sysctl.conf and add this line fs.file-max = 65536 | |
| vi /etc/sysctl.conf add end of line | |
| fs.file-max=500000 | |
| save and exit. | |
| 2. Step : vi /etc/security/limits.conf and add below the mentioned | |
| * soft nproc 500000 |
You can use ssacli (smart storage administrator command line interface) tool to manage any of supported HP Smart Array Controllers in your Proxmox host without need to reboot your server to access Smart Storage Administrator in BIOS. That means no host downtime when managing your storage.
CLI is not as convenient as GUI interface provided by BIOS or desktop utilities, but still allows you to fully manage your controller, physical disks and logical drives on the fly with no Proxmox host downtime.
ssacli replaces older hpssacli, but shares the same syntax and adds support for newer servers and controllers.
This gist is deprecated and will not be edited in the future. Consider visit ninedraft/python-udp repo. It will not be deleted, however.
| ############################################ | |
| # This is for CRC-8 Maxim/Dallas Algorithm | |
| # Improved with less variable and functions | |
| # Supports both Python3.x and Python2.x | |
| # Has append and check functions | |
| # When standalone, can read from either arguments or stdin | |
| # Writes to stdout cleaner | |
| # http://gist.github.com/eaydin | |
| ############################################ |
| #!/usr/bin/env python | |
| """ | |
| LICENSE http://www.apache.org/licenses/LICENSE-2.0 | |
| """ | |
| import argparse | |
| import datetime | |
| import sys | |
| import time | |
| import threading |