- Install Proxmox 5.0.X with lvm storage
- Get the jun's loader 1.02b at the following url :
- Retrieve a DSM pat file here : https://usdl.synology.com/download/DSM/release/
- Create the proxmox VM as the following :
- OS Type : Linux 4.x
| # ----- kubectl ---------- | |
| alias k='kubectl' | |
| alias kdl='kubectl delete' | |
| alias klg='kubectl logs' | |
| alias klf='kubectl logs -f' | |
| alias kaf='kubectl apply -f' | |
| alias kdlf='kubectl delete -f' | |
| # ----- kubectl get ---------- | |
| alias kg='kubectl get' |
| > All lists that contain examples are ordered in descending order with first ones being more important | |
| # Core skills | |
| - Linux | |
| - Topics: file hierarchy, user management, permissions, system management, daemons, startup | |
| - *Relevant certifications*: LPIC, RHCSA/RHCE | |
| - Links: | |
| - [Linux Journey](https://linuxjourney.com/) | |
| - [Linux Command library](https://linuxcommandlibrary.com/) |
| # ----- kubectl ---------- | |
| alias k='kubectl' | |
| alias kdl='kubectl delete' | |
| alias klg='kubectl logs' | |
| alias klf='kubectl logs -f' | |
| alias kaf='kubectl apply -f' | |
| alias kdlf='kubectl delete -f' | |
| # ----- kubectl get ---------- | |
| alias kg='kubectl get' |
| # 1. Check values current values for error logging in php container | |
| for i in $(docker ps | grep 'apache\|php\|web' | awk '{print $1}'); do echo "cotainer id: $i, php.ini logging." ; docker exec -it $i grep 'display_errors\|error_reporting' /usr/local/etc/php/php.ini ; done | |
| # 2. php.ini desired values for error logging | |
| display_errors = On | |
| display_startup_errors = On | |
| ; Default Value: Off |