curl -L -o /sdcard/Download/ping_voip_pops.sh https://gist.githubusercontent.com/TheBoroer/38dfec8d6751f7361d5126ebfd0d531d/raw/e0f14d8b513de3e119a3e7037292ba412962d240/ping_voip_pops.sh
chmod +x /sdcard/Download/ping_voip_pops.sh
bash /sdcard/Download/ping_voip_pops.sh
vcert.sh was copied from: https://web.vmware-labs.com/scripts/vcert
The following instructions were copied from: https://virtham.us/posts/f/vcert
I got a copy of this program from VMware through an SR when they helped a customer of mine. It is called vCert. This little program is super simple to use and works pretty great. It does everything and anything to do with Certificates on your vCenters. Unfortunately, VMware has not made this public yet. I wish they would.
| CREATE database database_name_here; | |
| CREATE user username_here with encrypted password 'password_here'; | |
| GRANT ALL privileges on database database_name_here to username_here; |
UPDATE: doesn't seem like it's possible... truenas/sg_ses doesn't see the enclosure at all when the card is in IT mode. :(
I installed it via the deb file so that I don't have to mess with restricted apt permissions truenas comes with.
To download: wget http://ftp.de.debian.org/debian/pool/main/s/sg3-utils/sg3-utils_1.45-1_amd64.deb
To install: dpkg -i sg3-utils_1.45-1_amd64.deb
This started happening with docker v20.10 on ubuntu 22.04.
Specifically I had errors like these pop up when trying to run the rancher/agent (for rancher/server v1.6.30):
time="2021-06-29T09:13:28Z" level=fatal msg="Failed to find container id:\n0::/\n"
Seems to be caused by cgroups v2
To make it work again run: echo 'GRUB_CMDLINE_LINUX=systemd.unified_cgroup_hierarchy=false' > /etc/default/grub.d/cgroup.cfg
| # Update existing sparse files inplace (edit file instead of creating a new file). | |
| rsync -v -z -r --existing --inplace --progress -e ssh /source/path user@host:/destination/path/ | |
| # Then sync new sparse files (ignoring existing files we previously updated) | |
| rsync -v -z -r --ignore-existing --sparse --progress -e ssh /source/path user@host:/destination/path/ |
WARNING: This is unsupported and has potential to mess your system up. Proceed at your own risk.
Initial instructions were for 22.02.1 but also works for later versions with some additional steps. There's notes for each upgrade I've done at the end of the gist.
- there's a bug where it doesnt show fusionio disks at all under
Storage > Disks. So I had to downgrade to 22.02.1 and it works fine.
| # WORK IN PROGRESS | |
| brew update | |
| # Install NVM | |
| wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash | |
| # To setup auto 'nvm use' follow instructions for zsh or bash here: | |
| # https://github.com/nvm-sh/nvm#deeper-shell-integration | |
| # Install yarn | |
| npm install --global yarn |
| # Update your OS packages: | |
| sudo apt-get update | |
| sudo apt-get upgrade -y | |
| # Prevent cloudconfig from preserving the original hostname and reset the hostname: | |
| sudo sed -i 's/preserve_hostname: false/preserve_hostname: true/g' /etc/cloud/cloud.cfg | |
| sudo truncate -s0 /etc/hostname | |
| sudo hostnamectl set-hostname localhost | |
| # Remove the current network configuration: |