Difference between revisions of "User:Woozle/rsync"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
(New page: As used on Scooter, to copy Gonzo's mail and Akregator files over: cd /home/woozle/AppData/akregator rsync -Pav woozle@gonzo:AppData/akregator/* ./ ''also need to snag the one for ...)
 
(10/4)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
==2017-10-04==
 +
Copying one drive into the folder of another (massive 6TB) drive:
 +
rsync -Pav /media/woozle/BiTeraSaurus/ '/media/woozle/HexTera/backups/BiTeraSaurus'
 +
 +
==2017-02-02==
 +
Migrating web folders from cloud2 to new server:
 +
 +
cd /home/{{arg|domain-name}}/public_html
 +
[[rsync]] -rpt root@cloud2.hypertwins.net:/home/{{arg|domain-name}}/public_html/* ./
 +
[[chown]] -R {{arg|domain-user}}:{{arg|domain-user}} ./
 +
 +
==2011-11-02==
 +
Backing up a hard drive to a local drive that has a partial image already on it:
 +
 +
cd {{arg|[drive]/home}}
 +
[[rsync]] -cav /media/BiTeraSaurus/backups/machines/gonzo/2010\ 500GB\ drive/woozle/ woozle/
 +
 +
==2007-10-03==
 
As used on Scooter, to copy Gonzo's mail and Akregator files over:
 
As used on Scooter, to copy Gonzo's mail and Akregator files over:
  
 +
cd /home/woozle/AppData/kmail
 +
[[rsync]] -Pav woozle@gonzo:AppData/kmail/* ./
 
  cd /home/woozle/AppData/akregator
 
  cd /home/woozle/AppData/akregator
 
  [[rsync]] -Pav woozle@gonzo:AppData/akregator/* ./
 
  [[rsync]] -Pav woozle@gonzo:AppData/akregator/* ./
  
''also need to snag the one for synching kmail, when it's done''
+
This still doesn't import the settings for fetching/sending email; are those in [[kwallet]], maybe?

Latest revision as of 00:13, 5 October 2017

2017-10-04

Copying one drive into the folder of another (massive 6TB) drive:

rsync -Pav /media/woozle/BiTeraSaurus/ '/media/woozle/HexTera/backups/BiTeraSaurus' 

2017-02-02

Migrating web folders from cloud2 to new server:

cd /home/<domain-name>/public_html
rsync -rpt root@cloud2.hypertwins.net:/home/<domain-name>/public_html/* ./
chown -R <domain-user>:<domain-user> ./

2011-11-02

Backing up a hard drive to a local drive that has a partial image already on it:

cd <[drive]/home>
rsync -cav /media/BiTeraSaurus/backups/machines/gonzo/2010\ 500GB\ drive/woozle/ woozle/

2007-10-03

As used on Scooter, to copy Gonzo's mail and Akregator files over:

cd /home/woozle/AppData/kmail
rsync -Pav woozle@gonzo:AppData/kmail/* ./
cd /home/woozle/AppData/akregator
rsync -Pav woozle@gonzo:AppData/akregator/* ./

This still doesn't import the settings for fetching/sending email; are those in kwallet, maybe?