-
- Novice
- Posts: 7
- Liked: never
- Joined: Mar 23, 2010 11:27 am
- Full Name: Michael Briegl
- Contact:
FLR Multi-OS via FTP no files with dots
Version 6.0.0.158
If I use the Multi-OS FLR appliance and connect via FTP to the appliance, directory names (and i guess also file names) that start with a "dot" charachter (UNIX "hidden") are not visible. I am trying to restore files from a Windows dynamic disk (so no Windows FLR) that contains directories that start with a dot charachter.
Is this a known limitation of the Multi-OS FLR appliance that can be fixed?
FTP is the prefered way to "restore" the files, since the copy operations using the Multi-OS wizard are so godawfully slow (compared to FTP which is really fast).
If I use the Multi-OS FLR appliance and connect via FTP to the appliance, directory names (and i guess also file names) that start with a "dot" charachter (UNIX "hidden") are not visible. I am trying to restore files from a Windows dynamic disk (so no Windows FLR) that contains directories that start with a dot charachter.
Is this a known limitation of the Multi-OS FLR appliance that can be fixed?
FTP is the prefered way to "restore" the files, since the copy operations using the Multi-OS wizard are so godawfully slow (compared to FTP which is really fast).
-
- Veeam Software
- Posts: 21139
- Liked: 2141 times
- Joined: Jul 11, 2011 10:22 am
- Full Name: Alexander Fogelson
- Contact:
Re: FLR Multi-OS via FTP no files with dots
Michael, do you see this behavior in different FTP clients?
-
- Novice
- Posts: 7
- Liked: never
- Joined: Mar 23, 2010 11:27 am
- Full Name: Michael Briegl
- Contact:
Re: FLR Multi-OS via FTP no files with dots
I tried the microsoft ftp.exe client, the FTP client integrated into "Total Commander" (www.ghisler.com) and "Filezilla". All show the same behaviour.
-
- Veeam Software
- Posts: 21139
- Liked: 2141 times
- Joined: Jul 11, 2011 10:22 am
- Full Name: Alexander Fogelson
- Contact:
Re: FLR Multi-OS via FTP no files with dots
Quick research by our QC showed that this is actually an issue with the appliance. As a workaround you can try to use direct links to the files (something like ftp://appliance/folder/.file), if this makes sense to you. Thanks for pointing that out!
-
- VP, Product Management
- Posts: 6035
- Liked: 2860 times
- Joined: Jun 05, 2009 12:57 pm
- Full Name: Tom Sightler
- Contact:
Re: FLR Multi-OS via FTP no files with dots
My memory is that the appliance is built on Busybox, and the built in busybox FTP server doesn't have the ability to display hidden files.
The easiest workaround is to use SCP or SFTP instead of FTP. The IFLR appliance listens for SSH and the root password is docemented at http://www.veeam.com/KB1447 although you should note that with V6 the hostname is not necessarily the name of the Veeam server but rather the hostname of the proxy that is assigned as the PowerNFS server for the repository hold the backup files being used for the IFLR.
I use either standard Linux SCP/SFTP command line tools, or WinSCP for Windows machines. It's not quite as fast as FTP due to the overhead of compression, but still very fast and very flexible and this method has no problem with directories/filenames with dots.
The easiest workaround is to use SCP or SFTP instead of FTP. The IFLR appliance listens for SSH and the root password is docemented at http://www.veeam.com/KB1447 although you should note that with V6 the hostname is not necessarily the name of the Veeam server but rather the hostname of the proxy that is assigned as the PowerNFS server for the repository hold the backup files being used for the IFLR.
I use either standard Linux SCP/SFTP command line tools, or WinSCP for Windows machines. It's not quite as fast as FTP due to the overhead of compression, but still very fast and very flexible and this method has no problem with directories/filenames with dots.
-
- VP, Product Management
- Posts: 6035
- Liked: 2860 times
- Joined: Jun 05, 2009 12:57 pm
- Full Name: Tom Sightler
- Contact:
Re: FLR Multi-OS via FTP no files with dots
Also, the KB article that provides the password information for the IFLR appliance states that the hostname will not be the FQDN but in at least some cases it is.
-
- Veeam Software
- Posts: 21139
- Liked: 2141 times
- Joined: Jul 11, 2011 10:22 am
- Full Name: Alexander Fogelson
- Contact:
Re: FLR Multi-OS via FTP no files with dots
Valid workaround, thanks, Tom!
-
- VP, Product Management
- Posts: 6035
- Liked: 2860 times
- Joined: Jun 05, 2009 12:57 pm
- Full Name: Tom Sightler
- Contact:
Re: FLR Multi-OS via FTP no files with dots
Obviously this should have been "It's not quite as fast as FTP due to the overhead of encryption.tsightler wrote:It's not quite as fast as FTP due to the overhead of compression...
Another nice option for Linux/Unix heads (or Windows heads with Cygwin) is to pull the files over SSH via tar, using a command like:
Code: Select all
ssh -n ivrhost 'tar zpcvf - SOURCEDIR' | tar zpxvf -
Code: Select all
ssh -n ivrhost 'tar zpcvf - SOURCEDIR' > DESTFILE.tar.gz
Code: Select all
plink root@ivrhost 'tar zpcvf - SOURCEDIR' > c:\DESTFILE.tar.gz
-
- Enthusiast
- Posts: 97
- Liked: 6 times
- Joined: Feb 24, 2009 5:02 pm
- Contact:
Re: FLR Multi-OS via FTP no files with dots
I'd go along with Tom on the tar front having had to copy 12,000,000+ files/directories recently. But instead of scp/sftp I use netcat (nc) in client/listener mode which is faster than scp. And with the addition of pv (pipe-view) in the command line you get transfer rate, time and percent done stats -- very useful.
-
- Enthusiast
- Posts: 97
- Liked: 6 times
- Joined: Feb 24, 2009 5:02 pm
- Contact:
Re: FLR Multi-OS via FTP no files with dots
Just in case you want to transfer directory with huge number of files...
# On target box cd to the target parent directory
[cby@target_box]# nc -l PORT|tar ixf -
--------------------------------
# On source box cd to the source parent directory
[cby@source_box]# tar c source_directory |pv|nc target_box_IP target_box_PORT
Note: some versions of netcat syntax vary! Also the [-]w option is useful for closing down connection after transfer is complete.
# On target box cd to the target parent directory
[cby@target_box]# nc -l PORT|tar ixf -
--------------------------------
# On source box cd to the source parent directory
[cby@source_box]# tar c source_directory |pv|nc target_box_IP target_box_PORT
Note: some versions of netcat syntax vary! Also the [-]w option is useful for closing down connection after transfer is complete.
-
- VP, Product Management
- Posts: 6035
- Liked: 2860 times
- Joined: Jun 05, 2009 12:57 pm
- Full Name: Tom Sightler
- Contact:
Re: FLR Multi-OS via FTP no files with dots
Pulling out some netcat skills...awesome!! I didn't realize that netcat was part of Busybox and already on the instant recovery VM, I'm sure that really is fast.
I had previously used a static build of rsync as well, this having the advantage that it would only transfer files that were changed/different. I even played around with simply attaching the disk that I wanted to restore to directly to the IVR appliance. That works pretty good as well.
I had previously used a static build of rsync as well, this having the advantage that it would only transfer files that were changed/different. I even played around with simply attaching the disk that I wanted to restore to directly to the IVR appliance. That works pretty good as well.
-
- Veeam Software
- Posts: 21139
- Liked: 2141 times
- Joined: Jul 11, 2011 10:22 am
- Full Name: Alexander Fogelson
- Contact:
Re: FLR Multi-OS via FTP no files with dots
A handful of workarounds! Most likely, this will be fixed in the next product update.
Who is online
Users browsing this forum: Bing [Bot], jmaude and 324 guests