- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- Operating System - Tru64 Unix
- >
- Network performance test with FTP
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
Discussions
Discussions
Discussions
Forums
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
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
тАО06-07-2004 02:25 AM
тАО06-07-2004 02:25 AM
# ftp
ftp> bin
ftp> put "| dd if=/dev/zero bs=32k count=10000" /dev/null
If I try this command on Tru64, i get an error message:
ftp> bin
200 Type set to I.
ftp> put "| dd if=/dev/zero bs=32k count=10000" /dev/null
| dd if=/dev/zero bs=32k count=10000: No such file or directory
ftp>
Does anybody have an idea, why this standard unix command is not working on TRU64? Does anybody know of a similar syntax? I like this command on AIX since it uses no disk resources.
Many thanks for any help!
Regards
Manfred
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-07-2004 03:24 AM
тАО06-07-2004 03:24 AM
Re: Network performance test with FTP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-07-2004 03:57 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-07-2004 04:29 AM
тАО06-07-2004 04:29 AM
Re: Network performance test with FTP
The hint with the "pipe" command in FTP solved the problem:
ftp> bin
200 Type set to I.
ftp> pipe
Interpretation of "|" in filenames on.
ftp> put "| dd if=/dev/zero bs=32k count=10000" /dev/null
200 PORT command successful.
10000+0 records in
10000+0 records out
226 Transfer complete.
327680000 bytes sent in 15.25 secs (15.25 secs, 20979.46 Kbytes/s)
Regards
Manfred
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-07-2004 07:10 PM
тАО06-07-2004 07:10 PM