backup

pCloud

Written by  on Mai 5, 2026

Der Knopf „New App“ unter „My applications“ hat aktuell kein Funktion, sondern bringt nur die Meldung „Temporary unavailable, please contact support team.“
Neue App vom Support erstellen lassen. Das kann mit Rückfragen schon eine Woche auch dauern.
https://docs.pcloud.com/my_apps/

App Auswählen
Client ID xxxxxxxxxxx
Client secret xxxxxxxxxxxxxxxxxxxxxxxxxxxx

Damit einen Code erstellen:
https://my.pcloud.com/oauth2/authorize?client_id=xxxxxxxxxxx&response_type=code#
Allow
Your access code is:
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Hostname:
eapi.pcloud.com

Please enter this code into the application.
This code will expire after 600 seconds.

curl -X POST https://eapi.pcloud.com/oauth2_token -d "client_id=xxxxxxxxxxx" -d "client_secret=xxxxxxxxxxxxxxxxxxxxxxxxxxxx" -d "code=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
{
"result": 0,
"userid": #######,
"locationid": #,
"token_type": "bearer",
"access_token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}

access_token wird als bearer token verwendet:

curl -F 'file=@/backup/file1.txt' "https://eapi.pcloud.com/uploadfile?folderid=0&access_token=$access_token"

Windows Treiber Backup

Written by  on Oktober 23, 2023

Aus c’t 24/2023:

Admin Shell öffnen

mkdir d:\treiberbackup
pnputil.exe /export-driver * d:\treiberbackup

Dropbox Backup

Written by  on Oktober 30, 2021

Dropbox-Uploader herunterladen und ausführen. Der Anleitung folgen. D.h. einrichten via Dropbox Keys, App auf einen Ordner begrenzen.
Backup Script ergänzen:

#!/bin/bash
BACKUPDIR="/backup/"
DU="~/Dropbox-Uploader/dropbox_uploader.sh"
...
cd $BACKUPDIR
while read LINE; do $DU upload $LINE $LINE; done <<< $(ls -1)

Disaster Recovery Plan

Written by  on August 25, 2016

[The] disaster recovery plan should include everything required to get your PKI environment back up and operational, including (1) how and where backup files are stored, (2) how backups can be retrieved, (3) what hardware is needed to access them, (4) where to get the hardware if if the primary systems are destroyed, and (5) where your operating system software and application software is stored and how to reinstall all of the pieces.

Zitat des Tages

Written by  on August 23, 2016

What both disaster recovery and business continuity have in common is the need for testing and verification that the testing actually accomplishes the goals of DR or BC. A regular test plan must be performed and evaluated for both DR and BC. Without regular testing, you will never know that the data you thought were backed up can actually be restored or that your failover data center will come online when a disaster strikes. If you do not test your DR and BC plans, your PKI organization will fail when it is needed most. Backups can and do fail occasionally. If you do not test restoring your backups, you will never know if the data will be available in a crisis situation.

Jeff Stapleton & W. Clay Epstein; Security without Obscurity: A Guide to PKI Operations

Zitat des Tages

Written by  on Februar 7, 2011

Alle reden von Backup, aber jeder will eigentlich Restore!

Linux Magazin 3/11, S. 91

RAID is not backup

Written by  on Juni 21, 2010

RAID is not backup – es kann einfach nicht oft genug wiederholt werden: http://scalability.org/?p=2336

Never change a running system

Written by  on Januar 4, 2009

Hab heute ein Firmwareupgrade in mein Nokia E61i eingespielt. Es gibt ja den Hinweis, dass das Telefon dabei in den Auslieferzustand zurückgesetzt wird. Soweit so gut, vorher Synchronisieren – Update einspielen – wieder Synchronisieren und alles ist wieder da. Naja, fast alles. Scheinbar werden bestimmte Einträge nicht Sauber ins Outlook übernommen und so sind dann die neuen als Zweit- bzw. Dritttelefonnummern einfach verschwunden *grml*

Bewährtes Backupkonzept

Written by  on März 18, 2008

Phase 1: Der große Schock, eine Datei fehlt. Einfach so.

Phase 2: Die Suche nach der Datei, mit find, auf der Replikation der Daten und in anderen Ordnern. Fehlanzeige.

Phase 3: Dann schau ich halt auf der Backup DVD vom letzten Jahr. Doch auch da hat die Datei schon gefehlt.

Phase 4: Ich hab auch noch ein Backup von vor zwei Jahren, wo ich die Datei zum letzten mal tatsächlich benutzt hab.

Und tatsächlich, hier hat sich das mehrstufige Backupkonzept (zwei mal pro Jahr kommen die Eigenen Dateien auf DVD) und das Backup nach Änderungen auf Redundanten externen Speicher, bezahlt gemacht!