Skip to content
Snippets Groups Projects
Commit f8308c70 authored by Bob Mottram's avatar Bob Mottram
Browse files

Help screen for rsync

parent db8497bd
No related branches found
No related tags found
No related merge requests found
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<style>
body {
margin: 0;
font-family: Arial;
background-color: white;
color: black;
}
* {
box-sizing: border-box;
}
a, u {
text-decoration: none;
color: #72a7cf;
font-weight: bold;
}
a:visited{
color: #72a7cf;
font-weight: bold;
}
#headerpic {
width: 60%;
height: auto;
margin-right : auto;
margin-left : auto;
min-width : 220px;
}
.header {
text-align: center;
padding: 32px;
}
.codetext {
width: 80%;
text-align: left;
font-size: 100%;
margin-left : 10%;
font-family: Courier;
}
.headertext {
text-align: center;
font-size: 120%;
font-weight: bold;
}
.subheadertext {
margin-left : 10%;
text-align: left;
font-size: 110%;
font-weight: bold;
}
.subheaderports {
margin-left : 10%;
text-align: left;
font-size: 110%;
font-weight: bold;
}
.helptext {
width: 80%;
text-align: left;
font-size: 100%;
margin-left : 10%;
}
.portstext {
width: 80%;
text-align: left;
font-size: 100%;
margin-left : 10%;
}
.row {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding: 0 4px;
}
.column {
-ms-flex: 25%;
flex: 15%;
max-width: 25%;
padding: 0 4px;
}
.column img {
margin-top: 8px;
vertical-align: middle;
}
@media screen and (max-width: 800px) {
.column {
-ms-flex: 50%;
flex: 50%;
max-width: 50%;
}
}
@media screen and (max-width: 200px) {
.column {
-ms-flex: 100%;
flex: 100%;
max-width: 100%;
}
}
</style>
<body>
<div class="header">
<a href="app_rsync.html" title="Go Back"><img id="headerpic" class="img-responsive" src="images/logo.png" alt="Go Back"></a>
</div>
<p class="headertext" translate="yes">rsync</p>
<p class="subheaderports" translate="yes">Ports</p>
<p class="portstext" translate="yes">Forward port 873 from your internet router:</p>
<p class="subheadertext" translate="yes">About</p>
<p class="helptext" translate="yes">For most purposes Syncthing is an easier file synchronization system, but rsync is still a reliable solution if you prefer to do things the more traditional way or if you just want to create a mirror from an existing rsync server.</p>
<p class="helptext" translate="yes">Rsync is unencrypted but can be used via an onion address for transport security. If you are using it via a cleartext domain then third parties will be able to see the content, but this may not matter if you are synchronizing already public content, such as GNU/Linux distro downloads.</p>
<p class="helptext">Avoid using this for private data, unless you are exclusively using rsync via the onion address.</p>
<p class="subheadertext" translate="yes">Local Sync</p>
<p class="helptext" translate="yes">To synchronize files on your local network, from your laptop or desktop machine:</p>
<p class="codetext" translate="no">
rsync -avmr --delete freedombone::files ~/your_directory/
rsync -avmr --delete ~/your_directory/ freedombone::files
</p>
<p class="helptext" translate="yes">If "freedombone" doesn't work then you can substitute the local IP address of your server.</p>
<p class="subheadertext" translate="yes">Creating a Mirror</p>
<p class="helptext" translate="yes">Select the Settings button then enter the domain and module name for the mirror. Thereafter synchronization will happen once per day.</p>
</body>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment