- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: how to mount a file system from one linux m/c ...
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
09-11-2008 01:11 AM
09-11-2008 01:11 AM
how to mount a file system from one linux m/c to another linux m/c
I want to mount a file system from one linux m/c to another linux m/c.For ex:
I want to mount /res/st_gg(from linux1) to /local/dr (linux2).
I have given the following command:
#mount 192.6.8.55:/res/st_gg /local/dr
It is displaying permission denied.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2008 02:44 AM
09-11-2008 02:44 AM
Re: how to mount a file system from one linux m/c to another linux m/c
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2008 02:54 AM
09-11-2008 02:54 AM
Re: how to mount a file system from one linux m/c to another linux m/c
#service nfs status
if not running start nfs service
#service nfs start
add entry on machine A in /etc/exports see my entry
suxde900 # cat /etc/exports
/data -access=192.78.148.150,root=192.78.148.150
Run "exportfs -a"
on machine B
#mkdir /data
run mount command
#mount -F nfs machineA:/data /data
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2008 03:24 AM
09-11-2008 03:24 AM
Re: how to mount a file system from one linux m/c to another linux m/c
You have define there user name and password to access of the remote machine.
Regards,
Gokul Chandola
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2008 04:36 AM
09-11-2008 04:36 AM
Re: how to mount a file system from one linux m/c to another linux m/c
>>#mount 192.6.8.55:/res/st_gg /local/dr
It is displaying permission denied. <<<
MAke sure that you have nfs service running and file system in question is exported to another linux box using exportfs
Once done you will not get this error.