This is the old XigmaNAS forum in read only mode,
it will taken offline by the end of march 2021!
I like to aks Users and Admins to rewrite/take over important post from here into the new fresh main forum!
Its not possible for us to export from here and import it to the main forum!
it will taken offline by the end of march 2021!
I like to aks Users and Admins to rewrite/take over important post from here into the new fresh main forum!
Its not possible for us to export from here and import it to the main forum!
[SOLVED] Copying data directly from old NAS to N4F box
-
Desertsweeper
- Starter

- Posts: 17
- Joined: 12 Jul 2012 04:31
- Location: Dubai, United Arab Emirates
- Status: Offline
[SOLVED] Copying data directly from old NAS to N4F box
I have my shiny new HP MicroServer box with a nice big RAID5 array. Its fantastically fast - writes big files at arround 85 MB/s and reads them over 100 MB/s. I want to move the 4TB or so of data from my old Buffalo NAS to my new box. The Terastation reads are painfully slow by comparison. To try and make things fast i am wondering if there is a way to slurp the data directly from the Buffalo to the N4F box. My thinking is that using a PC to do it involves pulling the data down the wire from the old unit and then sending it down the same wire to the new. Is there any way to pull the data directly? The Buffalo supports CIFS, NFS and FTP but provides nothing fancy. It does have a "backup" feature but that only works with another Buffalo NAS solution. Any ideas?
----------------------------
2 x HP N36L MicroServers with 16GB ECC Ram
5 x 6TB WD RED Drives in Raid5
2 x HP N36L MicroServers with 16GB ECC Ram
5 x 6TB WD RED Drives in Raid5
-
al562
- Advanced User

- Posts: 210
- Joined: 12 Dec 2012 08:02
- Location: New Jersey, U.S.A.
- Contact:
- Status: Offline
Re: Copying data directly from old NAS to N4F box
Hi Desertsweeper,
Use SSH or shell/CLI to try mounting the shares from the Buffalo NAS on your NAS4Free server. Try mount_smbfs or mount_nfs as desired. Once mounted use cp or rsync to copy the data over.
CIFS/SMB example:
Regards,
Al
Use SSH or shell/CLI to try mounting the shares from the Buffalo NAS on your NAS4Free server. Try mount_smbfs or mount_nfs as desired. Once mounted use cp or rsync to copy the data over.
CIFS/SMB example:
Code: Select all
nas4free:/# mkdir /mnt/mytemp
nas4free:/#
nas4free:/# mount_smbfs -I 192.168.0.2 //YourUserName@YourNetbiosName/YourShareName /mnt/mytmp
Warning: no cfg file(s) found.
Password:
nas4free:/#
Al
-
Desertsweeper
- Starter

- Posts: 17
- Joined: 12 Jul 2012 04:31
- Location: Dubai, United Arab Emirates
- Status: Offline
Re: Copying data directly from old NAS to N4F box
Thanks for the tip. I am new to the non-wintel world so will digest your advice and do my homework. It's exciting stuff I have to say...
I fully undersand the logic of what you say, just need to figure out the SSH bit which i know is the way in to the heart of the system.
I fully undersand the logic of what you say, just need to figure out the SSH bit which i know is the way in to the heart of the system.
----------------------------
2 x HP N36L MicroServers with 16GB ECC Ram
5 x 6TB WD RED Drives in Raid5
2 x HP N36L MicroServers with 16GB ECC Ram
5 x 6TB WD RED Drives in Raid5
-
al562
- Advanced User

- Posts: 210
- Joined: 12 Dec 2012 08:02
- Location: New Jersey, U.S.A.
- Contact:
- Status: Offline
Re: Copying data directly from old NAS to N4F box
OK, well Windows does not come with SSH client built in. You can try WinSCP, but it is not great for issuing commands. Fastest way for you to do this is direclty at the server console. Use #6 to get a shell and issue all your commands there. Once mounted, leave the shell and use the WebGUI to setup a local rsync job.
Regards,
Al
Regards,
Al
- alexey123
- Moderator

- Posts: 1469
- Joined: 19 Aug 2012 08:22
- Location: Israel, Karmiel
- Contact:
- Status: Offline
Re: Copying data directly from old NAS to N4F box
If you use latin for filenames, you can transfer files with rsync.Any ideas?
Another way
Create NFS server on old nas and connect to it from new nas as nfs client. When you mount nfs share you can use simple cp.
Home12.1.0.4 - Ingva (revision 7091)/ x64-embedded on AMD A8-7600 Radeon R7 A88XM-PLUS/ 16G RAM / UPS Ippon Back Power Pro 600
Lab 12.1.0.4 - Ingva (revision 7091) /x64-embedded on Intel(R) Core(TM) i3-3220 CPU @ 3.30GHz / H61M-DS2 / 4G RAM / UPS Ippon Back Power Pro 600
Lab 12.1.0.4 - Ingva (revision 7091) /x64-embedded on Intel(R) Core(TM) i3-3220 CPU @ 3.30GHz / H61M-DS2 / 4G RAM / UPS Ippon Back Power Pro 600
-
Desertsweeper
- Starter

- Posts: 17
- Joined: 12 Jul 2012 04:31
- Location: Dubai, United Arab Emirates
- Status: Offline
Re: Copying data directly from old NAS to N4F box
Thanks Al ! I successfully mounted the old share using your example and the data is sailing across smoothly...much appreciate the help gents!
----------------------------
2 x HP N36L MicroServers with 16GB ECC Ram
5 x 6TB WD RED Drives in Raid5
2 x HP N36L MicroServers with 16GB ECC Ram
5 x 6TB WD RED Drives in Raid5
-
al562
- Advanced User

- Posts: 210
- Joined: 12 Dec 2012 08:02
- Location: New Jersey, U.S.A.
- Contact:
- Status: Offline
Re: [SOLVED] Copying data directly from old NAS to N4F box
You're welcome
.
This topic is now added to Q: How do I mount/map a CIFS/SMB/SAMBA/Windows share/shared folder on my NAS4Free server?
This topic is now added to Q: How do I mount/map a CIFS/SMB/SAMBA/Windows share/shared folder on my NAS4Free server?
-
fsbruva
- Advanced User

- Posts: 378
- Joined: 21 Sep 2012 14:50
- Status: Offline
Re: [SOLVED] Copying data directly from old NAS to N4F box
Next time, you can also use fetch to get the files via FTP.