Unix Technical Forum

Help - how to create a volume from sssa hdisk13

This is a discussion on Help - how to create a volume from sssa hdisk13 within the AIX Operating System forums, part of the Unix Operating Systems category; --> Hello. I have a created an ssa RAID-5 disk array. What are the steps in AIX 4.3.+ smit to ...


Go Back   Unix Technical Forum > Unix Operating Systems > AIX Operating System

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 01-05-2008, 07:51 AM
C C
 
Posts: n/a
Default Help - how to create a volume from sssa hdisk13

Hello.

I have a created an ssa RAID-5 disk array. What are the steps in AIX 4.3.+
smit to make use of the hdisk13 that I have created. (Add a volume group,
or Add a physical volume, etc...) Do I have to do the cfgmgr? The hdisk13
is already visible in the "List All Defined SSA Raid Arrays" in "smit
ssaraid".

Thanks in advance for your help.


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 01-05-2008, 07:51 AM
sllabres
 
Posts: n/a
Default Re: Help - how to create a volume from sssa hdisk13

The way is does not differ from the filesytem creation for
a SCSI hdisk and is somewhat like:

o create a volume group
mkvg -y vgname /dev/hdisk13

o create a logical volume in the volume group
(8 is the number of the physical partitions, use whatever you need)
mklv -y lvname vgname 8

o create a filesystem in the logical volume (type jfs for aix433)
crfs -v jfs -d lvname -m /mntpoint

o mount the filesystem
mount /mntpoint

You should read the man pages for the commands above as there
are some more things you should concider (e.g. the above filesytem
is limited to 2GB files etc.)

Bye, Stefan.. . .


C C wrote:
> Hello.
>
> I have a created an ssa RAID-5 disk array. What are the steps in AIX 4.3.+
> smit to make use of the hdisk13 that I have created. (Add a volume group,
> or Add a physical volume, etc...) Do I have to do the cfgmgr? The hdisk13
> is already visible in the "List All Defined SSA Raid Arrays" in "smit
> ssaraid".
>
> Thanks in advance for your help.


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 01-05-2008, 07:51 AM
C C
 
Posts: n/a
Default Re: Help - how to create a volume from sssa hdisk13

Estefan,

Thank you so much. Is there a need of a reboot in any of the steps?
Or shall I ask - can I do these steps with all users on line?



"sllabres" <sllabres@baden-online.de> wrote in message
news:1119812723.559610.248880@o13g2000cwo.googlegr oups.com...
> The way is does not differ from the filesytem creation for
> a SCSI hdisk and is somewhat like:
>
> o create a volume group
> mkvg -y vgname /dev/hdisk13
>
> o create a logical volume in the volume group
> (8 is the number of the physical partitions, use whatever you need)
> mklv -y lvname vgname 8
>
> o create a filesystem in the logical volume (type jfs for aix433)
> crfs -v jfs -d lvname -m /mntpoint
>
> o mount the filesystem
> mount /mntpoint
>
> You should read the man pages for the commands above as there
> are some more things you should concider (e.g. the above filesytem
> is limited to 2GB files etc.)
>
> Bye, Stefan.. . .
>
>
> C C wrote:
> > Hello.
> >
> > I have a created an ssa RAID-5 disk array. What are the steps in AIX

4.3.+
> > smit to make use of the hdisk13 that I have created. (Add a volume

group,
> > or Add a physical volume, etc...) Do I have to do the cfgmgr? The

hdisk13
> > is already visible in the "List All Defined SSA Raid Arrays" in "smit
> > ssaraid".
> >
> > Thanks in advance for your help.

>



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 01-05-2008, 07:51 AM
C C
 
Posts: n/a
Default Re: Help - how to create a volume from sssa hdisk13

Sorry I misspelled your name Stefan.

"C C" <someone@sbcglobal.net> wrote in message
news:2mJve.159$4m3.7@newssvr19.news.prodigy.com...
> Estefan,
>
> Thank you so much. Is there a need of a reboot in any of the steps?
> Or shall I ask - can I do these steps with all users on line?
>
>
>
> "sllabres" <sllabres@baden-online.de> wrote in message
> news:1119812723.559610.248880@o13g2000cwo.googlegr oups.com...
> > The way is does not differ from the filesytem creation for
> > a SCSI hdisk and is somewhat like:
> >
> > o create a volume group
> > mkvg -y vgname /dev/hdisk13
> >
> > o create a logical volume in the volume group
> > (8 is the number of the physical partitions, use whatever you need)
> > mklv -y lvname vgname 8
> >
> > o create a filesystem in the logical volume (type jfs for aix433)
> > crfs -v jfs -d lvname -m /mntpoint
> >
> > o mount the filesystem
> > mount /mntpoint
> >
> > You should read the man pages for the commands above as there
> > are some more things you should concider (e.g. the above filesytem
> > is limited to 2GB files etc.)
> >
> > Bye, Stefan.. . .
> >
> >
> > C C wrote:
> > > Hello.
> > >
> > > I have a created an ssa RAID-5 disk array. What are the steps in AIX

> 4.3.+
> > > smit to make use of the hdisk13 that I have created. (Add a volume

> group,
> > > or Add a physical volume, etc...) Do I have to do the cfgmgr? The

> hdisk13
> > > is already visible in the "List All Defined SSA Raid Arrays" in "smit
> > > ssaraid".
> > >
> > > Thanks in advance for your help.

> >

>
>



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 01-05-2008, 07:51 AM
sllabres
 
Posts: n/a
Default Re: Help - how to create a volume from sssa hdisk13

Online of course.

If you are not that familiary with AIX you might find
smit (or even better smitty) usefull (e.g. 'smitty lvm')

Bye, Stefan... . .

C C wrote:
> Sorry I misspelled your name Stefan.
>
> "C C" <someone@sbcglobal.net> wrote in message
> news:2mJve.159$4m3.7@newssvr19.news.prodigy.com...
> > Estefan,
> >
> > Thank you so much. Is there a need of a reboot in any of the steps?
> > Or shall I ask - can I do these steps with all users on line?


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 01-05-2008, 07:51 AM
C C
 
Posts: n/a
Default Re: Help - how to create a volume from sssa hdisk13

Thanks. I use smit anyway.

"sllabres" <sllabres@baden-online.de> wrote in message
news:1119864290.931254.172700@g44g2000cwa.googlegr oups.com...
> Online of course.
>
> If you are not that familiary with AIX you might find
> smit (or even better smitty) usefull (e.g. 'smitty lvm')
>
> Bye, Stefan... . .
>
> C C wrote:
> > Sorry I misspelled your name Stefan.
> >
> > "C C" <someone@sbcglobal.net> wrote in message
> > news:2mJve.159$4m3.7@newssvr19.news.prodigy.com...
> > > Estefan,
> > >
> > > Thank you so much. Is there a need of a reboot in any of the steps?
> > > Or shall I ask - can I do these steps with all users on line?

>



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 03:53 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
www.UnixAdminTalk.com