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

Script to check NFS share availability on Microsoft Servers

I am looking for a way to check NFS shares on a windows server to see if the share itself is active or inactive. I have been having issues with the shares becoming inactive even though they are being used and the NFS server services are still…
Th3Cap3
  • 23
  • 1
  • 1
  • 3
0
votes
2 answers

Unix NFS security dilemna: any alternative to all_squash mounting or user authentication?

With NFS, when a file system is mounted on a client machine, the username on the client is used to authenticate access (i.e., user A on the local client is assumed to be user A on the file system). Problem: any local root on the client can su as…
0
votes
1 answer

Apache 404 error at NFS partition when symlinked documentroot

I have apache virtualhost: ServerName test.localnet DocumentRoot /srv/http/localnet/test/trunk/docroot Options Indexes The partition…
tloudev
  • 19
  • 5
0
votes
2 answers

Need an ability to tunnel data from NFS to FTP

This is a messy situation and I may (as in allowed) not explain why I need to do this but I do need it (if possible). M1, M2 and M3 are all Linux. I have a machine M1 on one side of the world that is connecting to M2 using ssh. The command executed…
user680453
  • 39
  • 1
-1
votes
0 answers

nfs server failed with result 'dependency'

I am trying to install nfs server on centos 7. after installation completed, starting nfs service nfs server failed with result 'dependency'. here the installation steps and error details. how to solve the installation problem ? sudo yum update sudo…
Metin Bulak
  • 537
  • 4
  • 8
  • 30
-1
votes
1 answer

Is it possible to limit the size of a docker volume that uses nfs?

I'm trying to limit the size of a volume that will use nfs (--opt type=nfs). I tried creating a volume and mounting it like this: docker volume --driver local --opt type=nfs --opt o=addr=,rw --opt o=size=1g --opt device=:/nfs_share/my_volume…
Enx
  • 65
  • 1
  • 5
-1
votes
0 answers

Kubernetes - issue with Persistent Volume and nfs-subdir-provisioner

I'm learning Kubernetes and following Jeff Geerling's 101 tutorial. While I was still using default storage class and ReadWriteOnce for this deployment I'm trying to create drupal deployment: --- kind: ConfigMap apiVersion: v1 metadata: name:…
-1
votes
1 answer

file transfer using sftp fails with error ETAdebug3: Sent message SSH2_FXP_WRITE I:12 O:0 S:32768

We are trying to transfer the file from sftp server to the remote server. The file transfer works well when we transfer small-size (2-5MB) files. But, the file transfer fails intermittently when we want to transfer files greater than 30 MB in…
Jagdish0886
  • 343
  • 1
  • 5
  • 20
-1
votes
2 answers

Unable to mount root fs via NFS on Raspberry Pi 4 (U-Boot)

I'm facing an issue while trying to mount the root filesystem via NFS on Raspberry Pi 4 in u-boot . Here are the details of my setup: Raspberry Pi 4 U-Boot version: 2023.04 Host kernel version: 5.15.0-78-generic NFS Server PC IP: 192.168.2.51 NFS…
p3zhy
  • 81
  • 8
-1
votes
1 answer

Kubernetes pod can't mount NFS directory, permission denied

Under Hyper-v I've create two Ubuntu VMs. The first creates a nfs server for /srv/nfs. /etc/exports /srv/nfs *(rw,sync,no_root_squash) The second can easily mount the nfs file system with this command as root or any user mount -t nfs…
-1
votes
1 answer

Modifying post-2040 macOS file creation/modification dates

In my Synology NAS, I have an APFS share with files that have been transferred back and forth for decades across different OSes. original systems: probably ext4 filesystem and Synology-hosted NFS mount, years ago (various systems,…
chronospoon
  • 510
  • 6
  • 14
-1
votes
1 answer

NFS based mount fails in kubernetes

I'm using Kubernetes - v1.24.7 on Ubuntu 18.04.6 LTS and facing problem with the NFS - Persistent Volume mount. When i tried to deploy my Jenkins deployment file it always fails with below errors. $ kubectl describe pod jenkins-6786789d5d-m26zw -n…
user4948798
  • 1,924
  • 4
  • 43
  • 89
-1
votes
1 answer

How to use SQLite in rollback mode?

Hi I'm building a simple system by python with SQLite, I set a db file on NFS to allow writing by only one user but with multiple readers from different machines, all I need is to know how to implement isolation by locking the database file and…
-1
votes
1 answer

How to mount from Windows 10 host to Linux guest via NFS?

I have ZorinOS 15 Lite as a Linux guest on my Windows 10 host machine. The aim is to mount from my Windows 10 host to this Linux NFS server. The NFS client setup on Windows 10 is done. The NFS server setup on Zorin OS is done. But still there are…
nrgx
  • 325
  • 3
  • 13
-1
votes
1 answer

Is there a best practice when using nfs over GCEPersistentDisk?

I'm a software developer who got to a point where I need to mount a Persistent Volume with ReadWriteMany access mode in multiple nodes, in my GKE Cluster. I'm well aware that GCEPersistentDisk does not support such access mode, so I turned to NFS…
NI6
  • 2,477
  • 5
  • 17
  • 28