All public logs

Jump to navigation Jump to search

Combined display of all available logs of Chorke Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 08:37, 16 August 2024 Shahed talk contribs created page Helm/PostgreSQL (Created page with " helm repo add bitnami https://charts.bitnami.com/bitnami helm repo update && helm repo list ==Config== <syntaxhighlight lang="properties"> export KUBECONFIG="${HOME}/.kube/dev-kubeconfig.yaml" export KUBECONFIG="${HOME}/.kube/gcp-kubeconfig.yaml" export KUBECONFIG="${HOME}/.kube/config" </syntaxhighlight> ==Install== {| |valign="top"| <syntaxhighlight lang="bash"> helm show values bitnami/postgresql --version=15.5.20|less helm show values bitnami/postgresql --version...")
  • 09:05, 14 August 2024 Shahed talk contribs created page K8s/Ingress (Created page with "==External== <syntaxhighlight lang="bash"> kubectl get ns|grep external kubectl delete namespace external kubectl create namespace external </syntaxhighlight> ==Internal== <syntaxhighlight lang="bash"> kubectl get ns|grep internal kubectl delete namespace internal kubectl create namespace internal </syntaxhighlight> ==Playground== {| |valign="top"| <syntaxhighlight lang="bash"> kubectl -n external get endpoints kubectl -n external get service kubectl -n external get in...")
  • 09:30, 11 August 2024 Shahed talk contribs created page UFW (Created page with "<syntaxhighlight lang="bash"> cat <<-'EXE'|sudo bash apt-get update;echo apt list -a --upgradable apt-get install -y ufw nmap telnet EXE </syntaxhighlight> <syntaxhighlight lang="bash"> sudo ufw allow http sudo ufw allow OpenSSH sudo ufw allow in on lxdbr0 sudo ufw route allow in on lxdbr0 sudo ufw route allow out on lxdbr0 sudo ufw status verbose sudo systemctl status ufw sudo ufw enable </syntaxhighlight> <syntaxhighlight lang="bash"> sudo ufw allow 5900/tcp sudo u...")
  • 07:21, 11 August 2024 Shahed talk contribs created page Dockerized PostgreSQL (Created page with "==Copy Database Dump into Dump== <syntaxhighlight lang="bash"> mkdir -p ${HOME}/Documents/pgsql-playground/dump/ # cd <path of your data staging-gbsn dump directory> cp ${PWD}/*.gz ${HOME}/Documents/pgsql-playground/dump/ </syntaxhighlight> ==Database Dump Import Script== <syntaxhighlight lang="bash"> cd ${HOME}/Documents/pgsql-playground/ tee ./dump/restore_locale >/dev/null <<'EOF' #!/bin/sh cat << SQL | psql -p 5432 -U postgres -- terminate all th...")
  • 18:40, 8 August 2024 Shahed talk contribs created page YQ Tool (Created page with "{| | valign="top" | <syntaxhighlight lang="bash"> # ubuntu/debian cat << EXE|sudo bash PLATFORM=$(uname -s)_$(dpkg --print-architecture) YQ_BINARY=$(echo "yq_${PLATFORM}"|tr '[:upper:]' '[:lower:]') wget https://github.com/mikefarah/yq/releases/latest/download/${YQ_BINARY} -O /usr/bin/yq chmod +x /usr/bin/yq EXE </syntaxhighlight> | valign="top" | '''windows:''' 1. Press '''⊞ + R''' 2. Type in '''PowerShell''' '''run as administrator user''' 3. Press '''Ctrl + Sh...")
  • 08:40, 8 August 2024 Shahed talk contribs created page Helm/GitLab (Created page with " helm repo add gitlab https://charts.gitlab.io helm repo update && helm repo list ==Config== <syntaxhighlight lang="properties"> export KUBECONFIG="${HOME}/.kube/dev-kubeconfig.yaml" export KUBECONFIG="${HOME}/.kube/gcp-kubeconfig.yaml" export KUBECONFIG="${HOME}/.kube/config" </syntaxhighlight> ==Install== {| |colspan="2"| <syntaxhighlight lang="sql"> cat << DDL | psql -U ${USER} CREATE DATABASE gitlab; -- DROP DATABASE IF EXISTS gitlab; CREATE USER gitlab WITH ENCRY...")
  • 08:45, 1 August 2024 Shahed talk contribs created page K8s/CSI Hostpath Driver (Created page with "{| |valign="top"| <syntaxhighlight lang="bash"> minikube stop minikube delete --all rm -rf ${HOME}/.minikube/* </syntaxhighlight> |valign="top"| <syntaxhighlight lang="bash"> minikube start minikube docker-env minikube addons list </syntaxhighlight> |valign="top"| <syntaxhighlight lang="bash"> minikube addons enable ingress minikube addons enable ingress-dns minikube addons enable metrics-server </syntaxhighlight> |- | colspan="3" | ---- |- | valign="top" | <syntaxhig...")
  • 22:31, 31 July 2024 Shahed talk contribs created page Helm/Nexus (Created page with " helm repo add sonatype https://sonatype.github.io/helm3-charts helm repo update && helm repo list ==Config== <syntaxhighlight lang="properties"> export KUBECONFIG="${HOME}/.kube/dev-kubeconfig.yaml" export KUBECONFIG="${HOME}/.kube/gcp-kubeconfig.yaml" export KUBECONFIG="${HOME}/.kube/config" </syntaxhighlight> ==Install== {| |colspan="2"| <syntaxhighlight lang="yaml" highlight="25" line> kubectl create namespace nexus helm show values sonatype/nexus-repository-manag...")
  • 05:23, 31 July 2024 Shahed talk contribs created page Helm/Cert Manager (Created page with " helm repo add jetstack https://charts.jetstack.io helm repo update && helm repo list ==Config== <syntaxhighlight lang="properties"> export KUBECONFIG="${HOME}/.kube/dev-kubeconfig.yaml" export KUBECONFIG="${HOME}/.kube/gcp-kubeconfig.yaml" export KUBECONFIG="${HOME}/.kube/config" </syntaxhighlight> ==Install== {| |valign='top'| <syntaxhighlight lang="yaml"> kubectl create namespace cert-manager helm show values jetstack/cert-manager --version v1.15.1|less helm instal...")
  • 08:56, 30 July 2024 Shahed talk contribs created page Helm/SonarQube (Created page with " helm repo add sonarqube https://SonarSource.github.io/helm-chart-sonarqube helm repo update && helm repo list ==Config== <syntaxhighlight lang="properties"> export KUBECONFIG="${HOME}/.kube/dev-kubeconfig.yaml" export KUBECONFIG="${HOME}/.kube/gcp-kubeconfig.yaml" export KUBECONFIG="${HOME}/.kube/config" </syntaxhighlight> ==Install== {| |colspan="2"| <syntaxhighlight lang="yaml"> kubectl create namespace sonarqube helm show values sonarqube/sonarqube --version 10.6....")
  • 03:57, 30 July 2024 Shahed talk contribs created page Helm/Keycloak (Created page with " helm pull oci://registry-1.docker.io/bitnamicharts/keycloak --version 22.0.0 --untar helm pull oci://registry-1.docker.io/bitnamicharts/keycloak --version 19.3.3 --untar helm pull oci://registry-1.docker.io/bitnamicharts/keycloak --untar helm pull oci://registry-1.docker.io/bitnamicharts/keycloak --version 22.0.0 helm pull oci://registry-1.docker.io/bitnamicharts/keycloak --version 19.3.3 helm pull oci://registry-1.docker.io/bitnamicharts/keycloak ==Config== <s...")
  • 00:50, 30 July 2024 Shahed talk contribs created page Helm/Prometheus Stack (Created page with " helm repo add prometheus https://prometheus-community.github.io/helm-charts helm repo update helm repo list ==Config== <syntaxhighlight lang="properties"> export KUBECONFIG="${HOME}/.kube/dev-kubeconfig.yaml" export KUBECONFIG="${HOME}/.kube/gcp-kubeconfig.yaml" export KUBECONFIG="${HOME}/.kube/config" </syntaxhighlight> ==Install== <syntaxhighlight lang="yaml"> kubectl create namespace prometheus helm show values prometheus/kube-prometheus-stack|less cat <<YML | he...")
  • 20:09, 22 July 2024 Shahed talk contribs created page EKSctl (Created page with "==References== {| | valign="top" | * [https://eksctl.io/usage/schema/ EKS » CLI » Schema] * [https://eksctl.io/installation/ EKS » CLI » Install] * [https://eksctl.io/ EKS] | valign="top" | | valign="top" | |- | colspan="3" | ---- |- | valign="top" | * Kubernetes * Minikube * ZA Proxy * AWS CLI * Kubectl * Docker * JMeter * Helm * AWS * Istio | valign="top" | * Docker Compose * K8s * K9s | valign="top" | |}")
  • 23:43, 10 July 2024 Shahed talk contribs created page FFmpeg (Created page with "<syntaxhighlight lang="bash"> echo 'apt-get update;echo;apt list -a --upgradable;apt-get upgrade -y'|sudo bash echo 'apt-get install -y ffmpeg'|sudo bash </syntaxhighlight> ==Playground== {| | valign="top" | <syntaxhighlight lang="bash"> mkdir -p ~/Documents/ffmpeg-playground cd ~/Documents/ffmpeg-playground </syntaxhighlight> | valign="top" | <syntaxhighlight lang="bash"> for webm in *.webm;do echo ${webm%.*}; done for webm in *.webm;do echo ${webm##*.};done </s...")
  • 10:12, 8 July 2024 Shahed talk contribs created page Flatpak (Created page with "<syntaxhighlight lang="bash"> cat <<-'EXE'|sudo bash apt-get update apt-get install -y flatpak apt-get install -y gnome-software-plugin-flatpak EXE flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo </syntaxhighlight> ==References== {| | valign="top" | * [https://www.reddit.com/r/flatpak/comments/zx4sp6/what_are_the_pros_and_cons_of_flatpaks Flatpak » Pros & Cons] * [https://flatpak.org/setup/Ubuntu Flatpak » Ubuntu] * [https:/...")
  • 07:10, 7 July 2024 Shahed talk contribs created page DaVinci Resolve (Created page with "==References== {| | valign="top" | * [https://github.com/flolu/davinci-resolve-linux DaVinci » Resolve » 16 » On Linux] * [https://www.blackmagicdesign.com/products/davinciresolve DaVinci » Resolve » Download] | valign="top" | | valign="top" | |- | colspan="3" | ---- |- | valign="top" | * Alpine/Morefine * Ruby on Rails * TensorFlow * Homebrew * Linuxbrew * PyEnv * TMux * 7Zip * Zip * Tar | valign="top" | * Disk Performa...")
  • 00:00, 6 July 2024 Shahed talk contribs created page Swap Space (Created page with "==Update » Ubuntu== <syntaxhighlight lang="bash"> swapon --show </syntaxhighlight> ==Update » Raspberry Pi 4== <syntaxhighlight lang="bash" highlight="3,4" line> cat <<'EXE' | sudo bash printf '\nbefore:\n';free -th sed -i 's|CONF_SWAPSIZE=100|CONF_SWAPSIZE=2048|' /etc/dphys-swapfile service dphys-swapfile restart printf '\nupdate:\n';free -th EXE </syntaxhighlight> ==Playground== {| | valign="top" colspan="2" | <syntaxhighlight lang="bash"> echo 'sync;echo 3 >/proc/...")
  • 22:20, 5 July 2024 Shahed talk contribs created page Disk Performance (Created page with "==Sequential Write== <syntaxhighlight lang="bash"> dd if=/dev/zero of=/tmp/tempfile bs=1M count=1024 conv=fdatasync :' 1024+0 records in 1024+0 records out 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 0.521978 s, 2.1 GB/s ' </syntaxhighlight> ==Sequential Read » Clean Buffer== <syntaxhighlight lang="bash"> echo 'sync;echo 3 >/proc/sys/vm/drop_caches'|sudo bash dd if=/tmp/tempfile of=/dev/null bs=1M count=1024 :' 1024+0 records in 1024+0 records out 1073741824 bytes (1.1...")
  • 09:45, 3 July 2024 Shahed talk contribs created page Minikube Registry (Created page with "{| |valign="top"| <syntaxhighlight lang="bash"> minikube stop minikube delete --all rm -rf ${HOME}/.minikube/* </syntaxhighlight> |valign="top"| <syntaxhighlight lang="bash"> minikube start minikube docker-env minikube addons list </syntaxhighlight> |valign="top"| <syntaxhighlight lang="bash"> for p in ingress ingress-dns registry dashboard metrics-server;\ do minikube addons enable ${p};done minikube addons list </syntaxhighlight> |- | colspan="3" | ---- |- | valign=...")
  • 10:34, 2 July 2024 Shahed talk contribs created page Free Up RAM (Created page with "==Free Up » PageCache== <syntaxhighlight lang="bash"> echo 'sync;echo 1>/proc/sys/vm/drop_caches'|sudo bash </syntaxhighlight> ==Free Up » Dentries and Inodes== <syntaxhighlight lang="bash"> echo 'sync;echo 2>/proc/sys/vm/drop_caches'|sudo bash </syntaxhighlight> ==Free Up » PageCache, Dentries, and Inodes== <syntaxhighlight lang="bash"> echo 'sync;echo 3>/proc/sys/vm/drop_caches'|sudo bash </syntaxhighlight> ==Free Up » Swap Space== <syntaxhighlight lang="bash">...")
  • 22:24, 1 July 2024 Shahed talk contribs created page Helm/Prometheus (Created page with " helm repo add prometheus https://prometheus-community.github.io/helm-charts helm repo update helm repo list ==Config== <syntaxhighlight lang="properties"> export KUBECONFIG="${HOME}/.kube/dev-kubeconfig.yaml" export KUBECONFIG="${HOME}/.kube/gcp-kubeconfig.yaml" export KUBECONFIG="${HOME}/.kube/config" </syntaxhighlight> ==Install== <syntaxhighlight lang="yaml"> kubectl create namespace prometheus helm show values prometheus/prometheus cat <<YML | helm install -n pr...")
  • 07:57, 1 July 2024 Shahed talk contribs created page Helm/Grafana (Created page with " helm repo add grafana https://grafana.github.io/helm-charts helm repo update helm repo list ==Config== <syntaxhighlight lang="properties"> export KUBECONFIG="${HOME}/.kube/dev-kubeconfig.yaml" export KUBECONFIG="${HOME}/.kube/gcp-kubeconfig.yaml" export KUBECONFIG="${HOME}/.kube/config" </syntaxhighlight> ==Install== <syntaxhighlight lang="yaml"> kubectl create namespace grafana cat <<YML | helm install -n grafana grafana grafana/grafana -f - ingress: enabled: tru...")
  • 09:16, 29 June 2024 Shahed talk contribs created page Chorke Academia Backup (Created page with "==Backup » Databases== <syntaxhighlight lang="bash"> ssh [email protected] mkdir -p ~/rds_backup/ cat << EXE | bash BACKUP_PRO='academia' BACKUP_ENV='production' BACKUP_DATE_TIME="\$(date +'%Y%m%d-T%H%M')-Z\$(date +'%z'|tr '+-' 'PM')" for d in keycloak quote policy;do pg_dump -U postgres "academia_\${d}"\ | gzip > "${HOME}/rds_backup/chorke-\${d}_\${BACKUP_PRO}-\${BACKUP_ENV}-\${BACKUP_DATE_TIME}.sql.gz"; done EXE mkdir -p ~/Documents/backup-pla...")
  • 07:38, 29 June 2024 Shahed talk contribs created page 7Zip (Created page with " sudo apt -qq update sudo apt install -y p7zip-full 7z ==Compress== <syntaxhighlight lang="bash"> cd /etc/nginx 7z a chorke-nginx_academia-production-20240628-T2023-ZP0800.7z sites-enabled 7z a chorke-nginx_academia-production-20240628-T2023-ZP0800.7z sites-enabled -x!default 7z a chorke-nginx_academia-production-20240628-T2023-ZP0800.7z sites-enabled -xr!default </syntaxhighlight> ==Decompress== <syntaxhighlight lang="bash"> 7z l chorke-nginx_academia-production-202...")
  • 22:12, 28 June 2024 Shahed talk contribs created page Zip (Created page with "==Compress== <syntaxhighlight lang="bash"> cd /etc/nginx zip -r chorke-nginx_academia-production-20240628-T2023-ZP0800.zip sites-enabled zip -r chorke-nginx_academia-production-20240628-T2023-ZP0800.zip sites-enabled -x default </syntaxhighlight> ==Decompress== <syntaxhighlight lang="bash"> unzip -l chorke-nginx_academia-production-20240628-T2023-ZP0800.zip unzip chorke-nginx_academia-production-20240628-T2023-ZP0800.zip unzip chorke-nginx_academia-production-2024...")
  • 08:08, 28 June 2024 Shahed talk contribs created page Crontab (Created page with "{| | valign="top" | <syntaxhighlight lang="bash"> crontab -e sudo crontab -u <username> -e </syntaxhighlight> | valign="top" | <syntaxhighlight lang="bash"> crontab -r sudo crontab -u <username> -r </syntaxhighlight> | valign="top" | <syntaxhighlight lang="bash"> crontab -l sudo crontab -u <username> -l </syntaxhighlight> |} ==References== {| | valign="top" | * Raspberry Pi Apache2 Lets Encrypt SSL * [https://crontab.guru/every-night-at-midnight Linux Cron Every...")
  • 06:51, 28 June 2024 Shahed talk contribs created page Tar (Created page with "==Compress== <syntaxhighlight lang="bash"> cd /etc/nginx tar -czvf chorke-nginx_academia-production-20240628-T2023-ZP0800.tar.gz sites-enabled </syntaxhighlight> ==Decompress== <syntaxhighlight lang="bash"> tar -tzvf chorke-nginx_academia-production-20240628-T2023-ZP0800.tar.gz tar -xzvf chorke-nginx_academia-production-20240628-T2023-ZP0800.tar.gz tar -xzvf chorke-nginx_academia-production-20240628-T2023-ZP0800.tar.gz\ -C chorke-nginx-academia-production </syntaxhighl...")
  • 00:00, 27 June 2024 Shahed talk contribs created page Minikube Systemd (Created page with "<syntaxhighlight lang="bash"> if [ -x "$(command -v curl)" ];then \ sudo apt -qq update;\ export MINIKUBE_CPU_USE=8;\ export MINIKUBE_RAM_USE=16384;\ bash <(curl -s 'https://cdn.chorke.org/exec/cli/bash/install/minikube/1.0.0-ubuntu-22.04.sh.txt');\ else printf 'curl \033[0;31mnot found! \033[0m:(\n';fi </syntaxhighlight> ==Prepare Debug== <syntaxhighlight lang="bash"> lxc launch ubuntu:22.04 minikube --vm cat << EXE | lxc exec minikube -- bash LXC_USER_NAME="${USER}" i...")
  • 19:28, 26 June 2024 Shahed talk contribs created page CIDR (Created page with "{|class="wikitable" |- !scope="col"| Name !!scope="col"| CIDR !!scope="col"| Status |rowspan="4"| !scope="col"| Name !!scope="col"| CIDR !!scope="col"| Status |- | Docker || <code>10.20.13.1/24</code> || 🟢 || LXD || <code>10.20.23.1/24</code> || 🟢 |- | Home || <code>10.19.83.1/24</code> || 🟢 || OpenVPN || <code>10.20.30.1/24</code> || 🟢 |- | Minikube || <code>10.20.24.1/24</code> || 🟡 || Reserve || <code>10.20.25.1/2...")
  • 08:27, 6 June 2024 Shahed talk contribs created page Helm/Camunda (Created page with " helm repo add camunda https://helm.camunda.io helm repo update helm repo list ==Config== <syntaxhighlight lang="properties"> export KUBECONFIG="${HOME}/.kube/dev-kubeconfig.yaml" export KUBECONFIG="${HOME}/.kube/gcp-kubeconfig.yaml" export KUBECONFIG="${HOME}/.kube/config" </syntaxhighlight> ==Install== ==Uninstall== <syntaxhighlight lang="bash"> helm uninstall -n camunda camunda kubectl delete namespace camunda </syntaxhighlight> ==Playground== ==References== {|...")
  • 07:43, 5 June 2024 Shahed talk contribs created page Mirth (Created page with "==References== {| | valign="top" | * [https://amaron.be/en/what-is-mirth-connect-and-what-are-the-benefits-of-this-integration-engine/ Mirth » HL7 Integration Engine] * [https://www.nextgen.com/solutions/interoperability/mirth-integration-engine/mirth-connect-downloads Mirth » Connect » Download] * [https://amaron.be/en/academy/ Mirth » Amaron » Academy] * [https://mirthdownloadarchive.s3.amazonaws.com/index.html Mirth » Connect » Archive] * [https://www.nextgen.c...")
  • 21:59, 3 June 2024 Shahed talk contribs created page Helm/Jenkins (Created page with "==References== {| | valign="top" | * [https://stackoverflow.com/questions/75596795/ Helm » Pass YAML/JSON using <code>stdin</code>] * [https://helm.sh/docs/helm/helm_repo_remove/ Helm » Repo » Remove] * [https://helm.sh/docs/chart_template_guide/values_files/ Helm » Values Files] * [https://helm.sh/docs/helm/helm_upgrade/ Helm » Upgrade] * [https://helm.sh/docs/helm/helm_rollback/ Helm » Rollback] * [https://helm.sh/docs/helm/helm_history/ Helm » History] * [https...")
  • 09:06, 2 June 2024 Shahed talk contribs created page PyEnv (Created page with "<syntaxhighlight lang="bash"> brew install pyenv cat <<< ' # pyenv config export PYENV_ROOT="${HOME}/.pyenv" [[ -d ${PYENV_ROOT}/bin ]] && export PATH="${PYENV_ROOT}/bin:${PATH}" eval "$(pyenv init -)"'| tee -a ~/.bashrc >/dev/null </syntaxhighlight> ==Playground== {| | valign="top" | <syntaxhighlight lang="bash"> pyenv install -list-all pyenv install 3.10.14 cat ./.python-version </syntaxhighlight> | valign="top" | <syntaxhighlight lang="bash"> pyenv global system 3.1...")
  • 08:29, 1 June 2024 Shahed talk contribs created page Ham Radio Linux (Created page with "==References== {| | valign="top" | * [https://hamradio.my/2024/05/exploring-ubuntu-for-amateur-radio-a-comprehensive-guide/ Ham » Exploring Ubuntu for Amateur Radio] * [https://sourceforge.net/projects/kb1oiq-andysham/ Ham » Andy's Ham Radio Linux] * [https://launchpad.net/~ubuntu-hams Ham » Ubuntu Amateur Radio] * [https://wiki.ubuntu.com/UbuntuHams Ham » Ubuntu Hams] | valign="top" | | valign="top" | |- | colspan="3" | ---- |- | valign="top" | | valign="top" |...")
  • 23:48, 29 May 2024 Shahed talk contribs created page Ubuntu Upgrade (Created page with "<syntaxhighlight lang="sql"> sudo apt update sudo apt upgrade </syntaxhighlight> ==Upgrade » 22.04 » 24.04== <syntaxhighlight lang="bash"> sudo sed -i 's|jammy|noble|g' /etc/apt/sources.list sudo apt update && sudo apt upgrade sudo apt dist-upgrade </syntaxhighlight> ==Upgrade » 23.10 » 24.04== <syntaxhighlight lang="bash"> sudo sed -i 's|mantic|noble|g' /etc/apt/sources.list sudo apt update && sudo apt upgrade sudo apt dist-upgrade </syntaxhighlight> ==References...")
  • 22:40, 26 May 2024 Shahed talk contribs created page Minikube Ingress DNS (Created page with "==References== {| | valign="top" | * [https://minikube.sigs.k8s.io/docs/handbook/pushing/ Minikube » Pushing Images] * [https://minikube.sigs.k8s.io/docs/handbook/addons/custom-images/ Minikube » Custom Images] * [https://minikube.sigs.k8s.io/docs/handbook/network_policy/ Minikube » Network Policy] * [https://minikube.sigs.k8s.io/docs/handbook/config/ Minikube » Configuration] * [https://minikube.sigs.k8s.io/docs/handbook/offline/ Minikube » Offline Usage] * [https:...")
  • 01:17, 14 May 2024 Shahed talk contribs created page AWS CLI (Created page with "<syntaxhighlight lang="bash"> wget -cq https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip -P ${HOME}/Downloads unzip -q ${HOME}/Downloads/awscli-exe-linux-x86_64.zip -d ${HOME}/Downloads/ rm -rf ${HOME}/Downloads/awscli-exe-linux-x86_64.zip sudo ${HOME}/Downloads/aws/install rm -rf ${HOME}/Downloads/aws </syntaxhighlight> ==Playground== {| | valign="top" | <syntaxhighlight lang="bash"> aws --version aws configure </syntaxhighlight> | valign="top"| <syntax...")
  • 20:31, 13 May 2024 Shahed talk contribs created page K9s (Created page with "<syntaxhighlight lang="bash"> brew install derailed/k9s/k9s sudo snap install k9s </syntaxhighlight> ==Playground== {| | valign="top" | <syntaxhighlight lang="bash"> k9s help k9s info </syntaxhighlight> | valign="top" | | valign="top" | |- | colspan="3" | ---- |- | valign="top" | | valign="top" | | valign="top" | |} == References == {| | valign="top" | * [https://askubuntu.com/questions/1477547/ K9s » Install On Ubuntu] * [https://www.hackingnote.com/en/cheatshe...")
  • 19:28, 13 May 2024 Shahed talk contribs created page Linuxbrew (Created page with "<syntaxhighlight lang="bash"> sudo apt update sudo apt install apt-transport-https ca-certificates sudo apt install build-essential procps curl file git bash <(curl -fsSL 'https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh') </syntaxhighlight> == References == {| | valign="top" | * [https://docs.brew.sh/Homebrew-on-Linux Linuxbrew] | valign="top" | | valign="top" | |- | colspan="3" | ---- |- | valign="top" | * Linux Containers * Homebrew * T...")
  • 01:45, 13 May 2024 Shahed talk contribs created page Google Cloud CLI (Created page with "== References == {| | valign="top" | * [https://cloud.google.com/sdk/docs/install GCloud » Install] * [https://cloud.google.com/cli GCloud] | valign="top" | | valign="top" | |- | colspan="3" | ---- |- | valign="top" | * [https://serverfault.com/questions/283129/ SSH » Connection Hang Forever] * Docker Compose * Linux Containers * Kubernetes * Terraform * Remmina * OpenVPN * X11VNC * Podman * XRDP | valign="top" | * Vagrant *...")
  • 20:14, 8 May 2024 Shahed talk contribs created page Remmina (Created page with "<syntaxhighlight lang="bash"> remmina -? </syntaxhighlight> == References == {| | valign="top" | * [https://superuser.com/questions/628371/ Remmina » Linux » Run from the terminal] | valign="top" | | valign="top" | |- | colspan="3" | ---- |- | valign="top" | * [https://dev.to/aws-builders/ssh-setup-and-tunneling-via-bastion-host-3kcc SSH » AWS Bastion Host Tunneling] * [https://serverfault.com/questions/283129/ SSH » Connection Hang Forever] * SSH/Public Key Au...")
  • 20:54, 22 April 2024 Shahed talk contribs created page CLI App (Created page with "==References== {| |valign='top'| * CLI » Maven * CLI » Ant * CLI » Ivy |valign='top'| |valign='top'| |- |valign='top' colspan='3'| ---- |- |valign='top'| * Online App |valign='top'| |valign='top'| |}")
  • 17:21, 19 April 2024 Shahed talk contribs created page CURL (Created page with " sudo apt update sudo apt install curl && curl --version ==References== {| | valign="top" | * [https://adityasridhar.com/posts/how-to-easily-use-curl-for-http-requests cURL » Easily use for HTTP Requests] * [https://unix.stackexchange.com/questions/428260/ cURL » Request Using .netrc file] * [https://curl.se/docs/httpscripting.html cURL » HTTP Scripting] | valign="top" | | valign="top" | |- | colspan="3" | ---- |- | valign="top" | * TensorFlow * Homebrew...")
  • 20:10, 18 April 2024 Shahed talk contribs created page OpenGL (Created page with "==References== {| |valign="top"| * [https://medium.com/geekculture/a-beginners-guide-to-setup-opengl-in-linux-debian-2bfe02ccd1e OpenGL » A Beginner’s Guide to Setup in Linux] * [https://askubuntu.com/questions/47062/ OpenGL » Show version?] |valign="top"| |valign="top"| |- |colspan="3"| ---- |- |valign="top"| * Oracle12c Instant Client Config * PostgreSQL * TensorFlow * OpenLDAP * OpenVPN * Hadoop * MySQL * Spark * Flask |vali...")
  • 01:53, 2 April 2024 Shahed talk contribs created page MediaWiki Upgrade (Created page with "<syntaxhighlight lang="sql"> sudo su cat << DDL | mysql CREATE USER 'shahed'@'localhost' IDENTIFIED VIA unix_socket; GRANT ALL PRIVILEGES ON *.* TO 'shahed'@'localhost' WITH GRANT OPTION; DDL exit </syntaxhighlight> ---- <syntaxhighlight lang="sql"> cat << DDL | mysql DROP DATABASE IF EXISTS chorke_orgwiki; CREATE DATABASE IF NOT EXISTS chorke_orgwiki; CREATE USER 'chorke_orgwiki'@'%' IDENTIFIED BY 'sadaqah!'; GRANT ALL PRIVILEGES ON chorke_orgwiki.* TO 'chorke_org...")
  • 19:40, 1 April 2024 Shahed talk contribs created page Maven Release Plugin (Created page with "<syntaxhighlight lang="xml"> <dependencies> <dependency> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.2.0</version> <type>maven-plugin</type> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <tagNameFormat>@{project.version}</tagNa...")
  • 21:12, 31 March 2024 Shahed talk contribs created page MySQL (Created page with "{| |valign="top"| '''MySQL » Auth » Unix''' <syntaxhighlight lang="sql"> cat << DDL | mysql -- CREATE DATABASE IF NOT EXISTS shahed; CREATE USER 'chorke'@'localhost' IDENTIFIED VIA unix_socket; GRANT ALL PRIVILEGES ON *.* TO 'chorke'@'localhost' WITH GRANT OPTION; DDL </syntaxhighlight> |valign="top"| '''MySQL » Auth » Local''' <syntaxhighlight lang="sql"> cat << DDL | mysql CREATE DATABASE IF NOT EXISTS chorke_orgwiki; CREATE USER 'chorke_orgwiki'@'localhost' IDENT...")
  • 19:02, 22 December 2023 Shahed talk contribs moved page KIA Forte 1.6 SX 2011 Service Record to KIA Forte 1.6 SX 2011 without leaving a redirect
  • 01:47, 15 June 2023 Shahed talk contribs moved page NeoVim to Neovim (Rename)
  • 03:02, 22 June 2022 Shahed talk contribs moved page Bitbucket Pipelines to Bitbucket Pipeline (Update Naming)
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)