- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: nfs a directory from sun to linux
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
11-22-2005 04:01 PM
11-22-2005 04:01 PM
nfs a directory from sun to linux
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2005 05:41 PM
11-22-2005 05:41 PM
Re: nfs a directory from sun to linux
`share -o ro /tmp`
will share the local tmp directory via NFS.
`dfshares` will show available shares.
`dfshares hostname` will show available shares on hostname.
you casn also use the showmount for it.
To make the share permanent,edit the file /etc/dfs/sharetab
for the /tmp sharing (example only)
/tmp - nfs ro
Best regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2005 06:39 PM
11-22-2005 06:39 PM
Re: nfs a directory from sun to linux
i get a error nfs dfshares:tc4sun: RPC: Program not registered
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2005 06:55 PM
11-22-2005 06:55 PM
Re: nfs a directory from sun to linux
/etc/init.d/nfs.server start
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2005 08:12 PM
11-22-2005 08:12 PM
Re: nfs a directory from sun to linux
tc4sun the host name.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2005 11:26 PM
11-22-2005 11:26 PM
Re: nfs a directory from sun to linux
/etc/init.d/rpc start
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2005 02:52 PM
11-23-2005 02:52 PM
Re: nfs a directory from sun to linux
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2005 06:21 PM
11-23-2005 06:21 PM
Re: nfs a directory from sun to linux
/etc/dfs/dfstab
place an entry in it:
share -F nfs -o ro /tmp
for example to share the /tmp directory (not that you would wanna do this).
after that restart the rpc service
/etc/init.d/rpc stop
/etc/init.d/rpc start
now restart the nfs service
/etc/init.d/nfs stop
/etc/init.d/nfs start
Hope it helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2005 07:40 AM
11-24-2005 07:40 AM
Re: nfs a directory from sun to linux
/sbin/service NFS start
Also make it permenant ( survive the reboots)
/sbin/chkconfig --level 234 NFS on
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2005 05:24 PM
11-27-2005 05:24 PM
Re: nfs a directory from sun to linux
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2005 05:10 PM
11-28-2005 05:10 PM
Re: nfs a directory from sun to linux
Do the following steps..
Configure NFS server in Solaris 5.8..
#vi /etc/dfs/dfstab
share -F nfs -o rw=
for example..
share -F nfs -o=192.168.1.10 -d "home directory" /export/home
save and come out..
#/etc/init.d/nfs.server stop
#/etc/init.d/nfs.server start
Go to client machine (Linux machine) and create a directory under which u want to mount the share directory..
#mkdir /dump
#mount
For example..
#mount 192.168.1.50:/export/home /dump
Hope it would work...
cheers
indrajit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2005 04:16 PM
11-30-2005 04:16 PM
Re: nfs a directory from sun to linux
mount: 172.25.1.24:/tc4home failed, reason given by server: Permission denied