From 7e74a039122aef922d1619e636de3497ffcf7c60 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Sat, 25 Jun 2022 10:56:36 -0400 Subject: convert to hugo --- rsync.html | 55 ------------------------------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 rsync.html (limited to 'rsync.html') diff --git a/rsync.html b/rsync.html deleted file mode 100644 index 965ddbc..0000000 --- a/rsync.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - Rsync: Upload and Sync Files and Websites – LandChad.net - - - - - - - - -

Rsync: Upload and Sync Files and Websites

- -
-

rsync is a simple way to copy files and folders between your local computer and server.

-

It not only makes file-transfer easy, but it allows you to build and maintain your website offline, then easily upload it to the proper directory on your server so you don't need to constantly be logged into your server to modify your site.

-

Installing rsync

-

Run the following on your server and on your local machine.

-
apt install rsync
-

Uploading files with rsync

-

From your local machine you can upload files to your server like this:

-
rsync -rtvzP /path/to/file root@example.org:/path/on/the/server
-

You will be prompted for the root password and then uploading will commence.

-

If you omit root@, rsync will not attempt to log in as root, but whatever your local username is.

-

Options to rsync

-

In this command, we give several options to rsync:

- -

Avoid using the commonly used -a option when uploading. It can transfers your local machine's user and group permissions to your server, which might cause breakage.

-

Scriptability

-

It's a good idea to build your website offline, then make an rsync script or bash alias like the one above to upload the edited files when you have made updates.

-

Password-less authentication

-

To avoid having to manually input your password each upload, you can set up SSH keys to securely idenitify yourself and computer as a trusted.

-

Picky trailing slashes

-

rsync is very particular about trailing slashes. This is useful, but can be confusing to some new users. Suppose we run the following wanting to mirror our offline copy of our website in the directory we use on our server (/var/www/websitefiles/):

-
rsync -rtvzP ~/websitefiles/ root@example.org:/var/www/websitefiles/
-

This will not actually do quite what we want. It will take our local websitefiles directory and put it inside websitefiles on the remote machine, ending up with: /var/www/websitefiles/websitefiles.

-

Instead, remove the trailing slash from the remote server location:

-
rsync -rtvzP ~/websitefiles/ root@example.org:/var/www/websitefiles
-

websitefiles/ has been replaced with websitefiles, and this will do what we want.

-

Downloading files with rsync

-

You may just as easily download files and directories from your server with rsync:

-
rsync -rtvzP root@example.org:/path/to/file /path/to/file
-

Contribution

-Luke -
- - - -- cgit v1.2.3