Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I add a partition to AIX 4.3?

Status
Not open for further replies.

JohnLynn

Technical User
Feb 2, 2001
38
US
I just recieved a Model R50. It has 2 18gig drives mirrored (I think). I would like to add a partition called "/u".

1. Recommenadation on how to procede.

2. Recommendations for a AIX Server Hardware Management book?

3. Is there a REAL paper manual to read? ( We recieved hundreds of CDs in the developer package. No joke. Just would like a place to start to I may RTFM. )

Thanks for the look.
John G. Lynn



AIX Version 4
(C) Copyrights by IBM and by others 1982, 1996.
login: root
root's Password:
* Welcome to AIX Version 4.3! *
*
* Please see the README file in /usr/lpp/bos for information pertinent to *
* this release of the AIX Operating System. *
Last unsuccessful login: Wed Aug 14 06:39:11 CDT 2002 on /dev/tty0

Last login: Mon Aug 19 10:54:12 CDT 2002 on /dev/pts/0 from linux75

[root@RISC6000]/usr/lib/sf/src>



[root@RISC6000]/usr/lib/sf/src>df
Filesystem 512-blocks Free %Used Iused %Iused Mounted on
/dev/hd4 65536 52440 20% 927 6% /
/dev/hd2 1245184 57520 96% 22044 15% /usr
/dev/hd9var 65536 17928 73% 439 6% /var
/dev/hd3 65536 62432 5% 56 1% /tmp
/dev/hd1 131072 856 100% 1557 10% /home
[root@RISC6000]/usr/lib/sf/src>
 
I would not add a partition called "/u" this is a link to /home on AIX.
 
Also, you can check to see if rootvg is mirrored my using `lsvg -l rootvg` and check the LP and PP columns to see if it is doubled, if it is then it is mirrored.
 
Hi,

in version 3 of aix, home filesystem was mounted under /u.

For back compatibility, or whit other unix, some applications stores data under /u/....
As AIXSPadmin has alreadey indicated, in AIX 4, there is a link between /u and /home.
If the data that the application stores are few, don't do
anything, leave that a directory (as MyAppl) is created,
under home.
If data are a lot, is better if you create a filesystem nemed /home/MyAppl (just an example), and yor application
will create files in a not standard JFS.

(When you will remove these data, you can remove this jfs,
instead to have to reduce /home, that is not immediate)

Ciao.

 
While you are downloading the redbooks, here are some LVM commands to do a man on:

lsvg
lspv
lslv

You will have to use all three commands with various switches (mostly -l and -p) and stare at the screen for quite some time but you will figure it out eventually.

If you are going to add some data filesystems I suggest creating a new volume group on disks other than the two (I assume) in rootvg.

To see if rootvg is mirrored:
#lsvg -l rootvg
Look to see if 2*LP=PP, if so you are mirrored. IBM Certified -- AIX 4.3 Obfuscation
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top