- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: ftp to transfer directorys
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
03-29-2001 02:53 AM
03-29-2001 02:53 AM
ftp to transfer directorys
How do you use ftp to transfer directorys
Thk
kamal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-29-2001 03:01 AM
03-29-2001 03:01 AM
Re: ftp to transfer directorys
ftp of gzip.tar.z.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-29-2001 03:08 AM
03-29-2001 03:08 AM
Re: ftp to transfer directorys
You can to install a graphic ftp "xftp" that you can find in: http://hpux.connect.org.uk/.
Regards
Manuel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-29-2001 04:20 AM
03-29-2001 04:20 AM
Re: ftp to transfer directorys
Ftp does not have a recursive switch and so ftp itself cannot do directories with out a cd to each directory in turn.
As previously suggested use tar - ftp the tar file accross and then untar it on the destination machine.
HTH
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-29-2001 09:47 AM
03-29-2001 09:47 AM
Re: ftp to transfer directorys
You may tar, compress, then ftp to the otherbox.
-fnhalili
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-29-2001 03:36 PM
03-29-2001 03:36 PM
Re: ftp to transfer directorys
If you are creative enough, you could script something to handle the putting of multiples. Getting multiples would work similarly, but be much more difficult.
Regards,
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-29-2001 07:35 PM
03-29-2001 07:35 PM
Re: ftp to transfer directorys
I have used xftp in the past for transferring directories with quiet a lot of subdirectories and it always worked to my satisfaction.
I would give it a shot.
Anything else involves more work like tar first and then ftp, but that of course is a doable and fairly easy procedure.
Take care,
Steffi Jones
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2001 03:12 AM
03-30-2001 03:12 AM
Re: ftp to transfer directorys
# find /opt/fab | cpio -ocuvB > tempfile
# ftp hostname
ftp> binary
ftp> put tempfile
Then on the other machine, do a cpio to restore the files. Be careful about relative or absolute pathnames and all that, and the file system holding tempfile (on both machines) must be large enough to hold the file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2001 04:53 PM
03-30-2001 04:53 PM
Re: ftp to transfer directorys
mget -R /bigdir
http://www.ncftp.com/ncftp/
Hope that helps,
Brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2001 05:21 AM
05-16-2001 05:21 AM
Re: ftp to transfer directorys
for DIR in dir1 dir2
do
for file in `ls $DIR`
do
ftp -n -v <
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2001 05:28 AM
05-16-2001 05:28 AM
Re: ftp to transfer directorys
I would do a tar like vincenzo said with tar and either ftp it over or even rcp it over. Tar will definitely keep the directory structure in tact which is what I think you want.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2001 01:22 AM
05-21-2001 01:22 AM
Re: ftp to transfer directorys
Another method is to change your ftpd deamon.
If you can install a powerfull deamon like
wu-ftpd ( http://hpux.cict.fr/hppd/hpux/Networking/FTP/wu_ftpd-2.6.1/) you can use compression before
transfer by example :
you want all the directory /pub/hp-ux
cd /pub
get hp-ux.tar.z
Before to send you data, server tar and
compress all of them.
If you can't change your deamon I think you
can configure it to use users ports (>1024).
Regards,
Herve