How do I mount an NFS share in Windows 8?How do I mount an NFS share in Windows 10 upgraded from Windows 7...
How do you voice extended chords?
Saint abbreviation
Salsa20 Implementation: Sum of 2 Words with Carries Suppressed
Early credit roll before the end of the film
Why is it that Bernie Sanders is always called a "socialist"?
Does dispel magic end a master's control over their undead?
How would an AI self awareness kill switch work?
Hilchos Shabbos English Sefer
How do you catch Smeargle in Pokemon Go?
Why zero tolerance on nudity in space?
Is a new boolean field better than null reference when a value can be meaningfully absent?
Do "fields" always combine by addition?
A curious equality of integrals involving the prime counting function?
Am I a Rude Number?
Constexpr if with a non-bool condition
False written accusations not made public - is there law to cover this?
Cat is tipping over bed-side lamps during the night
Is there any risk in sharing info about technologies and products we use with a supplier?
Do authors have to be politically correct in article-writing?
Why is Agricola named as such?
Square Root Distance from Integers
How should I handle players who ignore the session zero agreement?
Why publish a research paper when a blog post or a lecture slide can have more citation count than a journal paper?
It took me a lot of time to make this, pls like. (YouTube Comments #1)
How do I mount an NFS share in Windows 8?
How do I mount an NFS share in Windows 10 upgraded from Windows 7 Ultimate?Mounting NFS in CygwinSetting up NIS/NFS on Mac OS 10.6How to mount NFS export on Mac OS X?NFS share access - Permission deniedBest way to mount a remote ZFS share in Windows and make it appear local, or close to localHow to backup apps + data using TitaniumBackup directly to SMB shareNFS from MacOS to Centos in virtualboxusing NFS over unreliable networks (wifi/mobile)How to NFS-export /Volumes/drive as /nfs/drive on Mac OS X?Centos 7 diskless client cannot mount NFSHow to mount NFS share in Cygwin?
I have a NAS that I'd like to mount over NFS. It works great on my Mac, but I cannot figure out how to mount this device on Windows 8.
I've searched a bit online, but all the articles seem to apply to Windows 7 and involve the mount
command which doesn't seem to be part of Windows 8. What's the command to do this?
windows windows-8 nfs
add a comment |
I have a NAS that I'd like to mount over NFS. It works great on my Mac, but I cannot figure out how to mount this device on Windows 8.
I've searched a bit online, but all the articles seem to apply to Windows 7 and involve the mount
command which doesn't seem to be part of Windows 8. What's the command to do this?
windows windows-8 nfs
There are a discussion about it on SeverFault: serverfault.com/questions/190020/…
– user386339
Nov 3 '14 at 15:41
add a comment |
I have a NAS that I'd like to mount over NFS. It works great on my Mac, but I cannot figure out how to mount this device on Windows 8.
I've searched a bit online, but all the articles seem to apply to Windows 7 and involve the mount
command which doesn't seem to be part of Windows 8. What's the command to do this?
windows windows-8 nfs
I have a NAS that I'd like to mount over NFS. It works great on my Mac, but I cannot figure out how to mount this device on Windows 8.
I've searched a bit online, but all the articles seem to apply to Windows 7 and involve the mount
command which doesn't seem to be part of Windows 8. What's the command to do this?
windows windows-8 nfs
windows windows-8 nfs
asked Dec 29 '12 at 1:22
Mike ChristensenMike Christensen
1,455112435
1,455112435
There are a discussion about it on SeverFault: serverfault.com/questions/190020/…
– user386339
Nov 3 '14 at 15:41
add a comment |
There are a discussion about it on SeverFault: serverfault.com/questions/190020/…
– user386339
Nov 3 '14 at 15:41
There are a discussion about it on SeverFault: serverfault.com/questions/190020/…
– user386339
Nov 3 '14 at 15:41
There are a discussion about it on SeverFault: serverfault.com/questions/190020/…
– user386339
Nov 3 '14 at 15:41
add a comment |
8 Answers
8
active
oldest
votes
To connect to an NFS share, you need to make sure you have the NFS client installed. This component is a part of the Services for Unix component. Go into the control panel, Programs and Features, then Turn Windows features on or off. Make sure Services for Unix-based Applications (DEPRECATED) is checked, and click OK. Be advised that typically only Ultimate and Enterprise versions of Windows typically have this component available.
This will install the MS NFS client and (AFAIK) the mount
command. I'm not at work so I can't verify exactly. If I remember I'll update Monday.
If your NAS can enable CIFS or SAMBA style shares, I would use that instead.
1
Hmm I don't haveServices for Unix-based Applications
in the list. I'm running Windows 8 Professional.
– Mike Christensen
Dec 29 '12 at 2:00
1
From what I can tell, SUA was available in the Windows 8 Beta but removed in the official release. Does this mean Windows 8 flat out has no NFS support?
– Mike Christensen
Dec 29 '12 at 2:04
6
@Mike Looking here: blogs.msdn.com/b/sfu/archive/2012/08/01/… I see in the comments that it's only available in Win 8 Enterprise.
– Bacon Bits
Dec 29 '12 at 2:22
2
My NAS does support SMB, however it's super buggy and I kept on losing files because the ACLs would get corrupted somehow and then no account (not even root) could read the file. I lost gigs of stuff due to that, and since it's a backup device I need to be able to trust it.. I'll look into third party NFS drivers.
– Mike Christensen
Dec 29 '12 at 2:33
2
@rjt Supported clients are better than deprecated clients.
– Bacon Bits
Aug 4 '16 at 19:58
|
show 7 more comments
In Windows 8 (8.1 Enterprise for me here)...
There are two parts... First installing the client and second mounting the drive...
Installing the client
- Go to Control Panel → Programs → Programs and Features
- Select: Turn Windows features on or off" from the left hand navigation.
- Scroll down to "Services for NFS" and click the "plus" on the left
- Check "Client for NFS"
- Select "Ok"
- Windows should install the client. Once the client package is install you will have the "mount" command available.
Mounting the export
This assumes the following:
- You know and can ping the hostname of the machine with the NFS exports
- The name of the exported filesystem ( eg. /export, /home/users, /some/cool/file/path )
The file systems are properly exported and accessible
- Open a command prompt. ( Win+ R, enter "cmd" and press OK )
Type:
mount \{machinename}{filesystem} {driveletter}
Examples:
mount \filehosthomeusers H:
mount \server1234longtermfilestorage S:
mount \nas324exports E:
...and that's the basics.
1
I was able to mount the drive by right clicking on the device and selecting a mount option
– dan1111
Jun 6 '15 at 7:37
add a comment |
driver: http://www.citi.umich.edu/projects/nfsv4/windows/
On its NFSv4 project website, the University of Michigan's Center for Information Technology Integration (CITI) has announced that, after 18 months of development and since the start of September, source code for its Windows driver for distributed file system NFSv4.1 has been available from a Git repository. According to the release notes, compilation requires the Windows Driver Development Kit (WinDDK 6000 or later) and installation of the compiled driver requires a Microsoft test certificate. The included test scripts require a Cygwin environment including the gcc-core, make, sunrpc and time packages.
add a comment |
Services for Network File System (NFS) feature is available only in the Windows 8 Enterprise edition. This feature is not available in Windows 8 and Windows 8 Pro editions. Users when upgrading from Windows 7 Ultimate or Windows 7 Enterprise edition to Windows 8 Pro edition can no longer use Services for NFS feature.
In order to continue to use Services for NFS feature in Windows 8 client, Windows 7 users will have to upgrade to Windows 8 Enterprise edition.
Source: http://support.microsoft.com/en-us/kb/2769923
add a comment |
Unless you have Windows 8 Enterprise, you won't be able to accomplish this without 3rd party apps.
I was able to NFS drives mounted in Windows 8 using NekoDrive. You will also need to install the Dokan library.
You can then set up the application to auto-mount the drive.
http://code.google.com/p/nekodrive/
http://web.archive.org/web/20150222074745/http://dokan-dev.net/en/download/
2
Not compatible with Windows 8.
– Zenexer
Feb 26 '14 at 2:02
add a comment |
On my Windows 10 Pro install NFS is available in Turn Windows Features On and Off under Services for NFS:
add a comment |
Installing the client
Go to Control Panel → Programs → Programs and Features
Select: Turn Windows features on or off" from the left hand navigation.
Scroll down to "Services for NFS" and click the "plus" on the left
Check "Client for NFS"
Select "Ok"
Windows should install the client. Once the client package is install you will have the "mount" command available.
mount 192.168.3.5homeslavydata L:
WORKING!!! I use client Win 8.1 Ult and server Ubuntu 12.04 LTS server
add a comment |
I always wander why Windows users do spell a lot. You can mount anything anywhere but most of the guides shows mounting under a letter. C: is to much, who wants more letters in Windows D:, E: , definetelly unix is better with one space for storage starting with /, why windows is still using this old spelling starting when should be enough. it is much more flexible
New contributor
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f525473%2fhow-do-i-mount-an-nfs-share-in-windows-8%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
8 Answers
8
active
oldest
votes
8 Answers
8
active
oldest
votes
active
oldest
votes
active
oldest
votes
To connect to an NFS share, you need to make sure you have the NFS client installed. This component is a part of the Services for Unix component. Go into the control panel, Programs and Features, then Turn Windows features on or off. Make sure Services for Unix-based Applications (DEPRECATED) is checked, and click OK. Be advised that typically only Ultimate and Enterprise versions of Windows typically have this component available.
This will install the MS NFS client and (AFAIK) the mount
command. I'm not at work so I can't verify exactly. If I remember I'll update Monday.
If your NAS can enable CIFS or SAMBA style shares, I would use that instead.
1
Hmm I don't haveServices for Unix-based Applications
in the list. I'm running Windows 8 Professional.
– Mike Christensen
Dec 29 '12 at 2:00
1
From what I can tell, SUA was available in the Windows 8 Beta but removed in the official release. Does this mean Windows 8 flat out has no NFS support?
– Mike Christensen
Dec 29 '12 at 2:04
6
@Mike Looking here: blogs.msdn.com/b/sfu/archive/2012/08/01/… I see in the comments that it's only available in Win 8 Enterprise.
– Bacon Bits
Dec 29 '12 at 2:22
2
My NAS does support SMB, however it's super buggy and I kept on losing files because the ACLs would get corrupted somehow and then no account (not even root) could read the file. I lost gigs of stuff due to that, and since it's a backup device I need to be able to trust it.. I'll look into third party NFS drivers.
– Mike Christensen
Dec 29 '12 at 2:33
2
@rjt Supported clients are better than deprecated clients.
– Bacon Bits
Aug 4 '16 at 19:58
|
show 7 more comments
To connect to an NFS share, you need to make sure you have the NFS client installed. This component is a part of the Services for Unix component. Go into the control panel, Programs and Features, then Turn Windows features on or off. Make sure Services for Unix-based Applications (DEPRECATED) is checked, and click OK. Be advised that typically only Ultimate and Enterprise versions of Windows typically have this component available.
This will install the MS NFS client and (AFAIK) the mount
command. I'm not at work so I can't verify exactly. If I remember I'll update Monday.
If your NAS can enable CIFS or SAMBA style shares, I would use that instead.
1
Hmm I don't haveServices for Unix-based Applications
in the list. I'm running Windows 8 Professional.
– Mike Christensen
Dec 29 '12 at 2:00
1
From what I can tell, SUA was available in the Windows 8 Beta but removed in the official release. Does this mean Windows 8 flat out has no NFS support?
– Mike Christensen
Dec 29 '12 at 2:04
6
@Mike Looking here: blogs.msdn.com/b/sfu/archive/2012/08/01/… I see in the comments that it's only available in Win 8 Enterprise.
– Bacon Bits
Dec 29 '12 at 2:22
2
My NAS does support SMB, however it's super buggy and I kept on losing files because the ACLs would get corrupted somehow and then no account (not even root) could read the file. I lost gigs of stuff due to that, and since it's a backup device I need to be able to trust it.. I'll look into third party NFS drivers.
– Mike Christensen
Dec 29 '12 at 2:33
2
@rjt Supported clients are better than deprecated clients.
– Bacon Bits
Aug 4 '16 at 19:58
|
show 7 more comments
To connect to an NFS share, you need to make sure you have the NFS client installed. This component is a part of the Services for Unix component. Go into the control panel, Programs and Features, then Turn Windows features on or off. Make sure Services for Unix-based Applications (DEPRECATED) is checked, and click OK. Be advised that typically only Ultimate and Enterprise versions of Windows typically have this component available.
This will install the MS NFS client and (AFAIK) the mount
command. I'm not at work so I can't verify exactly. If I remember I'll update Monday.
If your NAS can enable CIFS or SAMBA style shares, I would use that instead.
To connect to an NFS share, you need to make sure you have the NFS client installed. This component is a part of the Services for Unix component. Go into the control panel, Programs and Features, then Turn Windows features on or off. Make sure Services for Unix-based Applications (DEPRECATED) is checked, and click OK. Be advised that typically only Ultimate and Enterprise versions of Windows typically have this component available.
This will install the MS NFS client and (AFAIK) the mount
command. I'm not at work so I can't verify exactly. If I remember I'll update Monday.
If your NAS can enable CIFS or SAMBA style shares, I would use that instead.
edited May 2 '16 at 23:11
Ryan Li
1034
1034
answered Dec 29 '12 at 1:57
Bacon BitsBacon Bits
5,94511618
5,94511618
1
Hmm I don't haveServices for Unix-based Applications
in the list. I'm running Windows 8 Professional.
– Mike Christensen
Dec 29 '12 at 2:00
1
From what I can tell, SUA was available in the Windows 8 Beta but removed in the official release. Does this mean Windows 8 flat out has no NFS support?
– Mike Christensen
Dec 29 '12 at 2:04
6
@Mike Looking here: blogs.msdn.com/b/sfu/archive/2012/08/01/… I see in the comments that it's only available in Win 8 Enterprise.
– Bacon Bits
Dec 29 '12 at 2:22
2
My NAS does support SMB, however it's super buggy and I kept on losing files because the ACLs would get corrupted somehow and then no account (not even root) could read the file. I lost gigs of stuff due to that, and since it's a backup device I need to be able to trust it.. I'll look into third party NFS drivers.
– Mike Christensen
Dec 29 '12 at 2:33
2
@rjt Supported clients are better than deprecated clients.
– Bacon Bits
Aug 4 '16 at 19:58
|
show 7 more comments
1
Hmm I don't haveServices for Unix-based Applications
in the list. I'm running Windows 8 Professional.
– Mike Christensen
Dec 29 '12 at 2:00
1
From what I can tell, SUA was available in the Windows 8 Beta but removed in the official release. Does this mean Windows 8 flat out has no NFS support?
– Mike Christensen
Dec 29 '12 at 2:04
6
@Mike Looking here: blogs.msdn.com/b/sfu/archive/2012/08/01/… I see in the comments that it's only available in Win 8 Enterprise.
– Bacon Bits
Dec 29 '12 at 2:22
2
My NAS does support SMB, however it's super buggy and I kept on losing files because the ACLs would get corrupted somehow and then no account (not even root) could read the file. I lost gigs of stuff due to that, and since it's a backup device I need to be able to trust it.. I'll look into third party NFS drivers.
– Mike Christensen
Dec 29 '12 at 2:33
2
@rjt Supported clients are better than deprecated clients.
– Bacon Bits
Aug 4 '16 at 19:58
1
1
Hmm I don't have
Services for Unix-based Applications
in the list. I'm running Windows 8 Professional.– Mike Christensen
Dec 29 '12 at 2:00
Hmm I don't have
Services for Unix-based Applications
in the list. I'm running Windows 8 Professional.– Mike Christensen
Dec 29 '12 at 2:00
1
1
From what I can tell, SUA was available in the Windows 8 Beta but removed in the official release. Does this mean Windows 8 flat out has no NFS support?
– Mike Christensen
Dec 29 '12 at 2:04
From what I can tell, SUA was available in the Windows 8 Beta but removed in the official release. Does this mean Windows 8 flat out has no NFS support?
– Mike Christensen
Dec 29 '12 at 2:04
6
6
@Mike Looking here: blogs.msdn.com/b/sfu/archive/2012/08/01/… I see in the comments that it's only available in Win 8 Enterprise.
– Bacon Bits
Dec 29 '12 at 2:22
@Mike Looking here: blogs.msdn.com/b/sfu/archive/2012/08/01/… I see in the comments that it's only available in Win 8 Enterprise.
– Bacon Bits
Dec 29 '12 at 2:22
2
2
My NAS does support SMB, however it's super buggy and I kept on losing files because the ACLs would get corrupted somehow and then no account (not even root) could read the file. I lost gigs of stuff due to that, and since it's a backup device I need to be able to trust it.. I'll look into third party NFS drivers.
– Mike Christensen
Dec 29 '12 at 2:33
My NAS does support SMB, however it's super buggy and I kept on losing files because the ACLs would get corrupted somehow and then no account (not even root) could read the file. I lost gigs of stuff due to that, and since it's a backup device I need to be able to trust it.. I'll look into third party NFS drivers.
– Mike Christensen
Dec 29 '12 at 2:33
2
2
@rjt Supported clients are better than deprecated clients.
– Bacon Bits
Aug 4 '16 at 19:58
@rjt Supported clients are better than deprecated clients.
– Bacon Bits
Aug 4 '16 at 19:58
|
show 7 more comments
In Windows 8 (8.1 Enterprise for me here)...
There are two parts... First installing the client and second mounting the drive...
Installing the client
- Go to Control Panel → Programs → Programs and Features
- Select: Turn Windows features on or off" from the left hand navigation.
- Scroll down to "Services for NFS" and click the "plus" on the left
- Check "Client for NFS"
- Select "Ok"
- Windows should install the client. Once the client package is install you will have the "mount" command available.
Mounting the export
This assumes the following:
- You know and can ping the hostname of the machine with the NFS exports
- The name of the exported filesystem ( eg. /export, /home/users, /some/cool/file/path )
The file systems are properly exported and accessible
- Open a command prompt. ( Win+ R, enter "cmd" and press OK )
Type:
mount \{machinename}{filesystem} {driveletter}
Examples:
mount \filehosthomeusers H:
mount \server1234longtermfilestorage S:
mount \nas324exports E:
...and that's the basics.
1
I was able to mount the drive by right clicking on the device and selecting a mount option
– dan1111
Jun 6 '15 at 7:37
add a comment |
In Windows 8 (8.1 Enterprise for me here)...
There are two parts... First installing the client and second mounting the drive...
Installing the client
- Go to Control Panel → Programs → Programs and Features
- Select: Turn Windows features on or off" from the left hand navigation.
- Scroll down to "Services for NFS" and click the "plus" on the left
- Check "Client for NFS"
- Select "Ok"
- Windows should install the client. Once the client package is install you will have the "mount" command available.
Mounting the export
This assumes the following:
- You know and can ping the hostname of the machine with the NFS exports
- The name of the exported filesystem ( eg. /export, /home/users, /some/cool/file/path )
The file systems are properly exported and accessible
- Open a command prompt. ( Win+ R, enter "cmd" and press OK )
Type:
mount \{machinename}{filesystem} {driveletter}
Examples:
mount \filehosthomeusers H:
mount \server1234longtermfilestorage S:
mount \nas324exports E:
...and that's the basics.
1
I was able to mount the drive by right clicking on the device and selecting a mount option
– dan1111
Jun 6 '15 at 7:37
add a comment |
In Windows 8 (8.1 Enterprise for me here)...
There are two parts... First installing the client and second mounting the drive...
Installing the client
- Go to Control Panel → Programs → Programs and Features
- Select: Turn Windows features on or off" from the left hand navigation.
- Scroll down to "Services for NFS" and click the "plus" on the left
- Check "Client for NFS"
- Select "Ok"
- Windows should install the client. Once the client package is install you will have the "mount" command available.
Mounting the export
This assumes the following:
- You know and can ping the hostname of the machine with the NFS exports
- The name of the exported filesystem ( eg. /export, /home/users, /some/cool/file/path )
The file systems are properly exported and accessible
- Open a command prompt. ( Win+ R, enter "cmd" and press OK )
Type:
mount \{machinename}{filesystem} {driveletter}
Examples:
mount \filehosthomeusers H:
mount \server1234longtermfilestorage S:
mount \nas324exports E:
...and that's the basics.
In Windows 8 (8.1 Enterprise for me here)...
There are two parts... First installing the client and second mounting the drive...
Installing the client
- Go to Control Panel → Programs → Programs and Features
- Select: Turn Windows features on or off" from the left hand navigation.
- Scroll down to "Services for NFS" and click the "plus" on the left
- Check "Client for NFS"
- Select "Ok"
- Windows should install the client. Once the client package is install you will have the "mount" command available.
Mounting the export
This assumes the following:
- You know and can ping the hostname of the machine with the NFS exports
- The name of the exported filesystem ( eg. /export, /home/users, /some/cool/file/path )
The file systems are properly exported and accessible
- Open a command prompt. ( Win+ R, enter "cmd" and press OK )
Type:
mount \{machinename}{filesystem} {driveletter}
Examples:
mount \filehosthomeusers H:
mount \server1234longtermfilestorage S:
mount \nas324exports E:
...and that's the basics.
edited Jan 23 '15 at 5:49
Sathyajith Bhat♦
52.9k29156252
52.9k29156252
answered Feb 14 '14 at 20:04
Will BellmanWill Bellman
421143
421143
1
I was able to mount the drive by right clicking on the device and selecting a mount option
– dan1111
Jun 6 '15 at 7:37
add a comment |
1
I was able to mount the drive by right clicking on the device and selecting a mount option
– dan1111
Jun 6 '15 at 7:37
1
1
I was able to mount the drive by right clicking on the device and selecting a mount option
– dan1111
Jun 6 '15 at 7:37
I was able to mount the drive by right clicking on the device and selecting a mount option
– dan1111
Jun 6 '15 at 7:37
add a comment |
driver: http://www.citi.umich.edu/projects/nfsv4/windows/
On its NFSv4 project website, the University of Michigan's Center for Information Technology Integration (CITI) has announced that, after 18 months of development and since the start of September, source code for its Windows driver for distributed file system NFSv4.1 has been available from a Git repository. According to the release notes, compilation requires the Windows Driver Development Kit (WinDDK 6000 or later) and installation of the compiled driver requires a Microsoft test certificate. The included test scripts require a Cygwin environment including the gcc-core, make, sunrpc and time packages.
add a comment |
driver: http://www.citi.umich.edu/projects/nfsv4/windows/
On its NFSv4 project website, the University of Michigan's Center for Information Technology Integration (CITI) has announced that, after 18 months of development and since the start of September, source code for its Windows driver for distributed file system NFSv4.1 has been available from a Git repository. According to the release notes, compilation requires the Windows Driver Development Kit (WinDDK 6000 or later) and installation of the compiled driver requires a Microsoft test certificate. The included test scripts require a Cygwin environment including the gcc-core, make, sunrpc and time packages.
add a comment |
driver: http://www.citi.umich.edu/projects/nfsv4/windows/
On its NFSv4 project website, the University of Michigan's Center for Information Technology Integration (CITI) has announced that, after 18 months of development and since the start of September, source code for its Windows driver for distributed file system NFSv4.1 has been available from a Git repository. According to the release notes, compilation requires the Windows Driver Development Kit (WinDDK 6000 or later) and installation of the compiled driver requires a Microsoft test certificate. The included test scripts require a Cygwin environment including the gcc-core, make, sunrpc and time packages.
driver: http://www.citi.umich.edu/projects/nfsv4/windows/
On its NFSv4 project website, the University of Michigan's Center for Information Technology Integration (CITI) has announced that, after 18 months of development and since the start of September, source code for its Windows driver for distributed file system NFSv4.1 has been available from a Git repository. According to the release notes, compilation requires the Windows Driver Development Kit (WinDDK 6000 or later) and installation of the compiled driver requires a Microsoft test certificate. The included test scripts require a Cygwin environment including the gcc-core, make, sunrpc and time packages.
answered Jun 5 '13 at 13:24
AmtriorixAmtriorix
31636
31636
add a comment |
add a comment |
Services for Network File System (NFS) feature is available only in the Windows 8 Enterprise edition. This feature is not available in Windows 8 and Windows 8 Pro editions. Users when upgrading from Windows 7 Ultimate or Windows 7 Enterprise edition to Windows 8 Pro edition can no longer use Services for NFS feature.
In order to continue to use Services for NFS feature in Windows 8 client, Windows 7 users will have to upgrade to Windows 8 Enterprise edition.
Source: http://support.microsoft.com/en-us/kb/2769923
add a comment |
Services for Network File System (NFS) feature is available only in the Windows 8 Enterprise edition. This feature is not available in Windows 8 and Windows 8 Pro editions. Users when upgrading from Windows 7 Ultimate or Windows 7 Enterprise edition to Windows 8 Pro edition can no longer use Services for NFS feature.
In order to continue to use Services for NFS feature in Windows 8 client, Windows 7 users will have to upgrade to Windows 8 Enterprise edition.
Source: http://support.microsoft.com/en-us/kb/2769923
add a comment |
Services for Network File System (NFS) feature is available only in the Windows 8 Enterprise edition. This feature is not available in Windows 8 and Windows 8 Pro editions. Users when upgrading from Windows 7 Ultimate or Windows 7 Enterprise edition to Windows 8 Pro edition can no longer use Services for NFS feature.
In order to continue to use Services for NFS feature in Windows 8 client, Windows 7 users will have to upgrade to Windows 8 Enterprise edition.
Source: http://support.microsoft.com/en-us/kb/2769923
Services for Network File System (NFS) feature is available only in the Windows 8 Enterprise edition. This feature is not available in Windows 8 and Windows 8 Pro editions. Users when upgrading from Windows 7 Ultimate or Windows 7 Enterprise edition to Windows 8 Pro edition can no longer use Services for NFS feature.
In order to continue to use Services for NFS feature in Windows 8 client, Windows 7 users will have to upgrade to Windows 8 Enterprise edition.
Source: http://support.microsoft.com/en-us/kb/2769923
edited Apr 6 '15 at 19:55
fixer1234
18.8k144982
18.8k144982
answered Apr 6 '15 at 19:29
Jam31stJam31st
6111
6111
add a comment |
add a comment |
Unless you have Windows 8 Enterprise, you won't be able to accomplish this without 3rd party apps.
I was able to NFS drives mounted in Windows 8 using NekoDrive. You will also need to install the Dokan library.
You can then set up the application to auto-mount the drive.
http://code.google.com/p/nekodrive/
http://web.archive.org/web/20150222074745/http://dokan-dev.net/en/download/
2
Not compatible with Windows 8.
– Zenexer
Feb 26 '14 at 2:02
add a comment |
Unless you have Windows 8 Enterprise, you won't be able to accomplish this without 3rd party apps.
I was able to NFS drives mounted in Windows 8 using NekoDrive. You will also need to install the Dokan library.
You can then set up the application to auto-mount the drive.
http://code.google.com/p/nekodrive/
http://web.archive.org/web/20150222074745/http://dokan-dev.net/en/download/
2
Not compatible with Windows 8.
– Zenexer
Feb 26 '14 at 2:02
add a comment |
Unless you have Windows 8 Enterprise, you won't be able to accomplish this without 3rd party apps.
I was able to NFS drives mounted in Windows 8 using NekoDrive. You will also need to install the Dokan library.
You can then set up the application to auto-mount the drive.
http://code.google.com/p/nekodrive/
http://web.archive.org/web/20150222074745/http://dokan-dev.net/en/download/
Unless you have Windows 8 Enterprise, you won't be able to accomplish this without 3rd party apps.
I was able to NFS drives mounted in Windows 8 using NekoDrive. You will also need to install the Dokan library.
You can then set up the application to auto-mount the drive.
http://code.google.com/p/nekodrive/
http://web.archive.org/web/20150222074745/http://dokan-dev.net/en/download/
edited Apr 10 '16 at 1:40
Ben N
29.7k1398145
29.7k1398145
answered Feb 1 '13 at 19:29
SteveSteve
671
671
2
Not compatible with Windows 8.
– Zenexer
Feb 26 '14 at 2:02
add a comment |
2
Not compatible with Windows 8.
– Zenexer
Feb 26 '14 at 2:02
2
2
Not compatible with Windows 8.
– Zenexer
Feb 26 '14 at 2:02
Not compatible with Windows 8.
– Zenexer
Feb 26 '14 at 2:02
add a comment |
On my Windows 10 Pro install NFS is available in Turn Windows Features On and Off under Services for NFS:
add a comment |
On my Windows 10 Pro install NFS is available in Turn Windows Features On and Off under Services for NFS:
add a comment |
On my Windows 10 Pro install NFS is available in Turn Windows Features On and Off under Services for NFS:
On my Windows 10 Pro install NFS is available in Turn Windows Features On and Off under Services for NFS:
edited Apr 18 '18 at 15:27
bertieb
5,627112442
5,627112442
answered Apr 18 '18 at 14:40
Noah EricksonNoah Erickson
111
111
add a comment |
add a comment |
Installing the client
Go to Control Panel → Programs → Programs and Features
Select: Turn Windows features on or off" from the left hand navigation.
Scroll down to "Services for NFS" and click the "plus" on the left
Check "Client for NFS"
Select "Ok"
Windows should install the client. Once the client package is install you will have the "mount" command available.
mount 192.168.3.5homeslavydata L:
WORKING!!! I use client Win 8.1 Ult and server Ubuntu 12.04 LTS server
add a comment |
Installing the client
Go to Control Panel → Programs → Programs and Features
Select: Turn Windows features on or off" from the left hand navigation.
Scroll down to "Services for NFS" and click the "plus" on the left
Check "Client for NFS"
Select "Ok"
Windows should install the client. Once the client package is install you will have the "mount" command available.
mount 192.168.3.5homeslavydata L:
WORKING!!! I use client Win 8.1 Ult and server Ubuntu 12.04 LTS server
add a comment |
Installing the client
Go to Control Panel → Programs → Programs and Features
Select: Turn Windows features on or off" from the left hand navigation.
Scroll down to "Services for NFS" and click the "plus" on the left
Check "Client for NFS"
Select "Ok"
Windows should install the client. Once the client package is install you will have the "mount" command available.
mount 192.168.3.5homeslavydata L:
WORKING!!! I use client Win 8.1 Ult and server Ubuntu 12.04 LTS server
Installing the client
Go to Control Panel → Programs → Programs and Features
Select: Turn Windows features on or off" from the left hand navigation.
Scroll down to "Services for NFS" and click the "plus" on the left
Check "Client for NFS"
Select "Ok"
Windows should install the client. Once the client package is install you will have the "mount" command available.
mount 192.168.3.5homeslavydata L:
WORKING!!! I use client Win 8.1 Ult and server Ubuntu 12.04 LTS server
answered Dec 16 '17 at 21:23
Slavy IvanovSlavy Ivanov
11
11
add a comment |
add a comment |
I always wander why Windows users do spell a lot. You can mount anything anywhere but most of the guides shows mounting under a letter. C: is to much, who wants more letters in Windows D:, E: , definetelly unix is better with one space for storage starting with /, why windows is still using this old spelling starting when should be enough. it is much more flexible
New contributor
add a comment |
I always wander why Windows users do spell a lot. You can mount anything anywhere but most of the guides shows mounting under a letter. C: is to much, who wants more letters in Windows D:, E: , definetelly unix is better with one space for storage starting with /, why windows is still using this old spelling starting when should be enough. it is much more flexible
New contributor
add a comment |
I always wander why Windows users do spell a lot. You can mount anything anywhere but most of the guides shows mounting under a letter. C: is to much, who wants more letters in Windows D:, E: , definetelly unix is better with one space for storage starting with /, why windows is still using this old spelling starting when should be enough. it is much more flexible
New contributor
I always wander why Windows users do spell a lot. You can mount anything anywhere but most of the guides shows mounting under a letter. C: is to much, who wants more letters in Windows D:, E: , definetelly unix is better with one space for storage starting with /, why windows is still using this old spelling starting when should be enough. it is much more flexible
New contributor
New contributor
answered 7 mins ago
dzezikdzezik
1
1
New contributor
New contributor
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f525473%2fhow-do-i-mount-an-nfs-share-in-windows-8%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
There are a discussion about it on SeverFault: serverfault.com/questions/190020/…
– user386339
Nov 3 '14 at 15:41