Linux System Admin Primer
Challenge
https://github.com/livialima/linuxupskillchallenge
Linux Guide
https://tldp.org/LDP/intro-linux/html/index.html
Basic Commands
◦ ps
https://github.com/livialima/linuxupskillchallenge
https://tldp.org/LDP/intro-linux/html/index.html
◦ ps
Enabling a service and starting it
systemctl enable --now httpd
systemctl enable httpd
New Command: cut use man to figure out how to use cut
package main | |
import ( | |
"bytes" | |
"encoding/json" | |
"io/ioutil" | |
"log" | |
"net/http" | |
"net/url" | |
"os" |
#!/bin/bash | |
# Usage./create-ecr.sh create repo-name | |
set -x | |
set -e | |
ECR_IMAGE_NAME="" | |
if [ "$1" = "" ]; | |
then | |
echo "No Args passed" |
<!-- | |
Program to accept Student ID (combination of alphabets an numbers), | |
date of joining Collige, percentage in previous class (in digits) | |
The data should be sent to the server. | |
--> | |
<html> | |
<head> | |
<title>HTML question 1</title> | |
</head> | |
<body> |
Get a list of running processes
ps aux
Filter through the processes replace "<keyword>"
ps aux| grep <keyword>
Search for 2 or more processes
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net/http" | |
"os" | |
"database/sql" |
Folks, Leave me a comment / URL if something you like is missing!
Resource | Description |
---|---|
Kube Academy | https://kube.academy/ |
kuernetes-101 | https://kube.academy/courses/kubernetes-101/ |
Docs Home | https://kubernetes.io/docs/home/ |
CKS CKA CKAD Simulator | https://killer.sh/ |