- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- get details of tape
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
02-09-2004 03:17 AM
02-09-2004 03:17 AM
When it was created and so on. How can i do that?
Thx
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2004 03:19 AM
02-09-2004 03:19 AM
Re: get details of tape
That or some variation of it will get you the information you need.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2004 03:21 AM
02-09-2004 03:21 AM
Re: get details of tape
As for the creation date, you can do the following:
dd if=
In my experiences, this has worked well but takes a while to run.
-Bryan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2004 03:34 AM
02-09-2004 03:34 AM
Solutiondd if=/dev/rmt/0m of=/tmp/tapelif bs=2048 count=10;lifls -l /tmp/tapelif
This will produce the following:
10+0 records in
10+0 records out
volume ISL10 data size 281239 directory size 3 04/02/06 09:31:51
filename type start size implement created
===============================================================
ISL -12800 16 306 0 04/02/06 09:31:51
AUTO -12289 328 1 0 04/02/06 09:31:51
INDEX BIN 336 1 0 04/02/06 09:31:51
CONFIG BIN 344 143 0 04/02/06 09:31:51
HPUX -12928 488 848 0 04/02/06 09:31:51
FWWKAR6 BIN 1336 1 0 04/02/06 09:31:51
FWWKAR7 BIN 1344 1 0 04/02/06 09:31:51
FWWKAR8 BIN 1352 1 0 04/02/06 09:31:51
INSTALL -12290 1360 37472 0 04/02/06 09:31:57
INSTALLFS -12290 38832 35840 0 04/02/06 09:32:03
VINSTALLFS -12290 38832 35840 0 04/02/06 09:32:03
WINSTALLFS -12290 38832 35840 0 04/02/06 09:32:03
VINSTALL -12290 74672 43203 0 04/02/06 09:32:09
WINSTALL -12290 117880 46823 0 04/02/06 09:32:15
INSTCMDS BIN 164704 12646 0 04/02/06 09:32:16
SYSCMDS BIN 177352 61281 0 04/02/06 09:32:18
SCRIPTS BIN 238640 42 0 04/02/06 09:32:18
The date is in the format yy/mm/dd but you can write a script to format it anyway you want.
As far as other info, other than diskinfo I am not sure what you are looking for?
root> diskinfo /dev/rmt/0m
SCSI describe of /dev/rmt/0m:
vendor: HP
product id: C1537A
type: sequential access
size: 11539691 Kbytes
bytes per sector: 1024
If you want to extract a file from the tape, you can tar the data portion, after the tapelif area. First you must rewind the tape and then move past the lif area with the no rewind option (0mn):
mt rew
mt -f /dev/rmt/0mn fsf 1
tar (what ever command you want)
Good luck,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2004 05:08 AM
02-09-2004 05:08 AM