|
You are here |
www.kencochrane.com | ||
| | | | |
javier.io
|
|
| | | | | launch and suscribe RHEL 8/9 instances in AWS 15 Oct 2023 Simple, no RedHat Cloud integration Go to EC2 and launch either RHEL8 or RHEL9 instances: RHEL8: AWS Marketplace: Red Hat Enterprise Linux 8 Ami Id: ami-0b324207d4bcaec61 RHEL9: AWS Marketplace: Red Hat Enterprise Linux 9 Ami Id: ami-026ebd4cfe2c043b2 Ensure the AWS instance includes a RHEL suscription $ curl http://169.254.169.254/latest/dynamic/instance-identity/document 2>/dev/null | grep billingProducts "billingProducts" : [ "bp-6fa54006" ] #I... | |
| | | | |
blog.nuculabs.de
|
|
| | | | | Hello, ?? In this article I will show you how to install Python versions on Linux using the following methods: compiling from source, dead snakes ppa and pyenv. To make things easier, if you want to follow along in an environment that you can break, you can create a local Kubernetes cluster using Minikube. Next, I'm going to use the following yaml file to create an Ubuntu pod: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 apiVersion: v1 kind: Pod metadata: name: ubuntu labels: app: ubuntu spec: containers: - image: ubuntu command: - "sleep" - "604800" imagePullPolicy: IfNotPresent name: ubuntu restartPolicy: Always Save the above yaml in a file ubuntu_pod.yaml and run: | |
| | | | |
unixism.net
|
|
| | | | | From Unix.foo In June of 2023 Red Hat made a controversial decision to change how they distribute the source code behind Red Hat Enterprise Linux (RHEL). There have been a lot of keyboards tapped a... | |
| | | | |
jonsuh.com
|
|
| | | A lot of my time is spent in Terminal and a majority of it is spent typing Git commands. I created a set of keyboard shortcuts with Bash aliases and functions to speed up my workflow and save me hundreds of keystrokes every day. | ||