Skip to content

Instantly share code, notes, and snippets.

View humboldt's full-sized avatar

Alexander humboldt

View GitHub Profile
@Trogvars
Trogvars / readme.md
Last active November 13, 2024 02:07
Centos 7 upgrade to 8, Migrate to Stream or Rocky Linux.

Doing upgrade of Centos 7 server to Centos 8. Step to step guide.

1. Migrating backup of working system to virtual guest or another server.

Preparation of test image. Boot from Centos 7 CD into troubleshoot mode and skip to shell. Prepare disks of guest machine. Make partitions and filesystems.

Sda2 - boot - ext2

@4mirul
4mirul / docker-basic.md
Last active February 20, 2023 12:38
docker-and-notes

Docker basic

Version
Docker client version 20.10.12
Docker server version 20.10.12

link

docker version

@dannybarrientos
dannybarrientos / dockercomandos.txt
Last active August 7, 2022 21:15
docker comandos
Eliminar todos los contenedores detenidos
docker system prune
Eliminar todas las imágenes
docker rmi $(docker images -a -q)
Listar los volumenes
@thibaut-d
thibaut-d / 0 - docker-compose cheatsheet.sh
Last active August 7, 2022 21:30
Cheatsheet for Docker
https://docs.docker.com/compose/reference/overview/
docker-compose build # build containers (usefull if changed)
docker-compose up # builds, (re)creates, starts, and attaches to containers for a service.
docker-compose up -d # same in detached mode
docker-compose up --force-recreate # stop all containers and recreate
docker-compose up --build # rebuild custom images
docker-compose stop # stop but dont remove
docker-compose start # restart
docker-compose down # stop & remove containers
@bradtraversy
bradtraversy / docker_wordpress.md
Last active October 8, 2025 11:15
Docker Compose FIle For Wordpress, MySQL & phpmyadmin

Wordpress & Docker

This file will setup Wordpress, MySQL & PHPMyAdmin with a single command. Add the code below to a file called "docker-compose.yaml" and run the command

$ docker-compose up -d

# To Tear Down
$ docker-compose down --volumes
@stolsma
stolsma / 1-Install.md
Last active August 7, 2022 16:19
Centos repo files for installing KVM, docker, kubernetes, Helm and Tiller

Installing KVM, libvirt, Docker-CE and Kubernetes on Centos 7.x

First of all be root while doing this... sudo su

Set hostname

Set the hostname:

hostnamectl set-hostname 'k8s-master'

@xoseperez
xoseperez / rpi3_iot_server.md
Last active February 11, 2024 15:05
Raspberry Pi 3 with Mosquitto, Node-RED, InfluxDB, Grafana and Nginx (as a reverse proxy)
@ValdikSS
ValdikSS / huawei-fw-list.txt
Last active October 11, 2025 23:26
Huawei firmware files found on update server
==========================================================================
DO NOT WRITE ANY QUESTIONS IN COMMENTS
==========================================================================
This is not appropriate place for discussions. Keep this list FW-only.
I do NOT have any firmware files apart from published here or on 4pda. Please do not contact me for firmware files requests.
This is a list of files found on Huawei update server by brute-forcing URL parameters.
Some firmware files have changelogs. Just change file name to "changelog.xml" in the end of the URL.
@johnmccabe
johnmccabe / README.md
Last active April 24, 2025 10:07
Installing cockpit-docker with Docker CE on CentOS7

Install cockpit-docker for Docker CE on CentOS

sudo yum install epel-release
sudo yum -y install dnf dnf-plugins-core
dnf download cockpit-docker
sudo rpm -Uvh --nodeps cockpit-docker-138-6.el7.centos.x86_64.rpm
sudo service cockpit restart
@tymarbut
tymarbut / README.md
Last active October 14, 2024 06:18
Baofeng (or other radio) data TX/RX for Raspberry Pi

This flow (and associated circuits/hardware) is designed to allow Node-RED to pass messages via radio waves in the same way as it passes messages via MQTT, using commonly-available, inexpensive handheld radios and the Raspberry Pi. The flow has been tested using Baofeng, Wouxun, and Quansheng handheld ham radios. In short, the goal is to allow packet-like transmissions between Node-RED systems over miles, while keeping the hardware costs down (or free for those hams who have surplus Baofengs hanging around). This could be used for a backup to MQTT when the Wifi is unreliable, or simply as a long-distance and network-agnostic message channel.

Prerequisites: Software

First, we need PulseAudio to make and receive sounds with our USB soundcard:

sudo apt-get install pulseaudio -y