- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: fbackup 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-17-2004 04:04 AM
03-17-2004 04:04 AM
write the complete command please.
easy point !!!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2004 04:19 AM
03-17-2004 04:19 AM
Re: fbackup command
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2004 04:33 AM
03-17-2004 04:33 AM
Solution#fbackup -f /dev/rmt/0m -v -i /fs1 -i /fs2 -I /tmp/mylogfile.txt
You could run :-
#fbackup -f /dev/rmt/0m -v -g /tmp/mygraph -I /tmp/mylogfile.txt
where /tmp/mygraph contains
i /fs1
i /fs2
Use -e to exclude subdirectories.
Hope that helps
Regards,
Dave.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2004 04:34 AM
03-17-2004 04:34 AM
Re: fbackup command
Regards,
Dave.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2004 04:48 AM
03-17-2004 04:48 AM
Re: fbackup command
#!/usr/bin/sh
TDIR=${TMPDIR:-/var/tmp}
PID=${$}
GFILE=${TDIR}/${PID}.graph
DEV=/dev/rmt/1m
CONGIG=myconfigfile
LEVEL="0"
VG="/dev/vg01"
rm -f ${GFILE}
bdf -l | grep -E "^${VG}" | awk '{print $NF}' | while read FS
do
echo "i ${FS}" >> ${GFILE}"
done
if [[ -s "${GFILE}"" ]]
then
fbackup -f ${DEV} -${LEVEL} -g ${GFILE}
fi
rm -f ${GFILE}