libnfs-python icon indicating copy to clipboard operation
libnfs-python copied to clipboard

Python bindings for libnfs

Results 16 libnfs-python issues
Sort by recently updated
recently updated
newest added

Hello, I try to install libnfs package via anaconda by `pip install linbnfs` I got the following error: fatal error C1083: Cannot open include file: 'nfsc/libnfs.h': No such file or...

Still have this issue after installing libnfs-python on M1 Mac and debugging in VS Code: dlopen(~/lib/python3.9/site-packages/libnfs/_libnfs.cpython-39-darwin.so, 0x0002): symbol not found in flat namespace '_free_nfs_srvr_list'

Hello, im trying to achieve a rather simple procedure, where I copy a local image onto a nfs server. The server can be reached and I can create and modify...

I start the program and it stops at the open() function. In the libnfs library it is [nfs_open()](https://github.com/sahlberg/libnfs/blob/master/lib/libnfs-sync.c). I think it hangs on wait_for_nfs_reply(). Why is this happening? In the...

I use it to check whether NFS is writable, I do not see NFS close the connection ```python nfs = libnfs.NFS("nfs://{server}{path}".format(server=nfs_server, path=nfs_path)) f = nfs.open("/test_nfs_rw.file", "w") f.write(str(time.time())) f.close() ``` Have...

``` nfs = libnfs.NFS('nfs://{SERVER}/{RESOURCE}/') nfs.isdir("/{DIR}/) Traceback (most recent call last): File "", line 1, in AttributeError: 'NFS' object has no attribute 'isdir' ``` ``` dir(nfs) ['__class__', '__del__', '__delattr__', '__dict__', '__dir__',...

```Python 3.8.2 (default, Jul 16 2020, 14:00:26) [GCC 9.3.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import libnfs as nfs >>> x = nfs.NFS('nfs://192.168.10.165/volume1/data/') >>>...

Hello, If I run `nfs-ls` from libnfs using my user, I've got this expected result (secure mount): ``` $ nfs-ls nfs://127.0.0.1/usr Failed to mount nfs share : mount_cb: RPC error:...

Hi There, I'm trying to connect to EFS using libnfs. My EC2 instance is able to mount EFS using the standard NFS tools, but when I attempt to test using:...

can't open nfs server file File "/app/server.py", line 44, in __init__ self.nfs_connect() File "/app/server.py", line 325, in nfs_connect a = self.nfs.open('/nfstest.txt', mode='w+') File "/usr/local/lib/python3.7/site-packages/libnfs/__init__.py", line 187, in open return NFSFH(self._nfs,...