- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- bad command
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-15-2004 07:43 AM
03-15-2004 07:43 AM
I am using this command:
remsh ngbva 'cd /oradata;tar cf - /oradata' | tar xf -
It works great, but I am getting this error becouse the file is to darn big!
tar: Size of /oradata/VA/comp_1.dbf > 2GB. Not dumped.
Is there a better command to use? or how do I fix this?
Thanks in advance
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2004 07:47 AM
03-15-2004 07:47 AM
Re: bad command
you can use gtar (freeware) or you can search ITRC for the required patches so tar will handle files > 2GB.
good luck,
Thierry.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2004 07:48 AM
03-15-2004 07:48 AM
Re: bad command
http://hpux.connect.org.uk/hppd/hpux/Gnu/tar-1.13.25/
Plan B (and probably aq little faster and will handle files > 8GB): rather than a tar|tar pipeline, use an fbackup|frecover pipeline.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2004 09:03 AM
03-15-2004 09:03 AM
Re: bad command
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2004 09:17 AM
03-15-2004 09:17 AM
Re: bad command
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2004 01:17 AM
03-16-2004 01:17 AM
Re: bad command
You can use rcp -rp /dir hostname:/dirname
Hope this helps,
Cheers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2004 01:45 AM
03-16-2004 01:45 AM
SolutionWhy not use rdist?
I do that for dr reasons for files that are non-SRDF...
I have a script that I run from cron daily:
#! /bin/sh
# Keep the DRP copy of the vgpadm up-to-date.
# Currently the files are in:
#
# /home/vgpadm
#
# See the rdist(1M) distfile for a list of exclusions.
DRPDIR=/app/admin/drp
DRPHOST=svr0032
mount | grep /home > /dev/null 2>&1
if [ $? -eq 0 ]
then
( su - vgpadm -c "rdist -f $DRPDIR/distfile vgpadm"; ) 2>&1 |\
tee $DRPDIR/drp.log 2>&1 |\
mailx -s "VGPADM DRP rdist output" me@mydomain.com
fi
The distfile contains:
VGPDR = ( pc0032 )
#
# File systems to be copied over to the DR host.
# Don't use -R in install - so as not to remove files on destination host
VGPADM = /home/vgpadm
vgpadm: ( ${VGPADM} ) -> ( ${VGPDR} )
install -w ;
except ${VGPADM}/logfiles;
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2004 02:00 AM
03-16-2004 02:00 AM