PCs have SMBIOS data containing small amount of identifying information. One piece of information in this SMBIOS data is the universally unique identifier. Some PC and motherboard manufacturers fail to set this, often leaving the UUID set to 03000200-0400-0500-0006-000700080009
.
If your system uses an AMI firmware (sometimes called AMIBIOS), you may be able to use AMI utilities to reset the UUID. Obtain AMIDEEFIx86.efi
and an EFI shell executable, such as from inside m1ujt73usa.zip
for the Lenovo ThinkStation P330 Tiny download center.
Once you have those two files, create USB drive with the FAT32 filesystem and the following structure:
\
\AMIDEEFIx86.efi
\efi
blueprint: | |
name: Add Hildebrand CAD Entities | |
description: Create devices and entities using MQTT discovery | |
domain: script | |
source_url: https://gist.github.com/si458/2a9ec8d0e2b07205e4859886cc5222b0 | |
input: | |
input_cad_mac: | |
name: MAC Address | |
description: "MAC address of CAD (without :s)" | |
default: "" |
#!/bin/sh | |
# | |
# YOU CAN GET VERSION AND ID FROM https://account.blesta.com/client/plugin/download_manager/client_main/ BY HOVERING OVER THE FILE | |
# SET VALUES BELOW AND RUN SCRIPT AS SUDO | |
VERSION=${1:-"5.5.1"} | |
ID=${2:-"214"} | |
# | |
# DONT CHANGE ANYTHING BELOW | |
# | |
mkdir -p /tmp/blesta-backup |
#!/bin/sh | |
# install tools | |
apt update -y && apt install nano wget curl libguestfs-tools -y | |
# remove old image | |
rm -rfv current/noble-server-cloudimg-amd64.img | |
# remove old template container - WILL DESTROY COMPLETELY | |
qm destroy 9000 --destroy-unreferenced-disks 1 --purge 1 | |
# download new image | |
wget https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img | |
# add agent to image |
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.
if (process.argv[2] == undefined) process.exit(0); | |
if (process.argv[2] == "") process.exit(0); | |
const { pkg_fetch_version, node_version, pkg_cache_path, icon, version, description, company, name, copyright, file } = require(`./${process.argv[2]}.json`); | |
const ResEdit = require('resedit'); | |
const path = require("path"); | |
const fs = require('fs'); | |
const https = require('https'); | |
function download(url, dest) { | |
return new Promise((resolve, reject) => { | |
fs.access(dest, fs.constants.F_OK, (err) => { |
#!/bin/bash | |
echo Starting ... | |
echo Setting Variables ... | |
MARIADB=10.11 | |
NODEJS=22 | |
PHPMYADMIN=5.2.1 | |
ADMINER=4.8.1 | |
PHP=8.3 |
#!/bin/bash | |
# Copyright 2020 The OpenEBS Authors. All rights reserved. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software |
#!/bin/bash | |
echo Starting ... | |
echo Cleaning apt-get ... | |
apt-get clean all -y | |
echo Updating apt-get ... | |
apt-get update |