Questions tagged [nfs]

NFS is an acronym for Network File System, a network file system developed by Sun Microsystems most often associated with the Unix family of operating systems.

NFS is an acronym for Network File System, a network file system developed by Sun Microsystems most often associated with the Unix family of operating systems.

NFS is derived from the distributed file system mechanism. It is generally implemented in computing environments where the centralized management of data and resources is critical. Network file system works on all IP-based networks. It uses TCP and UDP for data access and delivery, depending on the version in use.

Network file system is implemented in a client/server computing model, where an NFS sever manages the authentication, authorization and management of clients, as well as all the data shared within a specific file system. Once authorized, clients can view and access the data through their local systems much like they'd access it from an internal disk drive

1399 questions
0
votes
1 answer

How to force NFS mounted disk to sync to current state that was updated by a different machine?

I am running into an issue as follows in my C++ application running on Centos 5: On machine A there is an NFS mounted drive from machine C that contains a file: /nfs/mounted/drive/path/directory/file My application renames the directory from…
WilliamKF
  • 41,123
  • 68
  • 193
  • 295
0
votes
1 answer

Ruby code on NFS mount, using another file on same mount causes problems

I'm working on an embedded system whoose details are explained at the end of this post. Tools are ruby on linux. I put my ruby code on a remote NAS device on network and mount it to the embedded system I'm working on using NFS v3. My project…
Cihan Keser
  • 3,190
  • 4
  • 30
  • 43
0
votes
1 answer

NFS CREATE File (overwrite) = zero size?

Im implementing NFS and almoste done but the RFC section 3.3.8 says this in its description: mode One of UNCHECKED, GUARDED, and EXCLUSIVE. UNCHECKED means that the file should be created without checking for the existence of a duplicate file in…
Peter
  • 37,042
  • 39
  • 142
  • 198
0
votes
1 answer

Drupal & NFS Directory

I have 2 parallel Drupal Web Servers running (serving for one Drupal Instance together) and now i need to install NFS. My experience in multi Drupal Servers is, each Drupal Instance (Server) uses their own Aggregated JS + CSS files (storing in:…
夏期劇場
  • 17,821
  • 44
  • 135
  • 217
0
votes
1 answer

No supported encryption types NFSv4 with Kerberos on Debian Squeeze

I'm going nuts setting up a test installation for NFSv4 using Kerberos. The machine gets its user information from LDAP and credentials from Kerberos. I can log in to the machine using the kerberized accounts, i.e. the basic Kerberos setup including…
Lars Hanke
  • 614
  • 5
  • 16
0
votes
1 answer

dbus launching error! when booting ARM linux via NFS

Attempting to compile D-Bus for ARM but encountering an error. I use NFS to boot ARM board and load file-system from a directory "/home/make/root_nfs" on PC. Building D-Bus from sources on PC(ubuntu10.10): ./configure --prefix=/home/make/dbus…
Randy Young
  • 594
  • 5
  • 7
0
votes
1 answer

Why my NFS server can run without portmap?

I have learned from this Linux NFS-HOWTO that in order to setup a NFS server, the daemon portmap must be run first. But why I cannot find any portmap process using ps aux | grep. My system is Ubuntu 12.10 and I set up my NFS server under the…
Yishu Fang
  • 9,448
  • 21
  • 65
  • 102
0
votes
0 answers

Creating a WebService to be mapped as a Network Drive

Edit: How do I go about creating a web service that can be mapped as a network drive? Flickr, Google Drive and Skydrive all support this, I would like to make a webservice that can as well.
flacnut
  • 1,030
  • 4
  • 11
  • 21
0
votes
1 answer

NFS client side locking for a file currently being written to in the remote NFS server

I have mounted a NFS mount in my local machine (So, I suppose my machine is the NFS client) and a file is being written in the NFS mount by the remote machine hosting the NFS mount (NFS server). Now, how will I be able to detect using JAVA that the…
SSaikia_JtheRocker
  • 5,053
  • 1
  • 22
  • 41
0
votes
2 answers

How Can I Recover a .nfs file?

I have been working on an algorithm in Python, and I was using Vim to edit this file. I opened it up, did a save, and it came up with an Error something like it occasionally does: "WARNING: YOUR FILE CANNOT BE SAVED! ALL CHANGES WILL BE LOST! …
Huckphin
  • 410
  • 4
  • 17
0
votes
1 answer

NFS sync vs async

I'm using NFS to allow two servers two communicate via simple text files, however sometimes it seems that the server reading the text files to get information is reading incomplete files, and then because of this crashes. Then I go to look at the…
srchulo
  • 5,143
  • 4
  • 43
  • 72
0
votes
1 answer

Client for NFS using increasing amount of CPU

We have an issue with Microsoft’s client for NFS sometimes using a large amount of CPU (50-100%) when accessing a NFS share on a linux box. The server seems to get in a state where accessing the NFS starts to use an increasing amount of CPU to do…
lesma
  • 19
  • 5
0
votes
1 answer

Root-NFS: Server returned error -5 while mounting rootfs

I'm try to load embedded linux on my device. Kernel command line: setenv bootcmd 'nfs 10.0.0.1:/home/master/rootfs3/boot/uImage;bootm;' setenv bootargs console=ttyTX0,57600n8 root=/dev/nfs rw nfsroot=10.0.0.1:/home/master/rootfs3 ip=dhcp…
ymn
  • 2,175
  • 2
  • 21
  • 39
0
votes
1 answer

ActiveMQ + NFS race condition

I am using ActiveMQ on a cluster of computers to send messages between java processes. The cluster has a shared NFS mount accessible from all hosts. I am running into problems with the following scenario: host A creates a new file…
Roman Zenka
  • 3,514
  • 3
  • 31
  • 36
0
votes
1 answer

How to check an NFS export's availablity using Ruby?

How can I check if an NFS share on network is online/available/alive using Ruby code (on Linux)? I have a code like this at the moment: while !Ping.pingecho('192.168.1.116') end `mount -a` exec 'SOMETHING THAT IS PLACED ON NFS SHARE' And it doesn't…
Cihan Keser
  • 3,190
  • 4
  • 30
  • 43