Mount Network Share


Recommended Posts

Just trying to help here, but typically you can access your UnRaid shares through the UnRaid's name, plus the share name or disk share:

 

\\tower\disk1 - your first non-parity drive

 

\\tower\music - a folder in the root of one (or more) of your UnRaid disks

 

I'm thinking you'll have no options to make it faster - I think the copy is going to have to happen through your Windows/Mac box.

 

You can map a drive to your shares if you wish - let us know your operating system and the NAS you have and maybe you'll get some better ideas.

 

Russell

Link to comment

From the unraid console  (or use screen if using telnet), you should be able to do

 

mkdir /mnt/oldnas
mount -t smbfs -o username=<nas username>,password=<nas password> //<nas ip>/<nas share> /mnt/oldnas

 

then use rsync to get the data across, still from the unraid box prompt:

 

cd /mnt/oldnas
rsync -av . /mnt/user/data

 

(this assumes you have a user share called data on unraid)

 

If data may have been modified on the nas during copy, fire off the same rsync command once more just before turning off the nas, so everything is up to date. When done, unmount the nas with

 

umount /mnt/oldnas
rmdir /mnt/oldnas

 

 

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.