Archive for März, 2021

Der Bundesverband der Deutschen Industrie (BDI) – hat die Politik aufgefordert die Standortfak­to­ren für Unternehmen im Gesundheitsbereich zu verbessern

Donnerstag, März 18th, 2021

Der Bundesverband der Deutschen Industrie (BDI) – Strategie für die industrielle Gesundheitswirtschaft

Corona Warn App Version 2.0 – fast fertig und kommt mit Check in via QR-Code

Donnerstag, März 18th, 2021

Donnerstag, März 18th, 2021

Mecklenburg-Vorpommerns Datenschutzbeauftragter Heinz Müller – Behörden sollen unverzüglich auf Microsoft verzichten

Donnerstag, März 18th, 2021

Amazon Web Services (AWS) Command Line Interface (AWS CLI) – how to configure and use AWS CLI to manage data with MinIO Server

Donnerstag, März 18th, 2021

Feel free to use this service for testing and development and replace with your own MinIO keys

C:\>aws configure
AWS Access Key ID [None]: < Access Key >
AWS Secret Access Key [None]:  < Secret Access Key >
Default region name [None]: ENTER
Default output format [None]: ENTER

Additionally enable AWS Signature Version ‚4‘ for MinIO server

C:\>aws configure set default.s3.signature_version s3v4

To list your buckets

C:\>aws –endpoint-url http://192.168.1.151:9000 s3 ls
2020-12-11 13:06:51 bucket-governance
2021-03-08 14:23:23 bucket-homeoffice
2020-12-12 11:02:20 bucket-versioning
2020-12-11 12:53:16 bucket-worm
C:\>aws –endpoint-url https://192.168.1.151:9000 s3 ls
[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed

AWS CLI uses SSL when communicating with AWS services for each SSL connection, the AWS CLI will verify SSL certificates this option overrides the default behavior of verifying SSL certificates

C:\>aws –no-verify-ssl –endpoint-url https://192.168.1.151:9000 s3 ls
2020-12-11 13:06:51 bucket-governance
2021-03-08 14:23:23 bucket-homeoffice
2020-12-12 11:02:20 bucket-versioning
2020-12-11 12:53:16 bucket-worm

To list contents inside bucket

C:\>aws –endpoint-url http://192.168.1.151:9000 s3 ls s3://bucket-homeoffice
2021-03-08 14:25:07 43949 S3Browser_01.jpg
2021-03-08 14:25:03 129627 S3Browser_02.jpg

To make a bucket

C:\>aws –endpoint-url http://192.168.1.151:9000 s3 mb s3://bucket-homeoffice-02
make_bucket: bucket-homeoffice-02

To add an object to a bucket

C:\>aws –endpoint-url http://192.168.1.151:9000 s3 cp c:\tmp\S3Browser_03.jpg s3://bucket-homeoffice-02
upload: tmp\S3Browser_03.jpg to s3://bucket-homeoffice-02/S3Browser_03.jpg

To delete an object from a bucket

C:\>aws –endpoint-url http://192.168.1.151:9000 s3 rm s3://bucket-homeoffice-02/S3Browser_03.jpg
delete: s3://bucket-homeoffice-02/S3Browser_03.jpg

To remove a bucket

C:\>aws –endpoint-url http://192.168.1.151:9000 s3 rb s3://bucket-homeoffice-02
remove_bucket: bucket-homeoffice-02

To sync (rsync-like) between local storage and s3

C:\>aws –endpoint-url http://192.168.1.151:9000 s3 mb s3://bucket-homeoffice-02
make_bucket: bucket-homeoffice-02
C:\>aws –endpoint-url http://192.168.1.151:9000 s3 sync c:\tmp s3://bucket-homeoffice-02
upload: tmp\S3Browser_03.jpg to s3://bucket-homeoffice-02/S3Browser_03.jpg
C:\>aws –endpoint-url http://192.168.1.151:9000 s3 sync c:\tmp s3://bucket-homeoffice-02
C:\>copy c:\tmp\S3Browser_03.jpg c:\tmp\S3Browser_04.jpg
1 Datei(en) kopiert.

Syncs directories and S3 prefixes recursively copies new and updated files from the source directory to the destination only creates folders in the destination if they contain one or more files

C:\>aws –endpoint-url http://192.168.1.151:9000 s3 sync c:\tmp s3://bucket-homeoffice-02
upload: tmp\S3Browser_04.jpg to s3://bucket-homeoffice-02/S3Browser_04.jpg

 

„Softwareverrottung“ verhindern – denn Programme können lange vor sich hin laufen ohne dass sich jemand für sie interessieren muss aber wird eine Codepflege systematisch vernachlässigt kann es zu Abstürzen kommen die niemand mehr beheben kann

Mittwoch, März 17th, 2021

Die EU-Kommission – beim Digitalen Impfnachweis setzt man auf QR-Codes und E-Signatur

Mittwoch, März 17th, 2021

Landkreis Erding (Stand 17 März 2021) – so verteilen sich die Coronavirus Patienten

Mittwoch, März 17th, 2021

Robert Koch-Institut (RKI) – laborbasierte Überwachung von SARS-CoV-2

Mittwoch, März 17th, 2021

Robert Koch-Institut (RKI) – Tabelle mit den altersspezifischen Anteilen als 7-Tage-Inzidenz pro 100.000 Einwohner nach Meldewoche

Robert Koch-Institut (RKI) – Tabelle mit den gemeldeten Impfungen bundesweit und nach Bundesland

Mittwoch, März 17th, 2021

Robert Koch-Institut (RKI) – Tabelle mit den gemeldeten Impfungen bundesweit und nach Bundesland

Datenstand 17.03.2021 08:00 Uhr

Weltgesundheitsorganisation (WHO) – empfiehlt vorerst weiter den Einsatz des Covid19 Impfstoffs von AstraZeneca

Mittwoch, März 17th, 2021

Mittwoch, März 17th, 2021

Veeam Backup & Replication v11 – brings balance to your objectives with a 4-in-1 solution combining storage snapshots backup replication and Continuous Data Protection under a single platform unlock options for SLAs, retention and service delivery to be more resilient and secure

Mittwoch, März 17th, 2021

St. Wolfgang – mit neuer Webseite

Mittwoch, März 17th, 2021

Kali Linux 2021.1 – how to install Google Chrome

Mittwoch, März 17th, 2021
# wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
# apt-get install ./google-chrome-stable_current_amd64.deb