- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Command dd to write zeroes to the raw logical ...
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
10-12-2005 08:38 AM
10-12-2005 08:38 AM
/dev/vgapp/lvpbk 2867200 731509 2004183 27% /prodbkup
Thank you.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2005 08:50 AM
10-12-2005 08:50 AM
SolutionThis same question is on the System Administation board today.
Your answer is there -
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=964689
Regards,
dl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2005 08:57 AM
10-12-2005 08:57 AM
Re: Command dd to write zeroes to the raw logical volume
dd command should be
#dd if=/dev/zero of=/dev/vgapp/rlvpbk bs=1024
A better way should be simply removing the contents of the directory where file system is mounted using rm command.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2005 09:15 AM
10-12-2005 09:15 AM
Re: Command dd to write zeroes to the raw logical volume
Personally, given the reputation of the providers of Disaster Recovery services, I simply do a quick cleanup. After all, the physical disk are not leaving their site.
I simply unmount all file systems and do:
# vgchange -a n vgNN
# vgexport vgNN
# pvcreate -f /dev/rdsk/cXtYdZ
Writing zeros to a device is very time-consuming, but it would be done like this (using a *raw* device file to bypass LVM and using a large blocksize for speed):
# dd if=/dev/zero of=/dev/rdsk/cXtYdZ bs=1024k
Regards!
...JRF...
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2005 09:34 AM
10-12-2005 09:34 AM