1836461 Members
2178 Online
110101 Solutions
New Discussion

Re: raw FS

 
Prashanth Waugh
Esteemed Contributor

raw FS


what are the steps for creating the raw File system and extending it.

Thanks
For success, attitude is equally as important as ability
6 REPLIES 6
Jeeshan
Honored Contributor

Re: raw FS

Hi Atul

raw file system is that which have no valid file system.
after creating lvol, application used the lvol as raw file system. no need to create mkfs command.

you can extend lvol.
a warrior never quits
Rita C Workman
Honored Contributor

Re: raw FS

And to extend a raw file system, you are simply extending the lvol using the lvextend command(s).


Rgrds,
Rita
Sajjad Sahir
Honored Contributor

Re: raw FS

dear Athulkumar
I mean from u posting u would like to extend
logical raw devices
the command is lvextend.

thanks and regards

sajjad

SUDHAKAR_18
Trusted Contributor

Re: raw FS

create a logical volume ..
Lvcreate -n rawvol1 -L vg01
don't create file sys becaz it is raw volme.

extend it fsadm -b rawvol1

HTH
whiteknight
Honored Contributor

Re: raw FS

Atul,

Create LV
lvcreate -L /dev/vgXX, it will create the raw device for you.

ExtendLV

lvextend -L /dev/vgXX/rlvolYY


Hope this hlp

WK


WK
Problem never ends, you must know how to fix it
Rasheed Tamton
Honored Contributor

Re: raw FS

I will make it little bit more clear as mentioned above:

lvcreate -L 100MB -n oravol1 /dev/vgora

[will create 100MB size lvol named oravol1 on vgora volume group.

lvextend -L 200 /dev/vgora/oravol1

[will extend the above LV to 200MB]

When you start to use it (with oracle or any RDBMS) mention it with the prefix of "r" (raw)
i.e., /dev/vgora/roravol1

oravol1 will be called as roravol1.

Regards.