Archive for the ‘Administration’ Category
Universitätsklinikum Hamburg-Eppendorf (UKE) – rechnet auch für dieses Jahr mit einem hohen Millionenverlust und zwar in Höhe von rund € 70 Millionen
Donnerstag, Oktober 2nd, 2025Raspberry Pi OS Debian version 3 (trixie) Kernel version 6.13 – release date October 1st 2025
Donnerstag, Oktober 2nd, 2025Anstrengender Alltag als Wiesnkellner aufm Oktoberfest – was bekommt man dafür € 12.500,-
Donnerstag, Oktober 2nd, 2025Press Secretary Karoline Leavitt – Briefs Members of the Media October 1 2025
Donnerstag, Oktober 2nd, 2025FRITZ!Tech – Probleme von unterwegs auf eine FRITZ!Box zugreifen zu können
Donnerstag, Oktober 2nd, 2025Tour de France – eine unfassbare Abfahrt bei Etappe am Col du Galibier
Donnerstag, Oktober 2nd, 2025Greta Thunberg – festgenommen denn Israels Marine fängt Schiffe der Gaza-Flotilla ab
Donnerstag, Oktober 2nd, 2025Harry G – Wiesn Types „Ochsenbraterei“
Donnerstag, Oktober 2nd, 2025Mount Everest – Polish athlete Andrzej Bargiel is the first person to climb up and ski down Mount Everest without bottled oxygen
Donnerstag, Oktober 2nd, 2025DRK Krankenhaus Biedenkopf – neuer Träger neuer Name und nun auch ein neuer Geschäftsführer für das frühere DRK Krankenhaus Biedenkopf mit Konstantin von Heydwolff an der Spitze als zukünftige ‚Hinterland Klinik‘ bleibt sie der Region erhalten
Donnerstag, Oktober 2nd, 2025Konstantin von Heydwolff wird Geschäftsführer der Hinterland Klinik
Donnerstag, Oktober 2nd, 2025Docusnap 14 – HPE Garantie Check einfach erklärt
Donnerstag, Oktober 2nd, 2025BR24 – Betrug mit täuschend echten Rechnungen und falscher IBAN
Donnerstag, Oktober 2nd, 2025Official White House YouTube channel – Democrats Shut Down Government Over Free Healthcare for Illegals
Donnerstag, Oktober 2nd, 2025President Donald J. Trump Is Using Government Websites to Blame Democrats for the Shutdown
Podman & MinIO S3 Storage – mit Proxmox Virtual Environment (VE) 9.0.10 Container (LXC) Ubuntu 25.04 installieren für eine Backup Strategie ‚ProtectIT‘
Mittwoch, Oktober 1st, 2025root@pve-pdman-01:~# apt-get install podman -y
root@pve-pdman-01:~# podman -v
podman version 5.4.1
root@pve-pdman-01:~# podman info
root@pve-pdman-01:~# mkdir -p ~/minio/data
root@pve-pdman-01:~# podman run \
-p 9000:9000 \
-p 9001:9001 \
–name minio \
-v ~/minio/data:/data \
-e „MINIO_ROOT_USER=<user>“ \
-e „MINIO_ROOT_PASSWORD=<password>“ \
quay.io/minio/minio server /data –console-address „:9001“
root@pve-pdman-01:~# podman images
REPOSITORY TAG IMAGE ID CREATED SIZE
quay.io/minio/minio latest 69b2ec208575 2 weeks ago 176 MB
root@pve-pdman-01:~# podman ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
86234ac671bb quay.io/minio/minio:latest server /data –co… About an hour ago Up 9 minutes 0.0.0.0:9000-9001->9000-9001/tcp minio
http://<IP@>:9001

