How to Install GlusterFS On CentOS 8 by Sick Codes May 17, 2020 - Updated on June 24, 2020 0 On CentOS 8, glusterf, glusterfs-fuse, glusterfs-server all are part of the epel-testing repo. # centos 8 yum install centos-release-gluster -y ...
How to Add Private Networking in CentOS 8/Ubuntu on Vultr (One-liners/AUTO) by Sick Codes May 17, 2020 - Updated on June 24, 2020 0 Vultr uses ens7 as the private network interface name. Your instances must be in the same location. How to add ...
Advanced Django Tricks: Dynamically & Automatically Generate Form Fields Using Python Local Variables by Sick Codes May 13, 2020 - Updated on June 24, 2020 2 The following is a trick I use to dynamically generate form fields before you know the form column names. dynamically ...
PIPENV Crontab & Docker: How to Run PIPENV Python Automatically Properly in Cron Jobs with Pipenv – Running Django On a Server by Sick Codes May 8, 2020 - Updated on June 24, 2020 0 How to run Pipenv in a Docker Container, or using Crontab When you run pipenv shell, you will notice a ...
How to Convert SQLite to MySQL & Connect DJANGO to WEB + MySQL Server: Converting a Django sqlite3 to MySQL by Sick Codes May 3, 2020 - Updated on June 24, 2020 0 If you've been using Django, you know that the migrate function creates a locally stored sqlite database. But what if ...
One Liner: ULTIMATE Kubernetes Install! K3s! Ubuntu, CentOS, Debian, RHEL. Best k8s, minikube, okd, Openshift Alternative. by Sick Codes May 1, 2020 - Updated on June 24, 2020 0 Forget minikube, k8s, docker swarm, okd, Openshift or any other bloated mess of amateur shell scripts. This is the one. ...
Add Swap Memory On Ubuntu/Arch/Debian (Any OS, one liner!) by Sick Codes April 29, 2020 - Updated on January 29, 2021 0 # change 2G to how many GB of swap you want fallocate -l 4G /swapfilechmod 600 /swapfilemkswap /swapfileswapon /swapfileswapon -secho ...
Install Fail2Ban on CentOS 8, 9. Works on RHEL 8 and RHEL 9 too. by Sick Codes April 29, 2020 - Updated on February 15, 2023 6 yum update -y yum install epel-release -y yum install fail2ban # or using dnf lol dnf update -y dnf install ...
Linux/Mac: Ffmpeg render/convert or export video using AMD GPU Graphics Card in Arch Linux, Mint, Debian, Manjaro by Sick Codes April 25, 2020 - Updated on June 24, 2020 5 To use your GPU rather than your CPU to convert videos under AMD architecture, you need to use va-api, video ...
Add Swap RAM on CentOS 8 (one line, automatically) by Sick Codes April 25, 2020 - Updated on June 24, 2020 0 Paste the following code into a terminal on CentOS 8. It also works on CentOS 7 and will work on ...