Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
docs:mac:builds:unison [2010/12/22 21:33] – billh | docs:mac:builds:unison [2012/01/07 14:15] (current) – billh | ||
---|---|---|---|
Line 10: | Line 10: | ||
===== running unison after you already copied files ===== | ===== running unison after you already copied files ===== | ||
+ | :!: %%Notice the // double slashes on both sides of the ssh hostname%% | ||
+ | |||
By the time you copy files and start to run a unison command you realize that it doesn' | By the time you copy files and start to run a unison command you realize that it doesn' | ||
< | < | ||
Line 18: | Line 20: | ||
===== typical example (after initial sync) ===== | ===== typical example (after initial sync) ===== | ||
+ | :!: %%Notice the // double slashes on both sides of the ssh hostname%% | ||
+ | |||
**sync.sh** | **sync.sh** | ||
<code sh> | <code sh> | ||
#!/bin/bash | #!/bin/bash | ||
- | unison /local/path ssh:// | + | unison /local/path ssh:// |
+ | </ | ||
+ | |||
+ | ===== command not found errors using ssh ===== | ||
+ | When using ssh with unison, you are creating a non-interactive shell. | ||
+ | < | ||
+ | # the error... | ||
+ | bash: unison: command not found | ||
+ | Fatal error: Lost connection with the server | ||
+ | |||
+ | # the fix (on the host you are connecting to)... | ||
+ | ln -s / | ||
</ | </ |