Mar 10, 2006 #1 madra MIS Joined Feb 12, 2003 Messages 95 Location GB How do you estimate the size of what a mksysb will be ? Do you go solely from the size of the boot.image, or do you calculate the total size of the size of space used with rootvg ? thanks madra
How do you estimate the size of what a mksysb will be ? Do you go solely from the size of the boot.image, or do you calculate the total size of the size of space used with rootvg ? thanks madra
Mar 10, 2006 #2 p5wizard IS-IT--Management Joined Apr 18, 2005 Messages 3,165 Location BE space used in rootvg, in mounted filesystems. HTH, p5wizard Upvote 0 Downvote
Mar 10, 2006 #3 mrn MIS Joined Apr 27, 2001 Messages 3,993 Location GB Remember to discount any raw logical volumes you may have. You can also create a file called /etc/exclude.rootvg in which I normally exclude /tmp. Mike "A foolproof method for sculpting an elephant: first, get a huge block of marble, then you chip away everything that doesn't look like an elephant." http://www.airport-parking-site.co.uk/ Upvote 0 Downvote
Remember to discount any raw logical volumes you may have. You can also create a file called /etc/exclude.rootvg in which I normally exclude /tmp. Mike "A foolproof method for sculpting an elephant: first, get a huge block of marble, then you chip away everything that doesn't look like an elephant." http://www.airport-parking-site.co.uk/
Mar 12, 2006 #4 p5wizard IS-IT--Management Joined Apr 18, 2005 Messages 3,165 Location BE Mike, space used in rootvg, in mounted filesystems. This already excludes RAW LVs... But you're right about /etc/exclude.rootvg. HTH, p5wizard Upvote 0 Downvote
Mike, space used in rootvg, in mounted filesystems. This already excludes RAW LVs... But you're right about /etc/exclude.rootvg. HTH, p5wizard
Mar 13, 2006 #5 mrn MIS Joined Apr 27, 2001 Messages 3,993 Location GB I was refering to user defined paging space and raw devices like sysdumpdev. Mike "A foolproof method for sculpting an elephant: first, get a huge block of marble, then you chip away everything that doesn't look like an elephant." http://www.airport-parking-site.co.uk/ Upvote 0 Downvote
I was refering to user defined paging space and raw devices like sysdumpdev. Mike "A foolproof method for sculpting an elephant: first, get a huge block of marble, then you chip away everything that doesn't look like an elephant." http://www.airport-parking-site.co.uk/
Mar 13, 2006 #6 RodKnowlton MIS Joined Apr 26, 2000 Messages 1,005 Here's how to check the actual mksysb size without using up disk space or tape: Code: mknod /tmp/mksysbtest p mksysb /tmp/mksysbtest & dd if=/tmp/mksysbtest of=/dev/null obs=1024 rm /tmp/mksysbtest Add any flags you would normally use to the mksysb command. The "records out" line of output from dd will be your mksysb size in Kb. Rod Knowlton IBM Certified Advanced Technical Expert pSeries and AIX 5L CompTIA Linux+ CompTIA Security+ Upvote 0 Downvote
Here's how to check the actual mksysb size without using up disk space or tape: Code: mknod /tmp/mksysbtest p mksysb /tmp/mksysbtest & dd if=/tmp/mksysbtest of=/dev/null obs=1024 rm /tmp/mksysbtest Add any flags you would normally use to the mksysb command. The "records out" line of output from dd will be your mksysb size in Kb. Rod Knowlton IBM Certified Advanced Technical Expert pSeries and AIX 5L CompTIA Linux+ CompTIA Security+