- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- fbackup log
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
07-29-2003 09:47 PM
07-29-2003 09:47 PM
a simple question for you - were is the log file of the fbackup. I always used sam for filesystem backup and now I have used fbackup like
#fbackup -0i / -v -f /dev/rmt/c0t3d0BEST
The backup was completed with warnings but I don't know were is the backup log - in /var/adm/fbackupfiles there is only one file dates which is from 17'th of April 2003.
Thank you in advance,
ionut
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2003 09:58 PM
07-29-2003 09:58 PM
Re: fbackup log
/var/sam/log/samlog
/var/sam/log/br_log
/var/sam/log/br_index.full
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2003 09:59 PM
07-29-2003 09:59 PM
SolutionYou will need to redirect stdout and stderr to get your log file. You might also want to consider creating an index file too.
eg:
fbackup -0i / -v -I /tmp/fbackup.index -f /dev/rmt/0m >/tmp/fbackup.log
Then look at the files /tmp/fbackup.index and /tmp/fbackup.log
Hope it helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2003 10:01 PM
07-29-2003 10:01 PM
Re: fbackup log
You need to send it to a log file, by default goes to standard out.
Use:
# fbackup -0i / -v -f /dev/rmt/c0t3d0BEST > /tmp/fbackup.log 2>&1
Cheers
Con
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2003 10:10 PM
07-29-2003 10:10 PM
Re: fbackup log
Hi,
Alternatively you can used tee command.Example :
fbackup -0i / -v -f /dev/rmt/c0t3d0BEST|tee /tmp/index
regards
mB
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2003 10:13 PM
07-29-2003 10:13 PM
Re: fbackup log
When you use backup through SAM it uses
/usr/sam/lbin/br_backup to backup the files and the logs for it are created in /var/sam/logs
Now when you do fbackup you have redirect the output to a log (use 2>&1)file to see it..
Rajeev
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2003 10:21 PM
07-29-2003 10:21 PM
Re: fbackup log
So I have to redo the backup and wait another 8 hours :-(...