Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
(2) |
Apr
(2) |
May
(7) |
Jun
(5) |
Jul
(12) |
Aug
(29) |
Sep
(6) |
Oct
(5) |
Nov
(18) |
Dec
(4) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(13) |
Feb
(3) |
Mar
|
Apr
(5) |
May
(6) |
Jun
(8) |
Jul
|
Aug
(1) |
Sep
(3) |
Oct
(2) |
Nov
(23) |
Dec
(2) |
2007 |
Jan
(47) |
Feb
(4) |
Mar
(4) |
Apr
|
May
|
Jun
(8) |
Jul
(2) |
Aug
|
Sep
(6) |
Oct
|
Nov
(24) |
Dec
(17) |
2008 |
Jan
(4) |
Feb
(22) |
Mar
(25) |
Apr
(19) |
May
(76) |
Jun
(34) |
Jul
(18) |
Aug
(2) |
Sep
|
Oct
(4) |
Nov
|
Dec
(3) |
2009 |
Jan
|
Feb
(13) |
Mar
|
Apr
(3) |
May
|
Jun
|
Jul
(9) |
Aug
(7) |
Sep
(2) |
Oct
(3) |
Nov
|
Dec
(4) |
2010 |
Jan
|
Feb
(4) |
Mar
|
Apr
(3) |
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(7) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(3) |
Dec
(1) |
2014 |
Jan
|
Feb
|
Mar
(14) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2015 |
Jan
|
Feb
(6) |
Mar
(2) |
Apr
|
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
(4) |
Oct
(1) |
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(5) |
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(5) |
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
(1) |
19
|
20
|
21
|
22
|
23
(1) |
24
|
25
|
26
|
27
|
28
|
29
|
30
|
From: Shachar Shemesh <rsyncrypto@sh...> - 2005-04-23 12:30:37
|
Hi all, I just committed a fix to a problem that prevented rsyncrypto from working on OpenBSD. Apparently, either Linux or BSD has a somewhat strange behavior where mmap is used with PROT_WRITE but not PROT_READ. On BSD you can't do anything with the memory in question, while on Linux you can. This is a first step toward porting rsyncrypto to Windows, making it totally multi-platform. Shachar -- Shachar Shemesh Lingnu Open Source Consulting ltd. Have you backed up today's work? http://www.lingnu.com/backup.html |
From: Shachar Shemesh <rsyncrypto@sh...> - 2005-04-18 06:46:56
|
DavidV wrote: >Message body follows: > >Shachar, > >This project is very interesting. >I think you are the only programmer working on a crypto >program compatible with rsync and I want to congratulate you >for that. > > Thanks. After having written it already it turns out there were other attempts as well. Both other technologies that I have seen seem to require you to keep around your entire previously synced copy, however, and so seem to me much less practical than rsyncrypto, which only requires you to keep around a ~64 bytes state file per encrypted file. As I have not actually worked with any of them, however, I cannot tell you that for sure. I'm ccing the mailing list in case someone else has any better experience to share. >But I have an important question for you : >Is it possible to run it on windows ? > > Possible, yes, I guess so. >If so, how ? > > You need to port it. Porting rsyncrypto to Windows IS on my "to do" list, so I will get around to it eventually, but I really can't tell you when that will happen. There are two major hurdles to clear. One is that only Debian GNU/{Linux, Hurd, FreeBSD} currently ship gzip with the rsyncable patch by default, which means that on any other platform you will have to compile gzip as well as rsyncrypto in order to use it. The idea is to replace gzip with zlib, and keep a local copy already patched, to be compiled along with rsyncrypto. That is the first hurdle to pass. The second hurdle to pass is to switch rsyncrypto to using standard IO, or at least use wrappers. This is not a big problem, as it sort of uses wrappers already. It's just something I'll have to do sometimes soon. There is also the question of Unicode, but that's more of a rsync issue than a rsyncrypto issue. >Thank you very much in advance for taking a few minutes of >your precious time to reply. > > No problem, but please direct all future requests to the mailing list. >DavidV. > > Shachar -- Shachar Shemesh Lingnu Open Source Consulting ltd. Have you backed up today's work? http://www.lingnu.com/backup.html |