Sync.uib.no: Difference between revisions

From IThelp
No edit summary
No edit summary
 
(12 intermediate revisions by 3 users not shown)
Line 1: Line 1:
[[no:login.uib.no]]
[[no:Sync.uib.no]]


==Information about the sync-service==
== Information about the sync-service ==
sync.uib.no is a synchronization service that is available for login from outside the UiB network. The services that are provided at sync.uib.no are primarily file copy and synchronization of data from and to the home directory and common areas. sync is set up exclusively for use with file transfer tools. If you need console access, please use [[login.uib.no|login.uib.no]].
 
sync.uib.no is a synchronization service that is available for login from outside the UiB network. The services that are provided at sync.uib.no are primarily file copy and synchronization of data from and to the home directory and common areas. sync is set up exclusively for use with file transfer tools.


From 17.01.2013 sync.uib.no runs on RedHat Enterprise Linux 6
From 17.01.2013 sync.uib.no runs on RedHat Enterprise Linux 6


==Available software==
== Available software ==


Currently, the following tools available for file transfer:
Currently, the following tools available for file transfer:
Line 14: Line 15:
* [http://www.cis.upenn.edu/~bcpierce/unison/ unison]
* [http://www.cis.upenn.edu/~bcpierce/unison/ unison]


[[Category:BRA]]
== User guides ==
[[Category:Linux]]
=== Copying files with scp / sftp in Windows ===
[[Category:UD]]
Use [[WinSCP]] or [[SSH_Secure_Shell|SSH Secure File Transfer]] or any other application that talks scp / sftp and contact sync.uib.no on port 22 with the ssh / scp / sftp protocol.
[[Category:Ubuntu]]
 
[[Category:Mac OS X]]
=== Copying files with Unison on Windows / Mac / Linux ===
[[Category:SSH]]
 
[[Category:Services from the IT department]]
Unison is a two-way synchronization tool. It is easy to use, has a graphical user interfaces, are quick (Unison uses rsync algortimen which transmits only part of the file that has been modified) and has an effective and easy to understand conflict management.
[[Category:Windows]]
[[Unison|More information about Unison]]
 
=== Copying files with rsync on Mac / Linux ===
 
==== Copying from sync to local linux ====
<pre>
rsync -vr username@sync.uib.no:directory/file .
</pre>
 
Dot means "current directory", it is also possible to specify path.
==== Copy from local linux to sync ====
<pre>
rsync -vr directory/file username@sync.uib.no:.
</pre>


[[Category:BRA]]
[[Category:Linux]]
[[Category:Linux]]
[[Category:UD]]
[[Category:Ubuntu]]
[[Category:Ubuntu]]
[[Category:Mac OS X]]
[[Category:Mac OS X]]

Latest revision as of 09:19, 17 April 2020


Information about the sync-service

sync.uib.no is a synchronization service that is available for login from outside the UiB network. The services that are provided at sync.uib.no are primarily file copy and synchronization of data from and to the home directory and common areas. sync is set up exclusively for use with file transfer tools.

From 17.01.2013 sync.uib.no runs on RedHat Enterprise Linux 6

Available software

Currently, the following tools available for file transfer:

User guides

Copying files with scp / sftp in Windows

Use WinSCP or SSH Secure File Transfer or any other application that talks scp / sftp and contact sync.uib.no on port 22 with the ssh / scp / sftp protocol.

Copying files with Unison on Windows / Mac / Linux

Unison is a two-way synchronization tool. It is easy to use, has a graphical user interfaces, are quick (Unison uses rsync algortimen which transmits only part of the file that has been modified) and has an effective and easy to understand conflict management. More information about Unison

Copying files with rsync on Mac / Linux

Copying from sync to local linux

rsync -vr username@sync.uib.no:directory/file .

Dot means "current directory", it is also possible to specify path.

Copy from local linux to sync

rsync -vr directory/file username@sync.uib.no:.