[opc@test-ipv6-almalinux ~]$ ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ podman run --rm -ti registry.fedoraproject.org/fedora-minimal:41 | |
bash-5.2# dnf install -y asciidoc bash binutils bzip2 flex git-core gcc-c++ gcc util-linux gawk gzip help2man intltool elfutils-libelf-devel zlib-devel make ncurses-devel openssl-devel patch perl-ExtUtils-MakeMaker perl-Thread-Queue swig unzip wget gettext libxslt zlib-devel zlib-static which rsync perl-FindBin perl-IPC-Cmd tar perl-Time-Piece | |
bash-5.2# dnf install -y tar zstd | |
bash-5.2# curl -O https://downloads.openwrt.org/releases/24.10.0-rc5/targets/x86/64/openwrt-sdk-24.10.0-rc5-x86-64_gcc-13.3.0_musl.Linux-x86_64.tar.zst | |
bash-5.2# tar xvaf openwrt-sdk-24.10.0-rc5-x86-64_gcc-13.3.0_musl.Linux-x86_64.tar.zst | |
bash-5.2# cd openwrt-sdk-24.10.0-rc5-x86-64_gcc-13.3.0_musl.Linux-x86_64 | |
bash-5.2# vi feeds.conf.default |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Basic setup | |
text | |
network --bootproto=dhcp --device=link --activate | |
# Basic partitioning | |
clearpart --all --initlabel --disklabel=gpt | |
reqpart --add-boot | |
part / --grow --fstype xfs | |
# Here's where we reference the container image to install - notice the kickstart | |
# has no `%packages` section! What's being installed here is a container image. |
The Kind project project provides a tool to start a Kubernetes cluster running within containers in Docker / Moby engine or podman.
When a Kubernetes cluster is needed for testing, it is then quite natural to want to run in a containerized manner itself, either locally or
On MicroShift 4.13 installed on RHEL 9.2 using Installing and configuring MicroShift clusters product documentation, OpenShift Console can be enabled on port :9000 by fetching the files from this gist and then running
# oc create serviceaccount -n kube-system openshift-console
# bash openshift-console.eval | oc create -f -
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Set bugzilla favicon | |
// @namespace Adelton Violentmonkey Scripts | |
// @include https://bugzilla.redhat.com/* | |
// @grant none | |
// ==/UserScript== | |
var link = document.querySelector("link[rel = 'shortcut icon']"); | |
if (!link) { | |
link = document.createElement('link'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The handling of the request produces output, sends it to client but then never gets to logging the request in the access_log. | |
python3-3.10.2-1.fc35.x86_64 | |
apr-1.7.0-14.fc35.x86_64 | |
httpd-2.4.52-1.fc35.x86_64 | |
python3-mod_wsgi-4.9.0-1.fc35.x86_64 | |
(gdb) r -X | |
The program being debugged has been started already. | |
Start it from the beginning? (y or n) y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Tang: https://github.com/openwrt/packages/pull/5447 | |
jansson: https://github.com/openwrt/packages/pull/4289 | |
libhttp-parser: https://github.com/openwrt/packages/pull/5446 | |
jose: https://github.com/openwrt/packages/pull/4334 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Google Calendar color undecided items | |
// @namespace adelton | |
// @description New 2018 Google Calendar, color undecided items to make clearer which calendar they are in | |
// @include https://www.google.com/calendar/* | |
// @include https://calendar.google.com/* | |
// @version 1.1 | |
// @grant none | |
// ==/UserScript== | |
document.addEventListener('DOMNodeInserted', function() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Google Calendar color tasks, not dots | |
// @namespace adelton | |
// @description New 2018 Google Calendar, color the tasks instead of the colored dots | |
// @include https://www.google.com/calendar/* | |
// @include https://calendar.google.com/* | |
// @version 1.1 | |
// @grant none | |
// ==/UserScript== | |
document.addEventListener('DOMNodeInserted', function() { |
NewerOlder