Hosting a Kicksecure Mirror
rsync from kicksecure.com
Copy or share this direct link!
Click = Copy
Copied to clipboard!
https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#rsync_from_kicksecure.com
Click below ↴ = Copy to Clipboard
Click = Copy
Copied to clipboard!
[[Hosting_a_Mirror#rsync_from_kicksecure.com|rsync from kicksecure.com]]
Copy as Wikitext
Click = Copy
Copied to clipboard!
[rsync from kicksecure.com](https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#rsync_from_kicksecure.com)
for Discourse, reddit, GitHub
Click = Copy
Copied to clipboard!
[rsync from kicksecure.com](https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#rsync_from_kicksecure.com)
Copy as Markdown
Click = Copy
Copied to clipboard!
[url=https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#rsync_from_kicksecure.com]rsync from kicksecure.com[/url]
Copy as phpBB
Click below ↴ = Open social URL with share data
We don't use embedded scripts
This share button is completely self-hosted by this webserver. No scripts from any of the social networks are embedded on this webserver. See also
Social Share Button.
- Available over unencrypted clearnet port
873
. (Default port by unencryptedrsync
.) - Available over encrypted clearnet port
874
. (Default port byopenssl-rsync
.) - Available over encrypted clearnet port
1874
. (Default port by Debian ftpsync package,rsync-ssl-tunnel
script.) - Available over encrypted onion, port
873
. (rsync
default port.)
Security advice:
- Avoid unencrypted rsync.
- Encrypted rsync is better.
- rsync over onion is best.
Commands below use for testing:
--dry-run
and--quiet
.
Therefore:
- Initially you might wish to drop
--quiet
. - Later for production you might wish to drop
--dry-run
and change the destination folder from~/kicksecure
to a folder of your choice such as/var/www/kicksecure
.
unencrypted rsync
Copy or share this direct link!
Click = Copy
Copied to clipboard!
https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#unencrypted_rsync
Click below ↴ = Copy to Clipboard
Click = Copy
Copied to clipboard!
[[Hosting_a_Mirror#unencrypted_rsync|unencrypted rsync]]
Copy as Wikitext
Click = Copy
Copied to clipboard!
[unencrypted rsync](https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#unencrypted_rsync)
for Discourse, reddit, GitHub
Click = Copy
Copied to clipboard!
[unencrypted rsync](https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#unencrypted_rsync)
Copy as Markdown
Click = Copy
Copied to clipboard!
[url=https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#unencrypted_rsync]unencrypted rsync[/url]
Copy as phpBB
Click below ↴ = Open social URL with share data
We don't use embedded scripts
This share button is completely self-hosted by this webserver. No scripts from any of the social networks are embedded on this webserver. See also
Social Share Button.
Preparation.
Click = Copy Copied to clipboard! sudo apt install rsync
rsync
uses by default port 873
.
Click = Copy Copied to clipboard! rsync --dry-run --recursive --delete --times --perms rsync://kicksecure.com/kicksecure ~/kicksecure
encrypted rsync over TLS
Copy or share this direct link!
Click = Copy
Copied to clipboard!
https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#encrypted_rsync_over_TLS
Click below ↴ = Copy to Clipboard
Click = Copy
Copied to clipboard!
[[Hosting_a_Mirror#encrypted_rsync_over_TLS|encrypted rsync over TLS]]
Copy as Wikitext
Click = Copy
Copied to clipboard!
[encrypted rsync over TLS](https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#encrypted_rsync_over_TLS)
for Discourse, reddit, GitHub
Click = Copy
Copied to clipboard!
[encrypted rsync over TLS](https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#encrypted_rsync_over_TLS)
Copy as Markdown
Click = Copy
Copied to clipboard!
[url=https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#encrypted_rsync_over_TLS]encrypted rsync over TLS[/url]
Copy as phpBB
Click below ↴ = Open social URL with share data
We don't use embedded scripts
This share button is completely self-hosted by this webserver. No scripts from any of the social networks are embedded on this webserver. See also
Social Share Button.
openssl-rsync port 874
Copy or share this direct link!
Click = Copy
Copied to clipboard!
https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#openssl-rsync_port_874
Click below ↴ = Copy to Clipboard
Click = Copy
Copied to clipboard!
[[Hosting_a_Mirror#openssl-rsync_port_874|openssl-rsync port 874]]
Copy as Wikitext
Click = Copy
Copied to clipboard!
[openssl-rsync port 874](https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#openssl-rsync_port_874)
for Discourse, reddit, GitHub
Click = Copy
Copied to clipboard!
[openssl-rsync port 874](https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#openssl-rsync_port_874)
Copy as Markdown
Click = Copy
Copied to clipboard!
[url=https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#openssl-rsync_port_874]openssl-rsync port 874[/url]
Copy as phpBB
Click below ↴ = Open social URL with share data
We don't use embedded scripts
This share button is completely self-hosted by this webserver. No scripts from any of the social networks are embedded on this webserver. See also
Social Share Button.
Preparation.
Click = Copy Copied to clipboard! sudo apt install rsync
Use following command. Or better, use a more secure way to download. [1]
Click = Copy Copied to clipboard! wget https://download.samba.org/pub/rsync/openssl-rsync
Make openssl-rsync
executable.
Click = Copy Copied to clipboard! chmod +x openssl-rsync
openssl-rsync
uses by default port 874
.
Click = Copy Copied to clipboard! rsync --rsh="./openssl-rsync" --dry-run --recursive --delete --times --perms rsync://kicksecure.com/kicksecure ~/kicksecure
rsync-ssl-tunnel using socat port 874
Copy or share this direct link!
Click = Copy
Copied to clipboard!
https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#rsync-ssl-tunnel_using_socat_port_874
Click below ↴ = Copy to Clipboard
Click = Copy
Copied to clipboard!
[[Hosting_a_Mirror#rsync-ssl-tunnel_using_socat_port_874|rsync-ssl-tunnel using socat port 874]]
Copy as Wikitext
Click = Copy
Copied to clipboard!
[rsync-ssl-tunnel using socat port 874](https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#rsync-ssl-tunnel_using_socat_port_874)
for Discourse, reddit, GitHub
Click = Copy
Copied to clipboard!
[rsync-ssl-tunnel using socat port 874](https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#rsync-ssl-tunnel_using_socat_port_874)
Copy as Markdown
Click = Copy
Copied to clipboard!
[url=https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#rsync-ssl-tunnel_using_socat_port_874]rsync-ssl-tunnel using socat port 874[/url]
Copy as phpBB
Click below ↴ = Open social URL with share data
We don't use embedded scripts
This share button is completely self-hosted by this webserver. No scripts from any of the social networks are embedded on this webserver. See also
Social Share Button.
Preparation.
Click = Copy Copied to clipboard! sudo apt install socat ftpsync rsync
Setting port 874
with command below.
Click = Copy Copied to clipboard! RSYNC_SSL_PORT=874 RSYNC_SSL_METHOD=socat rsync --rsh=rsync-ssl-tunnel --dry-run --recursive --delete --times --perms rsync://kicksecure.com/kicksecure ~/kicksecure
rsync-ssl-tunnel using stunnel port 874
Copy or share this direct link!
Click = Copy
Copied to clipboard!
https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#rsync-ssl-tunnel_using_stunnel_port_874
Click below ↴ = Copy to Clipboard
Click = Copy
Copied to clipboard!
[[Hosting_a_Mirror#rsync-ssl-tunnel_using_stunnel_port_874|rsync-ssl-tunnel using stunnel port 874]]
Copy as Wikitext
Click = Copy
Copied to clipboard!
[rsync-ssl-tunnel using stunnel port 874](https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#rsync-ssl-tunnel_using_stunnel_port_874)
for Discourse, reddit, GitHub
Click = Copy
Copied to clipboard!
[rsync-ssl-tunnel using stunnel port 874](https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#rsync-ssl-tunnel_using_stunnel_port_874)
Copy as Markdown
Click = Copy
Copied to clipboard!
[url=https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#rsync-ssl-tunnel_using_stunnel_port_874]rsync-ssl-tunnel using stunnel port 874[/url]
Copy as phpBB
Click below ↴ = Open social URL with share data
We don't use embedded scripts
This share button is completely self-hosted by this webserver. No scripts from any of the social networks are embedded on this webserver. See also
Social Share Button.
Preparation.
Click = Copy Copied to clipboard! sudo apt install stunnel ftpsync rsync
Setting port 874
with command below.
Click = Copy Copied to clipboard! RSYNC_SSL_PORT=874 rsync --rsh=rsync-ssl-tunnel --dry-run --recursive --delete --times --perms rsync://kicksecure.com/kicksecure ~/kicksecure
rsync-ssl-tunnel using stunnel port 1874
Copy or share this direct link!
Click = Copy
Copied to clipboard!
https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#rsync-ssl-tunnel_using_stunnel_port_1874
Click below ↴ = Copy to Clipboard
Click = Copy
Copied to clipboard!
[[Hosting_a_Mirror#rsync-ssl-tunnel_using_stunnel_port_1874|rsync-ssl-tunnel using stunnel port 1874]]
Copy as Wikitext
Click = Copy
Copied to clipboard!
[rsync-ssl-tunnel using stunnel port 1874](https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#rsync-ssl-tunnel_using_stunnel_port_1874)
for Discourse, reddit, GitHub
Click = Copy
Copied to clipboard!
[rsync-ssl-tunnel using stunnel port 1874](https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#rsync-ssl-tunnel_using_stunnel_port_1874)
Copy as Markdown
Click = Copy
Copied to clipboard!
[url=https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#rsync-ssl-tunnel_using_stunnel_port_1874]rsync-ssl-tunnel using stunnel port 1874[/url]
Copy as phpBB
Click below ↴ = Open social URL with share data
We don't use embedded scripts
This share button is completely self-hosted by this webserver. No scripts from any of the social networks are embedded on this webserver. See also
Social Share Button.
Preparation.
Click = Copy Copied to clipboard! sudo apt install stunnel ftpsync rsync
rsync-ssl-tunnel
uses by default port 1874
.
Click = Copy Copied to clipboard! rsync --rsh=rsync-ssl-tunnel --dry-run --recursive --delete --times --perms rsync://kicksecure.com/kicksecure ~/kicksecure
encrypted rsync over onion
Copy or share this direct link!
Click = Copy
Copied to clipboard!
https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#encrypted_rsync_over_onion
Click below ↴ = Copy to Clipboard
Click = Copy
Copied to clipboard!
[[Hosting_a_Mirror#encrypted_rsync_over_onion|encrypted rsync over onion]]
Copy as Wikitext
Click = Copy
Copied to clipboard!
[encrypted rsync over onion](https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#encrypted_rsync_over_onion)
for Discourse, reddit, GitHub
Click = Copy
Copied to clipboard!
[encrypted rsync over onion](https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#encrypted_rsync_over_onion)
Copy as Markdown
Click = Copy
Copied to clipboard!
[url=https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#encrypted_rsync_over_onion]encrypted rsync over onion[/url]
Copy as phpBB
Click below ↴ = Open social URL with share data
We don't use embedded scripts
This share button is completely self-hosted by this webserver. No scripts from any of the social networks are embedded on this webserver. See also
Social Share Button.
Preparation.
Click = Copy Copied to clipboard! sudo apt install torsocks rsync
rsync over onion from Kicksecure onion.
Click = Copy Copied to clipboard! torsocks rsync --dry-run --recursive --delete --times --perms "rsync://w5j6stm77zs6652pgsij4awcjeel3eco7kvipheu6mtr623eyyehj4yd.onion/kicksecure" ~/kicksecure
Current Mirrors
Copy or share this direct link!
Click = Copy
Copied to clipboard!
https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#Current_Mirrors
Click below ↴ = Copy to Clipboard
Click = Copy
Copied to clipboard!
[[Hosting_a_Mirror#Current_Mirrors|Current Mirrors]]
Copy as Wikitext
Click = Copy
Copied to clipboard!
[Current Mirrors](https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#Current_Mirrors)
for Discourse, reddit, GitHub
Click = Copy
Copied to clipboard!
[Current Mirrors](https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#Current_Mirrors)
Copy as Markdown
Click = Copy
Copied to clipboard!
[url=https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#Current_Mirrors]Current Mirrors[/url]
Copy as phpBB
Click below ↴ = Open social URL with share data
We don't use embedded scripts
This share button is completely self-hosted by this webserver. No scripts from any of the social networks are embedded on this webserver. See also
Social Share Button.
- https://mirror.koljasagorski.de/whonix
[Whonix permitted use exclusivity] [no traffic limit for now] [permitted to hotlink]
- https://mirrors.dotsrc.org/whonix/
[Whonix permitted use exclusivity] [no traffic limit for now] [permitted to hotlink]
- https://quantum-mirror.hu/mirrors/pub/whonix
[Whonix permitted use exclusivity] [no traffic limit for now] [permitted to hotlink] [2]
- https://archive.org/download/Whonix/
- not uploaded yet - can upload somehow using rsync or download to archive.org using rsync?
- https://ftp.icm.edu.pl/pub/Linux/dist/whonix/
[only updated daily for now] [Whonix could ask to update more frequently] [3]
- https://mirrors.gigenet.com/whonix/
- https://mirror.krmir.org/whonix/
Mirror Speed Test
Copy or share this direct link!
Click = Copy
Copied to clipboard!
https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#Mirror_Speed_Test
Click below ↴ = Copy to Clipboard
Click = Copy
Copied to clipboard!
[[Hosting_a_Mirror#Mirror_Speed_Test|Mirror Speed Test]]
Copy as Wikitext
Click = Copy
Copied to clipboard!
[Mirror Speed Test](https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#Mirror_Speed_Test)
for Discourse, reddit, GitHub
Click = Copy
Copied to clipboard!
[Mirror Speed Test](https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#Mirror_Speed_Test)
Copy as Markdown
Click = Copy
Copied to clipboard!
[url=https://www.kicksecure.com/wiki/Hosting_a_Mirror?direction=next&oldid=54571#Mirror_Speed_Test]Mirror Speed Test[/url]
Copy as phpBB
Click below ↴ = Open social URL with share data
We don't use embedded scripts
This share button is completely self-hosted by this webserver. No scripts from any of the social networks are embedded on this webserver. See also
Social Share Button.
Whonix-XFCE-15.0.0.9.4.ova 1.56G
21 April 2020
- whonix.org 44 MB/s in 39s
- dotsrc 138 MB/s in in 12s
03 Mai 2020
- dotsrc 103 MB/s in in 16s [acting as primary mirror since]
- ↑
please add openssl-rsync script for use of encrypted rsync over TLS
- ↑
https://quantum-mirror.hu/web/status_en.html
quantum-mirror.hu (DNS round robin) super.quantum-mirror.hu 1000/350 Mb/s 78.131.56.189 nova.quantum-mirror.hu 1000/350 Mb/s 195.38.126.147 IPv4 only no FTP supports rsync
- ↑
- ftp://ftp.icm.edu.pl/pub/Linux/dist/whonix/
- rsync://ftp.icm.edu.pl/pub/Linux/dist/whonix/
- gopher://ftp.icm.edu.pl/1/pub/Linux/dist/whonix/


Copy as Wikitext

for Discourse, reddit, GitHub

Copy as Markdown

Copy as phpBB Click below ↴ = Open social URL with share data











We believe security software like Kicksecure needs to remain Open Source and independent. Would you help sustain and grow the project? Learn more about our 12 year success story and maybe DONATE!