- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- file date changes during fbackup
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-29-2002 07:13 AM
01-29-2002 07:13 AM
file date changes during fbackup
There is a strange thing happening in my system. There is a tar file (owned by root) that has a diferent date everyday, the same date (and time) when an fbackup was made during the night...
For me, this is very strange, first because I don??t know who created this file and second because the night backup it??s not made with tar.
Clue: the backup is made with fbackup, to tape (DLT7000) and by a user with root privileges but that as only access to a menu.
Any help would be good.
Thanks
SN
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2002 07:27 AM
01-29-2002 07:27 AM
Re: file date changes during fbackup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2002 09:16 AM
01-29-2002 09:16 AM
Re: file date changes during fbackup
root:> crontab -l
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2002 06:01 PM
01-29-2002 06:01 PM
Re: file date changes during fbackup
Try this:
# crontab -l | grep tar
to see if anyone set the tar job at the cron list.
Hope this helps.
Kenny.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2002 06:18 PM
01-29-2002 06:18 PM
Re: file date changes during fbackup
If these suggestions don't find it, you
will need to go through the various scripts
that run from cron and look for the tar
backup(s) that way.
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2002 02:58 AM
01-30-2002 02:58 AM
Re: file date changes during fbackup
Looking in crontab was the fisrt thing I??ve done. That is not where the problem is.
Thank you anyway.
Any other sugestions?
SN
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2002 03:05 AM
01-30-2002 03:05 AM
Re: file date changes during fbackup
Note the creation time of the tar file. Run a scheduled cron job that runs a few minutes after the regular tar file creation to capture the following to aid diagnostics:
#!/sbin/sh
LOGFILE=/tmp/tar.txt
touch $LOGFILE
ps -fae >> $LOGFILE
netstat -a >> $LOGFILE
who >> $LOGFILE
last -10 >> $LOGFILE
elm -s"[TRACE] unknown tar" < $LOGFILE
Hope this helps. Regards.
Steven Sim Kok Leong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2002 03:07 AM
01-30-2002 03:07 AM
Re: file date changes during fbackup
Remember to specify your_email_address:
elm -s"[TRACE] unknown tar" your_email_address < $LOGFILE
This minimises the chance that the culprit tries to remove your log file.
Hope this helps. Regards.
Steven Sim Kok Leong