- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: formatting DAT tapes
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
05-02-2001 06:49 AM
05-02-2001 06:49 AM
Thanks in advance,
Mike
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2001 06:58 AM
05-02-2001 06:58 AM
Re: formatting DAT tapes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2001 07:26 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2001 07:29 AM
05-02-2001 07:29 AM
Re: formatting DAT tapes
if you like to know what is written to the tape (mediainit is somewhat hidden, and the man page does not say what and how much is written), you can also use
telnet localhost chargen | dd of=/dev/rmt/0m bs=1k
with this you can also verify, how many blocks are transferred to the tape, to see if it has been written to the very end.
Volker
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2001 07:36 AM
05-02-2001 07:36 AM
Re: formatting DAT tapes
1. Determine if the /dev/zero pseudo driver is available:
# lssf /dev/zero
pseudo driver mm minor 0x000003 /dev/zero
Note: If /dev/zero is not available, then execute the following command to create the driver:
# mknod /dev/zero c 3 0x00003
2. Overwrite all of the data with zeros:
# dd if=/dev/zero of=/dev/rmt/0m
good luck,
Thiery.
(I have some other ideas but they are not compatible with the word 'reuse' ;-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2001 08:36 AM
05-02-2001 08:36 AM
Re: formatting DAT tapes
How much effort you put out demands on who you are protecting the data from. Are you protecting atomic secrets from foreign governments? Or are you protecting the company financials from your competitor down the street?