search for: different1

Displaying 5 results from an estimated 5 matches for "different1".

Did you mean: different
2015 Sep 30
5
Verifying backups
Kevin Korb <kmk at sanitarium.net>, I thank you greatly for your attempts to educate me, however as we get deeper into discussing more and more different rsync options, I feel that I am actually just getting more confused and frustrated. I've been sitting here, trying all sorts of different combinations and permutations of the various options we've discussed, and that you've
2015 Sep 30
2
Verifying backups
...hat you were doing >before and know that it will take a long time. I'm still not getting to where I need to be. Maybe you can explain what has gone wrong in this very simple example: % mkdir one two % echo hello > one/hello % ln one/hello two/hello % echo different0 > one/foo % echo different1 > two/foo % rsync -n -v --itemize-changes -checksum -a one two Here is the output generated by that last command: sending incremental file list cd+++++++++ one/ >f+++++++++ one/foo >f+++++++++ one/hello I fail to see how this helps me to know that in this case the files one/hello and t...
2015 Oct 01
0
Verifying backups
..., I suspect using rsync as a comparison tool is overkill. (It may even be overkill for making the backups in the first place.) Had you considered "diff -q -r"? $ mkdir one two $ echo hello > one/hello $ ln one/hello two/hello $ echo different0 > one/foo $ echo different1 > two/foo $ diff -q -r one two Files one/foo and two/foo differ or, if you prefer $ diff -q -r -s one two Files one/foo and two/foo differ Files one/hello and two/hello are identical (I'm using gnu diff; other variants might have different command options.)
2017 Aug 30
2
How many relays
Hello ! How many relays can I make with a single Icecast server ?, I can only run 2 relays at most:     <relay>         <server>111.222.111.222</server>         <port>8010</port>         <mount>/example1.ogg</mount>         <local-mount>/different1.ogg</local-mount>         <on-demand>0</on-demand>         <relay-shoutcast-metadata>0</relay-shoutcast-metadata>     </relay>     <relay>         <server>222.111.222.111</server>         <port>8020</port>         <mount>/exa...
2015 Oct 01
3
Verifying backups
...t using rsync > as a comparison tool is overkill. (It may even be overkill for > making the backups in the first place.) Had you considered "diff > -q -r"? > > $ mkdir one two $ echo hello > one/hello $ ln one/hello two/hello $ > echo different0 > one/foo $ echo different1 > two/foo $ diff -q -r > one two Files one/foo and two/foo differ > > or, if you prefer > > $ diff -q -r -s one two Files one/foo and two/foo differ Files > one/hello and two/hello are identical > > (I'm using gnu diff; other variants might have different command &...