- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- large file supported copy utiilty..
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-21-2002 01:55 PM
01-21-2002 01:55 PM
I've read the white paper on large files but am no wiser as to getting a copy program which works reliably.
'cp' doesn't and I've tried cat'ing the file and redirecting to a new file, but no luck..
Any ideas?
Thx,
Mark
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2002 02:04 PM
01-21-2002 02:04 PM
Re: large file supported copy utiilty..
Did you try cpio..??
# find . -xdev|cpio -pudlmv /dst_dir
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2002 02:16 PM
01-21-2002 02:16 PM
Re: large file supported copy utiilty..
You need to go to the file system and then do a cp referencing the current directory.
#cd /file_system_where_the_file_resides
#cp -rp
./the_file /file_system_that_supports_largefiles
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2002 02:16 PM
01-21-2002 02:16 PM
Re: large file supported copy utiilty..
The standard versions of 'cpio', 'tar' and 'pax' do not support largefiles.
The is no problem with 'cp'.
As far as backup goes, 'fbackup'/'frecover' handles largefiles (>2GB). In fact, you can create a pipe using these two commands to transfer largefiles. An example from the man pages is thusly:
# fbackup -i /usr -f - | (cd /mnt; frecover -Xrf -)
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2002 02:17 PM
01-21-2002 02:17 PM
Re: large file supported copy utiilty..
Thanks for the tip - no luck though - 'cpio' is one of the utilities specified as not supporting large files. I tried it but it failed..
M
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2002 02:27 PM
01-21-2002 02:27 PM
Re: large file supported copy utiilty..
Try GNUTar instead, It soupports over 2gb file.
It's avaialbale at Hp's porting site.
http://hpux.asknet.de/hppd/hpux/Gnu/tar-1.13.18
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2002 02:29 PM
01-21-2002 02:29 PM
Re: large file supported copy utiilty..
I tried that but no luck..
'file too large'.
It's probably worth mentioning that the place I'm copying the file to is an nfs exported dir from an NT4 machine (hummingbird maestro).
It seems to be the copying utilities though that are throwing the errors, not the remote filesystem..
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2002 02:31 PM
01-21-2002 02:31 PM
Re: large file supported copy utiilty..
Sorry ,The link I gave is no more existing !
Try this link instead..
http://hpux.connect.org.uk/
-USA.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2002 03:09 PM
01-21-2002 03:09 PM
Re: large file supported copy utiilty..
cp should work on large files. You may want to check the limitations on NT4 as well the hummingbird's NFS?
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2002 04:57 PM
01-21-2002 04:57 PM
Re: large file supported copy utiilty..
If your source and destination filesystem is different, check (as mentioned in above postings) that your destination filesystem supports largefiles. To check, use fsadm eg.
# fsadm -F hfs /dev/vg00/lvol1
If your source and destination filesystem is the same, one possibility is that this filesystem originally supported large files (ie. it was created or modified to accept the largefiles option) which explains why the large file resides in the filesystem. However, because you have re-modified the filesystem (fsadm) to no longer support large files, you can no longer copy (cp) it within the same filesystem.
Hope this helps. Regards.
Steven Sim Kok Leong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2002 05:01 PM
01-21-2002 05:01 PM
SolutionFirst, standard NFS cannot handle largefiles, period. This is inherent in the design and cannot be fixed. If you are running 11.0 or 11i or have the NFS version 3 patches added to your system, then you can use largefiles over an NFS v3 connection to another system running NFS v3. As far as I know, NFS on a PC does not understand NFS v3.
NFS is a poor protocol at best for file sharing and has terrible performance for large amounts of data. Use ftp instead...assuming the destination PC can handle largefiles.
Bill Hassell, sysadmin