- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: raw FS
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2008 04:07 AM
04-24-2008 04:07 AM
raw FS
what are the steps for creating the raw File system and extending it.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2008 04:35 AM
04-24-2008 04:35 AM
Re: raw FS
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2008 04:41 AM
04-24-2008 04:41 AM
Re: raw FS
Rgrds,
Rita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2008 09:32 AM
04-24-2008 09:32 AM
Re: raw FS
I mean from u posting u would like to extend
logical raw devices
the command is lvextend.
thanks and regards
sajjad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2008 09:47 PM
04-27-2008 09:47 PM
Re: raw FS
Lvcreate -n rawvol1 -L
don't create file sys becaz it is raw volme.
extend it fsadm -b
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2008 10:11 PM
04-27-2008 10:11 PM
Re: raw FS
Create LV
lvcreate -L
ExtendLV
lvextend -L
Hope this hlp
WK
WK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2008 11:41 PM
04-27-2008 11:41 PM
Re: raw FS
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.