1832592 Members
2335 Online
110043 Solutions
New Discussion

raw logical volume

 
SOLVED
Go to solution
Asad Malik
Frequent Advisor

raw logical volume

Hi
how to access raw logical volume and store files on it.
On block LV we can create filesystem and access through mount point.
2 REPLIES 2
John Palmer
Honored Contributor
Solution

Re: raw logical volume

Hi Asad,

You can't 'store files' on a raw logical volume without creating a filesystem and mounting it.

What you can do with it depends on the application which is going to use it as an area of disk space, supply the volume name instead of a regular filename.

For instance with Oracle, you configure it by creating a tablespace on '/dev/vg??/rlvol?' and Oracle formats the volume as it requires.

Regards,
John

Rainer_1
Honored Contributor

Re: raw logical volume

on raw device you can store files with ie:
tar cvf /dev/vgXX/rlvolX files ...
but this is not usual
Also remember that filesystems are created with raw devices but accessed via block devices / mount points.