Sponsored Content
Full Discussion: IBM AIX 5.2 cloning Hdds
Operating Systems AIX IBM AIX 5.2 cloning Hdds Post 302999416 by MichaelFelt on Tuesday 20th of June 2017 02:15:33 AM
Old 06-20-2017
Hi,

a) AIX 5.2 does not virtualize the same way AIX 5.3 can (no virtual ethernet, no microparititions). The product you needed for that is vWPAR 5.2 - and, as the AIX 5.3 version is rumored to be withdrawn from marketing soon - I am going to guess the vWPAR 5.2 version is already withdrawn.
b) make an mksysb image asap to a file, do not worry about it being bootable or not. Just make sure you have the image.

More to come - my ride has arrived.

So, a day later... continuing as promised.

c) to test your DVD making process - years ago (AIX 5.3 ML05 days) I wrote a short article on how to create a bootable DVD/CD (CD will work in this case) - so that you could then read and install an mksysb file from a second DVD. This was a problem I was having when moving things from some old P43-140 systems to a POWER4. If I recall correctly, the process describes (see http://www.rootvg.net/content/view/134/88/) how a previously captured "mksysb" file can be used as input to the mkDVD process. The mksysb image created was the minimum needed to create a bootable disk.
Largely I gave up on mkDVD as a workable backup method (running the command "live" means you need to have 3X space - the actual system, the temp mksysb file it makes, and then the iso9660 file(s) it creates. One thing I learned to not do is let mkDVD write directly to the DVD (although that is probably not what you have - my POWER4 had a DVD/RAM device, soI could also use the -U option (write as UDF format to the RAM-DVD (special kind of RW-DVD media). (basically, it was so horrendously slow I always wrote to files, transferred them to a PC and burned the DVD on my PC).

So, hoping your system is still alive enough for you to make an mksysb image - I also highly recommend backing up as many non-OS related files (i.e., your real data) in a tar file - so it is easily readable on various platforms.

If you have access to any AIX 5.3 media - this should accept most applications supported on AIX 5.2 - then you could try the process of migrating your applicaitons to AIX 5.3 - and then run that on vWPAR for AIX 5.3.

Hope this helps!

Last edited by MichaelFelt; 06-21-2017 at 07:30 AM.. Reason: promised to continue...
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Aix Cloning

Is there anyone out there who knows anything about aix cloning? I would be very grateful for any information at all. Thanking you in advance :) (4 Replies)
Discussion started by: annette
4 Replies

2. AIX

Help-----ibm Aix???

:confused: Hello everybody, I am a totel dummy when it comes to UNIX!!! Must be wondering what I am doing here right? I'm most keen on knowing about-it-all. I need help. Wanna know all about the IBM AIX. The versions, the latest. Please tell me how do I go about my search. Thanks a... (3 Replies)
Discussion started by: rtanuja
3 Replies

3. HP-UX

hdds physically

Hi, I've a HP-UX 10x running on HP9000 box and also I have 3 scsi hdd(9Gb), one of them is working. I need to check the other 2 hdd physically. Is there an utility to check them from unix or another way to do it? Thanks.... (5 Replies)
Discussion started by: efrenba
5 Replies

4. UNIX for Advanced & Expert Users

how is IBM-AIX better..?

why IBM-AIX is preferred over HP-UX ..... In what way it is better for infrastructure......? Suggestions are welcome... Suggest you read the RULES (0 Replies)
Discussion started by: bishweshwar
0 Replies

5. AIX

IBM-AIX Technical Help

Hi All :b:, Motto : I am in need of IBM-AIX INTERVIEW QUESTIONS. I am working as an a operator, on solaris 5.10 env. i have got an opportunity of IBM-AIX Administrator Job. I really don't want to miss this opportunity. By the way i have basic knowledge of Solaris UNIX, I have confident i... (7 Replies)
Discussion started by: imrankhan.in
7 Replies

6. AIX

ibm aix L1

hello all, can anyone send me ibm aix L1 interview questions... thank u guys...jiyojith (0 Replies)
Discussion started by: jiyojith
0 Replies

7. AIX

IBM AIX on IBM Eseries & x series server

Hi, I want to know whether IBM AIX can be installed on the IBM e series and x series server hardware? Thanks & Regards Arun (2 Replies)
Discussion started by: Arun.Kakarla
2 Replies

8. AIX

pwage-aix for IBM AIX servers

This is the password aging script for aix just completed. So far tested and still testing on one of our aix server running 5.3.0.0. So anyway as you can see it is very similar to pwage-hpux-T the only difference on aix /etc/passwd file looks in this format. Also for this script to work you need to... (0 Replies)
Discussion started by: sparcguy
0 Replies

9. AIX

AIX Server Cloning

Hi, Is there disadvantages if we do AIX Serevr cloning to the new AIX server. Thanks in advance (2 Replies)
Discussion started by: kmsekhar
2 Replies

10. AIX

IBM Virtual Machine OS on intel x86 and x64? IBM AIX OS on IBM Virtual Machine?

Hi There, I have zero information and zero knowledge for IBM virtual machine except Amazon cloud and VMware ESXi (Only Linux OS available). Anyone could provide me the following answer - Can IBM VM been deploy on X86 and X64 (Intel Chip)? If answer is yes any chance to deploy AIX OS... (13 Replies)
Discussion started by: chenyung
13 Replies
MooseX::Clone::Meta::Attribute::Trait::StorableClone(3pmUser Contributed Perl DocumentatiMooseX::Clone::Meta::Attribute::Trait::StorableClone(3pm)

NAME
MooseX::Clone::Meta::Attribute::Trait::StorableClone - The Moose::Meta::Attribute trait for deeply cloning attributes using Storable. SYNOPSIS
# see MooseX::Clone has foo => ( traits => [qw(StorableClone)], isa => "Something", ); my $clone = $object->clone; # $clone->foo will equal Storable::dclone($object->foo) DESCRIPTION
This meta attribute trait provides a "clone_value" method, in the spirit of "get_value" and "set_value". This allows clone methods such as the one in MooseX::Clone to make use of this per-attribute cloning behavior. DERIVATION
Deriving this role for your own cloning purposes is encouraged. This will allow your fine grained cloning semantics to interact with MooseX::Clone in the RightX way. ATTRIBUTES
clone_only_objects Whether or not Data::Visitor should be used to clone arbitrary structures. Objects found in these structures will be cloned using clone_object_value. If true then non object values will be copied over in shallow cloning semantics (shared reference). Defaults to false (all reference will be cloned). clone_visitor_config A hash ref used to construct "clone_visitor". Defaults to the empty ref. This can be used to alter the cloning behavior for non object values. clone_visitor The Data::Visitor::Callback object that will be used to clone. It has an "object" handler that delegates to "clone_object_value" and sets "tied_as_objects" to true in order to deeply clone tied structures while retaining magic. Only used if "clone_only_objects" is false and the value of the attribute is not an object. METHODS
clone_value $target, $proto, %args Clones the value the attribute encapsulates from $proto into $target. clone_value_data $value, %args Does the actual cloning of the value data by delegating to a "clone" method on the object if any. If the object does not support a "clone" method an error is thrown. If the value is not an object then it will not be cloned. In the future support for deep cloning of simple refs will be added too. clone_object_value $object, %args This is the actual workhorse of "clone_value_data". clone_any_value $value, %args Uses "clone_visitor" to clone all non object values. Called from "clone_value_data" if the value is not an object and "clone_only_objects" is false. perl v5.10.1 2009-04-11 MooseX::Clone::Meta::Attribute::Trait::StorableClone(3pm)
All times are GMT -4. The time now is 02:22 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy