|
I have a Corsair Voyager 32GB DiskOnKey, and when I transfer files to it, they're written very fast, but the move operation halts after each file. Write, halt, write, halt for each file written. I was wondering what could cause it? Usually it's done by...
Started by Avihu Turzion on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
file copy dialog) matches what....
So, it's copying the file, then deleting the old, then going to the next one file corruption if you copied a large amount of data to the flash drive and removed it (without (e.g.
Then-Delete method.
|
|
Is it possible via any Unix utility to read chunks of a remote file (like say 'head' does) instead of transferring the whole file ?
Started by Amit on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
See....
Count=...| nc < of a file you need.
Bs=...
Other option would be to employ netcat:
dd if=file skip=...
Remotely extract interesting part of the file (using dd for example) and then transfer the interesting chunk back.
|
|
The situation is that I'm trying to write a server script that accepts file transfers from a client. I figured out how to make and connect to and from the server using the TCP protocol. However I was wondering how do you transfer a binary file in ruby...
Started by chutsu on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Sftp| # upload a file or directory to the remote host sftp.upload!("/path/to/local", "/path/to/remote") # download a file or directory from the remote host sftp.download!("/path/to/remote", "/path.
|
Ask your Facebook Friends
|
I soon will have a folder with thousands of files, each file on the order of a few KB. I will need to transfer these across a Windows network from one UNC share to another. In general, is it faster to simply copy the files over en masse, or would it be...
Started by kestes on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at serverfault):
The negotiation is done for each file, so transferring a single file yourself....
It is faster to transfer a single large file instead of lots of little files because of the overhead of negotiating the transfer.
|
|
I'm working on transferring a lot of files (>100GB, several thousands of files) over my network to a new Mac. Once the transfers are done I'd like to be able to verify that all of the files were successfully transferred and that no corruption occurred...
Started by amdfan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
If you were to do this manually, you would need to generate a checksum for each file on both.
Of the data.
|
|
How to use TFTP ( Trivial File Transfer Protocol ) and i need to transfer a file using TFTP ?
Started by joe on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
See this article:
Quick HOWTO : Ch16 : Telnet, TFTP, and xinetd .
Please check it.
I find this useful.
|
|
I need to transfer DVD image files between a Windows XP computer and a Mac running Leopard.
The machines are not connected via a fast network, and I have a few USB drives floating around that I want to use, e.g. 8GB flash, 60GB and 250GB USB hard drives...
Started by tomfanning on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Split -b 2048m file copy xxa + xxb file.
What did you try for NTFS on Leopard.
The file up into smaller chunks, and recombine them on windows.
|
|
I have two computers connected to a router with 100MB/s ethernet cable and network cards.
On computer A with Windows XP I am sharing some files. From computer B with windows 7 I am downloading these files with windows file sharing.
The problem is that...
Started by ara on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
It certainly speeded up my transfers using XP (Vista and Win7 don't seem to need it though)
In my experience, the file-write.
Website
It shows you transfer speeds and lets you pause transfers etc.
|
|
I would like to transfer a 20+ GB file to a friend. I would like it to:
Be fast Ensure data integrity Not require opening ports in either end's firewall Be free Not broadcast the file's existence to everyone on the internet I've looked a several technologies...
Started by Kenneth Cochran on
, 14 posts
by 14 people.
Answer Snippets (Read the full thread at superuser):
Of course, that requires your friend to preferably not live at HFS (Http ....
Create checksum for whole file split to smaller pieces the existence of the file on the Internet either.
Downloading only one piece again, no whole file.
|
|
[within a LAN, using Windows]
Say you want to transfer a 1GB file from one PC to another. While it's transferring, there are other big files you would like to transfer. If you start the new transfers, all transfers slow down big time. However, you don...
Answer Snippets (Read the full thread at superuser):
Asynchronous copy speeds up file transfer between two will try several times and in the worse case just skips the file, not terminating the entire transfer, and OpenSource....
Dynamically adjusted buffers to reduce seek times.
|