- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- Operating System - Tru64 Unix
- >
- Tru64 v4.0f disk copy dd command
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
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
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-02-2010 02:49 AM
тАО03-02-2010 02:49 AM
We have a Alpha server with Tru64 v4.0f install, I need some commands on how to disk copy using the dd command, I know the procedure for it for v5 but the commands like hwmgr and show disk does not work on v4.
So i will need to commands similar to v5:
eg
hwmgr show scsi
show disk
dd if=/dev/disk/dsk#c of=/dev/disk/dsk#c bs=512k
Thanks for your help
William
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-02-2010 09:56 AM
тАО03-02-2010 09:56 AM
Re: Tru64 v4.0f disk copy dd command
On 4.0F, you'll probably need:
# scu show edt
to show you all SCSI devices.
Disk devices are usually /dev/rzN where N is based on the SCSI Bus/Target/LUN number.
Personally I'd use a pipelined vdump/vrestore to copy disks, rather than using dd.
Hope this helps,
Regards,
Rob
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-02-2010 09:56 PM
тАО03-02-2010 09:56 PM
Re: Tru64 v4.0f disk copy dd command
in 4f you would have disk device as rzX
and dd command would be same except dsk you would have to use rz, be sure of device before run.
As suggested restore data would be better.
BR,
Kapil+
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-03-2010 08:18 AM
тАО03-03-2010 08:18 AM
Re: Tru64 v4.0f disk copy dd command
I've got what i need now and the dd copying command is working.
Is there a command to tell me which disk location the O/S is installed on?? at the moment i have one disk installed, which is easy, but if i have mulitple disk in a system, how will i find out which disk have the O/S installed??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-03-2010 10:17 AM
тАО03-03-2010 10:17 AM
SolutionYou can find the disk that you booted from with :
# consvar -g booted_dev
but this isn't necessarily where the OS is installed. For that probably best to look at the links under /etc/fdmns - assuming you're using AdvFS.
# ls -l /etc/fdmns/root_domain
# ls -l /etc/fdmns/usr_domain
Cheers,
Rob
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-03-2010 06:45 PM
тАО03-03-2010 06:45 PM
Re: Tru64 v4.0f disk copy dd command
disks under rootdg would be the having OS.
BR,
Kapil+
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-03-2010 06:50 PM
тАО03-03-2010 06:50 PM
Re: Tru64 v4.0f disk copy dd command
#ls -l /etc/fdmns/root_domain
there are a couple of ways more...
#df -h /
check the block device and search it in volprint it would point to the root disks.
BR,
Kapil+
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-04-2010 07:17 AM
тАО03-04-2010 07:17 AM
Re: Tru64 v4.0f disk copy dd command
@Kapil> #df -h /
The human readable option to df (-h) didn't get introduced until v5.1B...
Cheers,
Rob
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-04-2010 05:30 PM
тАО03-04-2010 05:30 PM
Re: Tru64 v4.0f disk copy dd command
my bad Rob I have not logged in a Tru64 server for last 2 years :( forgetting everything.
Thanks for the help
BR,
Kapil+