- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: export path
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
03-19-2003 02:41 AM
03-19-2003 02:41 AM
export path
/CDROM access=server1,root=server1
where /CDROM is the mount point of cdrom
then run
#exportfs -a
exportfs error: /CDROM: Read-only file system
how to export the CDROM path ? thx.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 02:48 AM
03-19-2003 02:48 AM
Re: export path
/CDROM access=server1,root=server1 -ro
Include the -ro option(read only) in the exports file
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 02:49 AM
03-19-2003 02:49 AM
Re: export path
Add the -o ro
optin to your comman ro=read only
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 02:57 AM
03-19-2003 02:57 AM
Re: export path
Normally, we do the following:
Server A
- mount -r /dev/dsk/c2t1d0 /cdrom
- Add "/cdrom -ro" on /etc/exports file
- run "exportfs -av"
Server B
- mount serverA:/cdrom /cdrom
hope this helps!
Best Regards
Yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 04:05 AM
03-19-2003 04:05 AM
Re: export path
i'm also recomend to add -r when mount the cdrom and -ro in the /etc/exports file
regards
mahmoud khalefa
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 05:33 PM
03-19-2003 05:33 PM
Re: export path
/cd_rom -ro -anon=65534 ,access=server1,root=server1
then i run
# exportfs -a
then I mount it on server1
#mount server2:/cd_rom /tmp/cdrom
mount: access denied for server1:/cd_rom
How to fix it? thx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 05:38 PM
03-19-2003 05:38 PM
Re: export path
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 07:19 PM
03-19-2003 07:19 PM
Re: export path
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 10:56 PM
03-19-2003 10:56 PM
Re: export path
Even for mounting again u need to specify the read only option.
Thanks