- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: DLT & LTO tape initialization
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
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
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-07-2006 05:51 AM
тАО03-07-2006 05:51 AM
I need to be very certain that there is NO WAY for anyone to retrieve data from these tapes.
I ran a DLT and an LTO through our degasser and now neither tape will load. Why is that?
Is there a unix (I'm running HP-UX 11.i) command that will erase all existing data from a tape? At first I thought of simply backing up /dev/null, but realized that, just because I couldn't see it, the data was still on the tape.
Any help would be greatly appreciated.
Brad
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-07-2006 06:10 AM
тАО03-07-2006 06:10 AM
Re: DLT & LTO tape initialization
https://selfservice.talisma.com/display/2/index.asp?c=18&cpc=TJVN0Y442nJq41250384h8TsoO3RuDHpbReVI&cid=11&cat=&catURL=&r=0.7927667
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-07-2006 06:22 AM
тАО03-07-2006 06:22 AM
SolutionIf you don't have it...
# mknod /dev/zero c 3 0x000004
# chown bin:bin /dev/zero
# chmod 666 /dev/zero
This will write the null character (\000) over and over again onto your tapes, effectively erasing whatever used to be there.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-07-2006 06:31 AM
тАО03-07-2006 06:31 AM
Re: DLT & LTO tape initialization
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-07-2006 06:36 AM
тАО03-07-2006 06:36 AM
Re: DLT & LTO tape initialization
I did find /dev/zero on my system, but neither /dev/random or /dev/urandom. What are they?
Thanks!
Brad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-07-2006 06:42 AM
тАО03-07-2006 06:42 AM
Re: DLT & LTO tape initialization
http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.
do?productNumber=KRNG11I
For your purposes /dev/urandom will be better. It's not as random but it will be faster.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-07-2006 10:06 AM
тАО03-07-2006 10:06 AM
Re: DLT & LTO tape initialization
The second is that modern tape drives have a hardware-enforced end-of-data feature. Once you record anything on the tape, when you rewind or pop-out the tape, a special marker for the end of data is written and cannot be bypassed. So, simply cat'ing a short file to the beginning of the tape renders all old data unreadable. Now having said that, there are (expensive) companies that can recover data past this marker. They have specially engineered drives to perform this task. All you need is lots of cash.
However, as many companies have discovered, backup tapes are a SEVERE security risk in that most are not encrypted. Using classic Unix tools for critical data is just asking for problems. Even fbackup is risky because it has no encryption option. Most commercial backup programs have encrytption as an option and this should be the required protection level. In that way, a misplaced, lost or stolen tape has no value. And even if all the operators promise to run the data overwrite script on every tape, somone will forget.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-22-2006 07:29 AM
тАО03-22-2006 07:29 AM
Re: DLT & LTO tape initialization
Is there a means to limit the amount of data that is written to the tape instead of waiting for EOT to occur? I need to overwrite a backup of only 75 GB of data.
I have downloaded KRNG11i, and plan to install it this weekend.
Thanks,
Brad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-22-2006 08:07 AM
тАО03-22-2006 08:07 AM
Re: DLT & LTO tape initialization
Here's one method leveraging Perl to generate random numbers (not as fast as /dev/urandom but a damn sight faster than an infinite stream of compressible 0's):
perl -e 'while (1) { print rand(255); }' | dd ibs=16k obs=1024k count=4915200 of=/dev/rmt/1m
If I've done my ciphering correctly then 4915200 16k chunks = 75GB. Now that does not mean that your entire backup will be overwritten because the compression likely is quite different so you may wish to write more to be sure. Man dd for details.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-23-2006 03:15 AM
тАО03-23-2006 03:15 AM
Re: DLT & LTO tape initialization
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-23-2006 03:26 AM
тАО03-23-2006 03:26 AM
Re: DLT & LTO tape initialization
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-23-2006 03:37 AM
тАО03-23-2006 03:37 AM
Re: DLT & LTO tape initialization
dd if=/dev/urandom ibs=256 obs=1024k of=/dev/rmt/1m
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-23-2006 03:47 AM
тАО03-23-2006 03:47 AM