Difference between revisions of "Remote Drive Samba"

From XMission Wiki
Jump to: navigation, search
m (New page: ==About Remote Drive== XMission's Remote Drive service allows subscribers to backup data to a reliable disk array in our data center. In addition, this array is continuously backed up to ...)
(No difference)

Revision as of 16:28, 2 July 2009

About Remote Drive

XMission's Remote Drive service allows subscribers to backup data to a reliable disk array in our data center. In addition, this array is continuously backed up to an secondary physical location. Customers have the choice among several different protocols for transferring their data. Popular protocols SCP, SFTP, FTP, SAMBA and Rsync are all available.

Remote Drive is an add-on service which customers may purchase separately from their primary account. It includes a base quota and additional quota units may be purchased which allow the user to store more data. There is no limit on the amount of data a user may move to and from Remote Drive in a single month but bandwidth limits on the client side of the connection may still apply.

Storage Location

Remote Drive is accessible via regular services via shell.xmission.com, ftp.xmission.com, and samba.xmission.com. A soft link in a subscriber's home directory named backup points to the area where remote drive storage is located. This can also be accessed directly via /backup/users/(first-letter)/user, example /backup/users/a/alincoln.

Connection

Your XMission account and password are utilized for all of these transactions. Formerly the Remote Drive service used a separate account and password for rd.xmission.com. This is being phased out.

In all examples below, substitute user with your XMission account name.

Linux

SCP:
scp ''myfile'' ''user''@shell.xmission.com:backup
SFTP:
sftp shell.xmission.com
cd backup
FTP:
ftp ftp.xmission.com
cd backup
Rsync:
rsync -avz /myfiles ''user''@shell.xmission.com:backup/

See also an example Rsync Backup Script.

Samba:
smbmount //samba.xmission.com/''user'' ''/mnt/rd''-o user=''user''
Samba on boot add the following to your fstab:
//samba.xmission.com/''user'' ''/mountpoint'' cifs user,rw,noauto,user=''user'',password=''password'',uid=''uid'',gid=''gid'' 0 0

Windows

  1. Mount the path \\samba.xmission.com\user.
  2. Backup to the backup folder with your backup software.

See Microsoft Support for more details.

Mac OS X

  1. Type Ctrl+K and connect to smb://samba.xmission.com/user
  2. Backup to the backup folder with your backup software.

See also an example Rsync Backup Script.