Install Cockpit on CentOS 7/8 by Sick Codes February 11, 2020 - Updated on June 24, 2020 0 First, you need the might EPEL Release repo: yum install epel-release yum install cockpit Then, you need to enable Cockpit ...
How To Install macOS Virtual Machine on Linux/Arch/Manjaro – Catalina, Mojave, or High Sierra! XCode working! Tutorial for Ubuntu/RHEL/CentOS/Fedora by Sick Codes January 26, 2020 - Updated on August 30, 2020 103 Linux users on Arch or Manjaro attempting to install macOS/OSX in VMWARE, or QEMU/KVM, will greatly benefit from this tutorial. ...
How To Setup VNC, XRDP, XDoTool on Ubuntu (Azure, Gcloud) by Sick Codes January 22, 2020 - Updated on June 24, 2020 0 How To Setup VNC, XRDP, XDoTool on Ubuntu (Azure, Gcloud) # updatesudo apt update -y# install xdotoolsudo apt install xdotool ...
Install XFCE CentOS 8 by Sick Codes January 8, 2020 - Updated on August 15, 2020 2 As CentOS is new, we need to add additional repos, namely epel-testing. First, install yum utils to get yum-config-manager yum ...
Install Python 3.8 on CentOS 7 or 8 by Sick Codes December 13, 2019 - Updated on June 24, 2020 0 Here is a one block automated install for Python3.8 on CentOS: yum install make gcc openssl-devel bzip2-devel libffi-devel -y cd ...
Selenium Stopped Working 2019 Python Selenium Geckodriver Sock Error: Cannot Connect/Create Connection to Browser by Sick Codes December 4, 2019 - Updated on June 24, 2020 0 I recently upgraded Firefox to the latest build. Then, my geckodriver binary stopped working in Python. firefox --version Mozilla Firefox ...
OneLiner: Upgrade All PIP and PIP3 Python Packages to Latest Version by Sick Codes December 4, 2019 - Updated on June 24, 2020 0 "pip3 list --outdated" shows us all installed packages that are currently out of date. pip3 list --outdated Sample Output Package ...
Install Docker on CentOS 8 – Automatically! by Sick Codes November 22, 2019 - Updated on June 27, 2020 0 Docker doesn't come with "stock" repos on CentOS, some variations of alias programs are installations like podman. These lack many ...
Generate Random Numbers on Bash or Shell Using Builtins $random by Sick Codes November 21, 2019 - Updated on June 24, 2020 0 As we all know, the shell builtin variable $RANDOM is a pseudo random number generator. Today, we will be looking ...
Fibonacci Counter In Pure Bash by Sick Codes October 17, 2019 - Updated on June 24, 2020 0 The Fibonacci sequence is a mathematical sequence of numbers such that the result is the sum of the previous two ...