root@pve-pdman-01:~# podman auto-update –dry-run
root@pve-pdman-01:~#
root@pve-pdman-01:~# curl https://dl.min.io/client/mc/release/linux-amd64/mc \
–create-dirs \
-o $HOME/minio-binaries/mc
root@pve-pdman-01:~# chmod +x $HOME/minio-binaries/mc
root@pve-pdman-01:~# export PATH=$PATH:$HOME/minio-binaries/
root@pve-pdman-01:~# mc –help
root@pve-pdman-01:~# mc alias set myminio http://192.168.1.177:9000 <user> <password>
Added `myminio` successfully.
root@pve-pdman-01:~#
root@pve-pdman-01:~# mc mb –with-lock myminio/worm-with-versioning-and-retention–day
Bucket created successfully `myminio/worm-with-versioning-and-retention–day`.
root@pve-pdman-01:~#
root@pve-pdman-01:~# mc ilm add –expiry-days 15 myminio/worm-with-versioning-and-retention–day
Lifecycle configuration rule added with ID `d3dsfjcukqlgnr42cv90` to myminio/worm-with-versioning-and-retention–day.
root@pve-pdman-01:~#
root@pve-pdman-01:~# mc ilm rule rm –id „d3dsfjcukqlgnr42cv90“ myminio/worm-with-versioning-and-retention–day
Rule ID `d3dsfjcukqlgnr42cv90` from target myminio/worm-with-versioning-and-retention–day removed.
root@pve-pdman-01:~#
root@pve-pdman-01:~# mc ilm add –expiry-days 12 myminio/worm-with-versioning-and-retention–day
Lifecycle configuration rule added with ID `d3f7j1cukqlhid0kvulg` to myminio/worm-with-versioning-and-retention–day.
root@pve-pdman-01:~#
root@pve-pdman-01:~# mc ilm add –insecure –noncurrentversion-expiration-days 3 myminio/worm-with-versioning-and-retention–day
Lifecycle configuration rule added with ID `d3dsgocukqlgnqqqgmi0` to myminio/worm-with-versioning-and-retention–day.
root@pve-pdman-01:~#
root@pve-pdman-01:~# mc ilm export myminio/worm-with-versioning-and-retention–day
{
„Rules“: [
{
„ID“: „d3dsgocukqlgnqqqgmi0“,
„NoncurrentVersionExpiration“: {
„NoncurrentDays“: 3
},
„Status“: „Enabled“
},
{
„Expiration“: {
„Days“: 12
},
„ID“: „d3f7j1cukqlhid0kvulg“,
„Status“: „Enabled“
}
]
}
root@pve-pdman-01:~#
root@pve-pdman-01:~# mc ilm add –expiry-days 96 myminio/worm-with-versioning-and-retention–week
root@pve-pdman-01:~# mc ilm add –noncurrentversion-expiration-days 3 myminio/worm-with-versioning-and-retention–week
root@pve-pdman-01:~# mc ilm add –expiry-days 192 myminio/worm-with-versioning-and-retention–month
root@pve-pdman-01:~# mc ilm add –noncurrentversion-expiration-days 3 myminio/worm-with-versioning-and-retention–month
root@pve-pdman-01:~# mc ilm add –expiry-days 484 myminio/worm-with-versioning-and-retention–year
root@pve-pdman-01:~# mc ilm add –noncurrentversion-expiration-days 3 myminio/worm-with-versioning-and-retention–year
root@pve-pdman-01:~#
root@pve-pdman-01:~# mc retention set –default compliance 7d myminio/worm-with-versioning-and-retention–day
Object locking ‚COMPLIANCE‘ is configured for 7DAYS.
root@pve-pdman-01:~# mc retention info myminio/worm-with-versioning-and-retention–day
Object locking ‚COMPLIANCE‘ is configured for 7DAYS.
root@pve-pdman-01:~# mc –json retention info myminio/worm-with-versioning-and-retention–day
{
„op“: „info“,
„enabled“: „Enabled“,
„mode“: „COMPLIANCE“,
„validity“: „7DAYS“,
„status“: „success“
}
root@pve-pdman-01:~#
The MinIO ‚mc mirror‘ command synchronizes content to MinIO deployment similar to the ‚rsync‘ utility