-
Understand overview of Karpenter TOP NEW
Before going through this blog, I would like to inform that this blog is reposted from a technical blog that I have read. Please enjoy the content and this blog is not commercial. How Karpenter Works Karpenter is a fairly new autoscaler, , claimed as “Just In Time Nodes” for Any Kubernetes Cluster. Currently Karpenter just support AWS and A... Read More
-
How to configure IP on Ubuntu TOP NEW
Introduction We often need to configure IP (static or dynamic), especially on newly installed Ubuntu. However, since we have not systematically summarized this, this makes our memory always a little confused, but it’s actually very simple. Here’s how to get networking all the way up in a matter of seconds using just a few commands from the ter... Read More
-
Terminal partial line prompt feature TOP NEW
Introduction If you are a user who often deals with terminals, you must have noticed that the output ends a line with a highlighted percent symbol on occasion with a variety of applications. Maybe you would think it was because the output was cancelled early (ctrl+c, for example) or something similar, but it doesn’t seem to do this in bash, jus... Read More
-
SSH connection was closed weirdly TOP NEW
What’s up? Recently, I encountered a weird problem. When I used SSH to connect to a Linux server, the connection was immediately interrupted, and such a message appeared: free(): invalid next size (fast), screenshot as below image: Troubleshooting After that, I tried to connect using another Linux computer and still had the same problem. Bu... Read More
-
Hash Algorithms TOP NEW
MD-family The MD family of hashing algorithms were designed by Ron Rivest during the late 1980’s and early 1990’s. MD actually stands for “Message Digest”. MD2 It was optimized to run on 8-bit computers and generates a 128-bit hash value the hashes are generally displayed as hexadecimal string which is 32 characters long. This hash exhibits f... Read More
-
Setup Kubernetes cluster with Ansible TOP NEW
-
Setup Kubernetes cluster without Ansible TOP NEW
How to setup Kubernetes cluster with the AWS EC2 nodes RHEL/CentOS OS and without Ansible? In this blog, I will introduce you about installing Kubernetes cluster in REHL7 OS. Prerequisite kubeadm docker/containerd (container runtime) kubectl Install kubeadm, kubectl, kubelet In almose cases, all you guys only want install specific kube... Read More
-
Install VPN server on AWS EC2 TOP NEW
Install Pritunl Prepare a EC2 machine with security group, key pair to authenticate when SSH, VPC, Public subnet, target group. Bootstrap script below: #!/bin/bash sudo apt update -y sudo apt upgrade -y echo "deb http://repo.pritunl.com/stable/apt bionic main" | sudo tee /etc/apt/sources.list.d/pritunl.list echo "deb https://repo.mongodb.org/ap... Read More
-
Linux config files table TOP NEW
-
Bash Shortcuts Table TOP NEW