- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- Operating System - Tru64 Unix
- >
- how to redirect scsi hard disk in true 64
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
тАО06-14-2009 10:17 PM
тАО06-14-2009 10:17 PM
how to redirect scsi hard disk in true 64
im having a problem that i want to redirect a scsi disk that a replaced.this is the current configuration after replaced the disk.
/dev/disk> hwmgr -v d
HWID: Device Name Mfg Model Location
------------------------------------------------------------------------------
6: /dev/dmapi/dmapi
7: /dev/scp_scsi
8: /dev/kevm
33: /dev/disk/floppy0c 3.5in floppy fdi0-unit-0
67: /dev/disk/dsk0c COMPAQ BF03689BC3 bus-0-targ-0-lun-0
68: /dev/disk/dsk1c COMPAQ BF03689BC3 bus-0-targ-1-lun-0
69: /dev/disk/cdrom0c HL-DT-ST RW/DVD GCC-H20N bus-2-targ-0-lun-0
70: /dev/disk/dsk4c COMPAQ BF03689BC3 bus-4-targ-0-lun-0
71: /dev/disk/dsk3c COMPAQ BF03689BC3 bus-4-targ-1-lun-0
72: /dev/random
73: /dev/urandom
74: /dev/ntape/tape0 HP C7438A bus-1-targ-0-lun-0
106: dsk2 COMPAQ BF03687B54 bus-4-targ-0-lun
how can i redirect to /dev/disk/dsk2c.
its currently /dev/disk/dsk4.
please i need a quick responce
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-14-2009 10:42 PM
тАО06-14-2009 10:42 PM
Re: how to redirect scsi hard disk in true 64
http://forums.itrc.hp.com/service/forums/questionanswer.do?threadId=1343111
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-15-2009 11:13 PM
тАО06-15-2009 11:13 PM
Re: how to redirect scsi hard disk in true 64
I frequently used "dsfmgr -e"
you must rename the whole disk dsk2 not just the partition dsk2c.
resulting in => dsfmgr -e dsk4 dsk2
see man dsfmgr
-e Exchanges the device special files for the named nodes. Use this option to reassign device special files between nodes by exchanging or "swapping" them. The base_name is the device name and instance, such as dsk0. Devices must be of the same type and the first named device must be an active (known) device.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-16-2009 10:32 AM
тАО06-16-2009 10:32 AM
Re: how to redirect scsi hard disk in true 64
You can use the -e (exchange) option but will still end up with a dead device in your configuration. In this case you'll still probably want to delete the old/gone/dead device which after the exchange will reside at /dev/dsk4.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-16-2009 11:12 AM
тАО06-16-2009 11:12 AM
Re: how to redirect scsi hard disk in true 64
Also bear in mind that there are a couple of errors in the Examples section of the man page for dsfmgr, relating to deleting old devices...
http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V51B_HTML/MAN/MAN8/0140____.HTM (scroll down towards the bottom).
The man page states to do use hwmgr to delete the old component first, then dsfmgr to remove the device files. In my experience you need to do this the other way round. Also the man page says to use a delete option to dsfmgr which isn't necessary. So (using the same example hardware ID from the man page):
1. # dsfmgr -R hwid 25
2. # hwmgr delete component -id 25
3. # dsfmgr -m dsk4 dsk2
You will have to substitute 25 for the old HWID, which you should be able to determine from the output of # hwmgr show scsi -full
Look for a disk on the same bus target lun, that has a stale path.
Cheers,
Rob