- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Install NFS on Linux Mandrake
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
Discussions
Discussions
Discussions
Forums
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
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
тАО07-03-2003 05:24 AM
тАО07-03-2003 05:24 AM
I am trying to mount a cdrom on a linux mandrake server to a solaris server.
I created the entry in /etc/exports file on the linux server.
/test remote_server_name (ro,all_squash)
But I cannot execute the exportfs command. I think that nfs is not installed on the server. How do I install NFS on the linux server.
Thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-03-2003 05:49 AM
тАО07-03-2003 05:49 AM
Re: Install NFS on Linux Mandrake
make sure that there is no space between
remote_server_name and permissions
what error message do you getwhile trying to execute the "exportfs" command
anyway the "nfs" and "portmap" services should be up.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-03-2003 05:56 AM
тАО07-03-2003 05:56 AM
Re: Install NFS on Linux Mandrake
You can install nfs either from your distro CDs or from here :
http://speakeasy.rpmfind.net/linux/rpm2html/search.php?query=nfs&submit=Search+...&system=mandrake&arch=
Notice that you need montd and portmap to be running...
Notice also that you have to mount your cdrom before executing exportfs -a and trying to mount it from Solaris.
hth
J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-03-2003 05:59 AM
тАО07-03-2003 05:59 AM
Re: Install NFS on Linux Mandrake
you can verify if nfs server is running this from root user on the linux server:
# rpcinfo -p localhost
this should show two lines like these:
...
100003 2 udp 2049 nfs
100003 3 udp 2049 nfs
...
if it is so, you can restart the nfs service forcing the read of the /etc/exports that you
modified:
# service nfs restart
if you don't see the two lines above, maybe the nfs service is installed but it isn't running:
# service nfs start
to start it.
Alexander's and Jerome's suggestions are right.
Hi
Claudio
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-03-2003 06:55 AM
тАО07-03-2003 06:55 AM
Re: Install NFS on Linux Mandrake
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-03-2003 06:59 AM
тАО07-03-2003 06:59 AM
Re: Install NFS on Linux Mandrake
Can you tell me how to install NFS through the CDs......commands etc...
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-03-2003 07:45 AM
тАО07-03-2003 07:45 AM
Re: Install NFS on Linux Mandrake
-balaji
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-03-2003 08:31 AM
тАО07-03-2003 08:31 AM
Re: Install NFS on Linux Mandrake
the command what i had written earlier was to check if it was installed.
it should be
rpm -Uvh
-balaji
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-03-2003 12:17 PM
тАО07-03-2003 12:17 PM
Re: Install NFS on Linux Mandrake
from gnome locate gnorpm, try add/install, find nfs packages in CD and add/install,
from KDE locate 'install package', same procedure.
rpm -Uvh filename.rpm is, once you have run 'mount /dev/cdrom /mnt/cdrom' and 'cd //mnt/cdrom/subdirectory where packages are' the best solution, straight and efficient... like Balaji's tips, as usual.
J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-03-2003 12:26 PM
тАО07-03-2003 12:26 PM
Re: Install NFS on Linux Mandrake
For the install
rpm -pi
For update
rpm -pU
But are you shure that you don't have
the nfs server installed?
Check rpm -qa | grep nfs
check for nfs server package
Caesar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-03-2003 11:08 PM
тАО07-03-2003 11:08 PM
SolutionMandrake have a great tool called "urpmi".
There is no need to mount the cd before installing. It will prompt you which cd is required.
From the cmd line run urpmi followed by the package name that you want to install. If the name is not exact it will give you a list that you can choose from.
[root@drake]# urpmi nfs
You can also add mirrors update in urpmi so that update on your system are done automaticly.
Thanks,
JP