- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- Operating System - Tru64 Unix
- >
- Re: Format/Verify Disk
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
03-20-2006 12:30 AM
03-20-2006 12:30 AM
I've got a machine with Tru64 installed. All i need to do is format/verify those disk that in the server. It's the fist time that i've used Tru64 but so far i got to this point: But dont know if i'm right or not
hwmgr scan scsi
hwmgr show scsi
Here on i get a list of scsi device
dsk0...........
dsk1............
dsk2............
dd if=/dev/disk/dsk1 of=/dev/null bs=256k
dd if=/dev/zero of=/devices/dsk/dsk1 bs=256k
i keep getting an error with /dev/disk/dsk1: No such file or directory and /devices/dsk/dsk1: No such file directory
Can any1 tell me what am i doing wrong ? and what is the correct procedure to test these disk..
Thanks in Advance
will
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2006 01:12 AM
03-20-2006 01:12 AM
Re: Format/Verify Disk
mkfdmn /dev/disk/dsk1c dsk1c_domain
mkfset dsk1c_domain dsk1c
mount dsk1c_domain#dsk1c /mnt/disk
To test a disk you can use the diskx command.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2006 01:48 AM
03-20-2006 01:48 AM
SolutionWelcome to the Tru64 Forum.
Be sure to use 'google' to find earlier relevant posts. For example:
google: +tru64 +dd +site:itrc.hp.com +disk
For dd from zero or to null you want to use the RAW device file. (rdisk)
And under TRu64 disks are presented with 8 partitions: You need to pick one, and in this case you probably want "c" being "the whole disk"
Check ls /dev/rdisk/dsk1*
Use 'disklabel dsk1' to verify.
The commend you want to issue to clear the disk is probably (currently no access to test system):
dd if=/dev/zero of=/dev/rdisk/dsk1c bs=256k
Mind you, some folks argue that this is only good enough to clear data away from non-devious folks and that one really needs to shake the buits or physically damage the disk to make it completely unrecoverable.
Using multiple passes with 'erase patterns', perhpas from /dev/random is desired according to those folks.
google: +tru64 +dd +site:itrc.hp.com +erase
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2006 05:28 AM
03-20-2006 05:28 AM
Re: Format/Verify Disk
10 points
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2006 05:31 AM
03-20-2006 05:31 AM
Re: Format/Verify Disk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2006 06:52 AM
03-20-2006 06:52 AM
Re: Format/Verify Disk
the command Hein posted will reult in an error because the first 16 sectors are read-only. They should be skipped with the oseek option.
dd if=/dev/zero of=/devices/dsk/dsk1c bs=16 oseek=1
greetings,
Michael