- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- ftp show : short write
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2004 11:00 AM
01-20-2004 11:00 AM
I am trasfering one archive from ORACLE(exports ORACLE) size 9 GB, but when i have 2 GB ftp cancel sending this error:
ftp> mget full*.dmp
mget fullOPERACTueJan20.dmp? y
227 Entering Passive Mode (172,21,0,96,205,104)
150 Opening BINARY mode data connection for fullOPERACTueJan20.dmp (2547218432 bytes).
fullOPERACTueJan20.dmp: short write
421 Service not available, remote server has closed connection
2147482736 bytes received in 246 secs (8.5e+03 Kbytes/sec)
do u have some idea.. pls help me
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2004 01:18 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2004 12:55 AM
01-21-2004 12:55 AM
Re: ftp show : short write
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2004 01:43 AM
01-21-2004 01:43 AM
Re: ftp show : short write
if so, all moder fs (ext3, reiserfs, ...) support >2GB files
AFAIK, even ext2 with 2.4 kernel supports big files.
But I suggest you to split you archive anyway - probably some applications don't support big files
Rgds,
Vitaly
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2004 01:55 AM
01-21-2004 01:55 AM
Re: ftp show : short write
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2004 07:42 AM
01-21-2004 07:42 AM
Re: ftp show : short write
one way to make sure your file system supports that large files and has enough space is to create a file larger 2GB. One easy way to do so is
dd if=/dev/zero of=test.dat count=450000
Don't forget to remove test.dat after the test ;-)
Greetings, Martin
P.S. Creating the 2GB file takes a moment...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2004 08:31 AM
01-21-2004 08:31 AM
Re: ftp show : short write
this certainly looks like the 2^31-1 = 2147483647 bytes limit.
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2004 02:23 PM
01-21-2004 02:23 PM
Re: ftp show : short write
Try using something else, i.e. ncftp to rule out the client, or using a different protocol all together (you have ssh? use 'scp').
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2004 06:49 PM
01-21-2004 06:49 PM
Re: ftp show : short write
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2004 05:01 AM
01-28-2004 05:01 AM
Re: ftp show : short write
dd if=/dev/zero of=test.dat count=450000
[root@salato-apl11 TIS]# dd if=/dev/zero of=test.dat count=450000
450000+0 records in
450000+0 records out
Is it that ok?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2004 06:22 AM
01-28-2004 06:22 AM
Re: ftp show : short write
definitly, this proofs you do have enough space on the disk and the filesystem supports files >2GB conclusively. So now the next think to check/exchange is the ftp client/server as already suggested by others. Make sure you remove the test.dat or you will waste 2GB of disk space ;-)
All the best,
Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2004 10:40 AM
01-28-2004 10:40 AM
Re: ftp show : short write
thanks