- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Backup/Physical of TrueUnix System 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
05-12-2005 07:43 PM
05-12-2005 07:43 PM
Backup/Physical of TrueUnix System Disk
Any idea/suggestion ?
TIA,
Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2005 08:54 PM
05-12-2005 08:54 PM
Re: Backup/Physical of TrueUnix System Disk
If you want to duplicate system disk to another disk (on the same machine), you must do the following using TRU64:
1. Create partitions and ADVFS boot block using disklabel
2. Create ADVFS domains and file sets
3. Mount file systems (in /mnt) and do vdump and vrestore
4. Modify the /etc/fstab because domain names and fileset names are different than original
I have duplicated system disks many times on many old machines that did not have RAID controller. If you want detail instructions, say so.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2005 09:12 PM
05-12-2005 09:12 PM
Re: Backup/Physical of TrueUnix System Disk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2005 11:04 PM
05-12-2005 11:04 PM
Re: Backup/Physical of TrueUnix System Disk
Your explanation makes sense.
As I said, I was able to use VMS Backup/Physical to clone Unix system disks in the past.
That was a simple and reliable solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2005 11:16 PM
05-12-2005 11:16 PM
Re: Backup/Physical of TrueUnix System Disk
A problem comes up when you start using multiple fibre channel storage arrays. Their target ports get looked up through the simple name server in the fibre channel switch, but the order can change!
OpenVMS has 'fixed' this by requiring a number in a vendor-specific SCSI page of the LUN (the so-called identifier) which is set on the storage array. The fibre channel driver takes this value (e.g. 55) and puts a fixed string in front of it to generate a device name - "$1$DGA55:".
Tru64 Unix uses a different approach. It takes a 'serial number' from the LUN and uses it to detect multiple paths to the same data as well as mapping this value to a fixed device name. That way you can even pull a locally attached SCSI disk from one server, plug it in another one and it is still recognized under the same name!
The downside, as you have found out, is with boot support. But you are not alone, beleive me, I have once 'killed' a colleague's Tru64 Unix cluster by assigning new disk identities on a storage array, because I didn't knew better.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2005 11:37 PM
05-12-2005 11:37 PM
Re: Backup/Physical of TrueUnix System Disk
Besides, why not using regular TRU64 tools. Everithing can be done and you do have to use same type of disk.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2005 11:43 PM
05-12-2005 11:43 PM
Re: Backup/Physical of TrueUnix System Disk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2005 01:05 AM
05-13-2005 01:05 AM
Re: Backup/Physical of TrueUnix System Disk
This is indeed more of Tru64 question than VMS.
We also used to use BACK/PHYS to clone Tru64 disks, but that was in the OSF days.
We long ago switched to the unix native dd, and more often than not jus rebuild a fresh system disk and copy critial /etc files into place once running.
The dd would be a simple:
dd if=/dev/rdisk/dskXc of=/dev/rdisk/dskYc bs=1024k
By doing it on a uninx box you can readily change things like /etc/fstab or the links in /etc/fdmns/* to new devce names if needed.
Optionally you can olse whipe the device database on the target to make it rediscover the WWID and restart numbering the disks at dsk1 instead of picking up the names from the original. But details for that are best investigated in teh Tru64 docu and/or specific questions asked forum.
Also... for further detail help you may want to indicate a little more than 'did not boot'. Any specific errors? Last command issued?
Regards,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2005 03:56 PM
05-13-2005 03:56 PM
Re: Backup/Physical of TrueUnix System Disk
Bttape looks the way to go.