Install required packages for compile:
dnf install -y wget telnet \
automake gcc make diffutils \
tcl-devel openssl-devel
This cheatsheet assumes the user is knowledgeable about bare installations of virtual private servers on cloud providers and is looking for quick but comprehensive instructions.
Some trivial commands might be missed or skipped.
However, this document can also work as quick tutorial for newcomers to the RHEL eco-system.
| import transformers | |
| import torch | |
| model_id = "meta-llama/Meta-Llama-3.1-70B" | |
| # Transformer input sequences | |
| inputs = [ | |
| "Hello bot! How are you doing today?", | |
| #"What is the date today, and how is the weather in New York?", | |
| #"What is the answer to the ultimate question of life, the universe, and everything?" |
| set sv_hostname "BewareSpace Q3 Arena (CTF)" | |
| set sv_maxclients 12 | |
| set g_motd "mess with the best, die like the rest." | |
| set g_forcerespawn 10 | |
| set g_gametype 4 | |
| set bot_minplayers 8 | |
| set g_spskill 3 | |
| set timelimit 15 | |
| set m1 "capturelimit 8; map q3ctf1 ; set nextmap vstr m2" |
This cheatsheet assumes the user is knowledgeable about bare installations of virtual private servers on cloud providers and is looking for quick but comprehensive instructions.
Some trivial commands might be missed or skipped.
However, this document can also work as quick tutorial for newcomers to the RHEL eco-system.
Also, I would like to promote Rocky Linux as a solid alternative for enterprise systems. Machines with Rocky Linux are provided by DigitalOcean a great and super stable cloud provider I've been using for years. All the following servers/services can be installed and run stable on a 1CPU/2GB/50GB, 2CPU/2GB/50GB or 2CPU/4GB/50GB droplets (choose by your load).
| #!/bin/sh | |
| set -e | |
| do_hash() { | |
| HASH_NAME=$1 | |
| HASH_CMD=$2 | |
| echo "${HASH_NAME}:" | |
| for f in $(find -type f); do | |
| f=$(echo $f | cut -c3-) # remove ./ prefix | |
| if [ "$f" = "Release" ]; then |