- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NFS for "RAW" file system
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-2005 11:25 PM
04-24-2005 11:25 PM
NFS for "RAW" file system
I want to export raw file system i.e via "NFS".How to export "raw" file system in hp-unix.we have 20 gb raw file system in one system and we can use this raw file system to another system i.e via NFS.
If it is possible, pls give the procedure.
Regards,
Sureshkumar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2005 11:41 PM
04-24-2005 11:41 PM
Re: NFS for "RAW" file system
No, NFS only allow exporting filesystem, not raw devices.
The concept for "exporting" raw devices (disks,LUN, tape etc.) is SAN.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2005 11:44 PM
04-24-2005 11:44 PM
Re: NFS for "RAW" file system
NFS means Networked File System and requires real files and directories on the local (server) system so the client can see these files. NFS has no concept of raw blocks of data.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2005 11:47 PM
04-24-2005 11:47 PM
Re: NFS for "RAW" file system
May I ask you why you want to export a "raw" partition?
Are you having Oracle RAC? If the purpose is for some backup, it involves some different configurations.
Raw partition cannot be NFS exported as NFS is only meant to export filesystems over the network, not raw partitions.
If you let us know what you want to achieve, then many people may give you better suggestions.
With regards,
Mohan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2005 12:21 AM
04-25-2005 12:21 AM
Re: NFS for "RAW" file system
We have created oracle partions on one system.Now I want to copy those raw file system to another system.So we need nfs for this one.
Thanks,
Suresh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2005 12:36 AM
04-25-2005 12:36 AM
Re: NFS for "RAW" file system
Read carefully what Bill Hassell has written above this.
There is nothing called "raw" file system.
If you want to copy data from here to another server, then you may perform a DD on that LVOL and restore it on the other system.
Though I am not sure if your purpose will be served by doing this. The other method is export the data, import to the other server.
DD can be done as follows:
source:
dd if=/dev/vg02/lol3 of=/dev/rmt/0m bs=1024k
destination:
dd if=/dev/rmt/0m of=/dev/vg03/lvol5 bs=1024k
Remember, you may end up using more tapes, as each lvol has to be copied in a seperate tape. There is no such thing as appending.
Alternately, you can use backup softwares which can take raw backups and restore.
With regards,
Mohan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2005 07:18 AM
04-25-2005 07:18 AM
Re: NFS for "RAW" file system
Do you want to clone the Oracle database to a different system ?
NFS is not an option for copying raw devices, it only apply to filesystem.
As mentioned by other, dd is an alternative, a better (easier) is Data Protector.
Another alternative is to clone the database, using Oracle RMAN.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2005 09:37 PM
04-25-2005 09:37 PM
Re: NFS for "RAW" file system
From a unix point of view, you might be able to export the directory in which you have the devices. Then, on the target mount this directory and see if you can use these device-files. On the target, you need to access these devices as files kind of like you can mount a iso-image.
From a storage point of view, I see this as a kind of iscsi export. On the source machine, get some iscsi-emulating software and "iscsi-export" the device. On the target-machine just use this device with iscsi-drivers.
If it is just to dump data from one disk to an other (or from one machine to an other) best to hook the target disk to the source machine and use `dd` to dump the data. Then put the target disk in its target machine and off you go.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2005 09:45 AM
04-26-2005 09:45 AM
Re: NFS for "RAW" file system
Bill Hassell, sysadmin