Base URL:
http://169.254.169.254/latest/
- meta-data/
ami-id
instance-id
Base URL:
http://169.254.169.254/latest/
ami-id
instance-id
If you need to manually control (silence) the fans of a HPE Proliant Gen8/9 servers with iLO 4 follow these steps:
sudo modprobe -r hpilo
.sh ./CP027911.scexe --unpack=ilo_250
cd ilo_250
Latest ams do not work as expected with old Gen8 (iLO 4) servers.
Install the one from focal and install outdated dependencies:
curl https://downloads.linux.hpe.com/SDR/hpePublicKey2048_key1.pub | gpg --dearmor -o /etc/apt/trusted.gpg.d/hpe-key.gpg
echo "deb https://downloads.linux.hpe.com/SDR/repo/mcp focal/current non-free" > /etc/apt/sources.list.d/hpe-mcp.list
wget http://security.ubuntu.com/ubuntu/pool/main/j/json-c/libjson-c4_0.13.1+dfsg-7_amd64.deb
# Work in progress for finding the ultimate keyboard repeat rate for extrem speed. | |
xset r rate 150 20 |
Install kdenlive, movit and rtaudio:
s pacman -S kdenlive movit rtaudio
Manually compile mlt shared libs (this should now detect and link against movit and rtaudio):
yay -S mlt-git
Install starship, kitty and nerd font
yay -S starship kitty ttf-firacode-nerd
Set starship as default shell
echo 'eval "$(starship init bash)"' >> ~/.bashrc
Generate a certificate signing request (this generates the privkey.pem and includes the public key in the csr):
openssl req -new -nodes > req.csr
Then convert the public key to a public certificate and sign it with its own private key.
openssl x509 -req -in req.csr -signkey privkey.pem -out cert.pem
If you want to use multiple aws accounts over one sso login, the local setup looks like this:
Configure sso sessions using the --profile
flag to generate a profile associated with the session:
aws configure sso --profile MyProfile-Prod
Create a session and give it a locally unique name (e.g. 'prod').
#!/bin/bash | |
# Directory containing your GIF files | |
GIF_DIR="./" | |
# Target directory for the converted video files | |
TARGET_DIR="./gifs_web/" | |
# Create the target directory if it doesn't exist | |
mkdir -p "$TARGET_DIR" |
#!/bin/bash | |
# Directory containing your GIF files | |
GIF_DIR="./" | |
# Target directory for the converted video files | |
TARGET_DIR="./gifs/" | |
# Create the target directory if it doesn't exist | |
mkdir -p "$TARGET_DIR" |