You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Installed and configured smb on a debian system with the goal to mount it via Windows.
smb-config:
[fuse]
comment = A new share
path = /home/nwietschorke/fuse_mount
browseable = yes
read only = yes
guest ok = yes
valid users = nwietschorke, root
local test on debian system:
smbclient -U nwietschorke //localhost/fuse
WARNING: The "syslog" option is deprecated
Enter nwietschorke's password:
Domain=[WORKGROUP] OS=[Windows 6.1] Server=[Samba 4.5.16-Debian]
smb: > ls
NT_STATUS_ACCESS_DENIED listing *
smb: >
Output on python:
ERROR:root:contains path with: /Root/
ERROR:root:access called!
getattr called with path /
getattr called with path /
ERROR:root:contains path with: /Root/
ERROR:root:statfs called!
ERROR:fuse:Uncaught exception from FUSE operation statfs, returning errno.EINVAL.
Traceback (most recent call last):
File "/usr/local/lib/python3.8/site-packages/fuse.py", line 734, in _wrapper
return func(*args, **kwargs) or 0
File "/usr/local/lib/python3.8/site-packages/fuse.py", line 871, in statfs
attrs = self.operations('statfs', path.decode(self.encoding))
File "/usr/local/lib/python3.8/site-packages/fuse.py", line 1076, in call
return getattr(self, op)(*args)
File "/home/nwietschorke/amos-ss2021-synthetic-file-system-dev/sfs/sfs.py", line 86, in statfs
return BackendManager().get_backend_for_path(path).statfs(path)
File "/home/nwietschorke/amos-ss2021-synthetic-file-system-dev/sfs/backend/mdh/backend.py", line 199, in statfs
raise NotImplementedError()
NotImplementedError
ERROR:root:contains path with: /Root/
ERROR:root:access called!
My system, python, sfs etc. is not set up proper related to root and nwietschorke user rights.
So there might be a mix up of access rights.
If this is the root of this issue close it, please.
Otherwise try to reproduce it on your system and or give further instructions.
The text was updated successfully, but these errors were encountered:
Installed and configured smb on a debian system with the goal to mount it via Windows.
smb-config:
[fuse]
comment = A new share
path = /home/nwietschorke/fuse_mount
browseable = yes
read only = yes
guest ok = yes
valid users = nwietschorke, root
local test on debian system:
smbclient -U nwietschorke //localhost/fuse
WARNING: The "syslog" option is deprecated
Enter nwietschorke's password:
Domain=[WORKGROUP] OS=[Windows 6.1] Server=[Samba 4.5.16-Debian]
smb: > ls
NT_STATUS_ACCESS_DENIED listing *
smb: >
Output on python:
ERROR:root:contains path with: /Root/
ERROR:root:access called!
getattr called with path /
getattr called with path /
ERROR:root:contains path with: /Root/
ERROR:root:statfs called!
ERROR:fuse:Uncaught exception from FUSE operation statfs, returning errno.EINVAL.
Traceback (most recent call last):
File "/usr/local/lib/python3.8/site-packages/fuse.py", line 734, in _wrapper
return func(*args, **kwargs) or 0
File "/usr/local/lib/python3.8/site-packages/fuse.py", line 871, in statfs
attrs = self.operations('statfs', path.decode(self.encoding))
File "/usr/local/lib/python3.8/site-packages/fuse.py", line 1076, in call
return getattr(self, op)(*args)
File "/home/nwietschorke/amos-ss2021-synthetic-file-system-dev/sfs/sfs.py", line 86, in statfs
return BackendManager().get_backend_for_path(path).statfs(path)
File "/home/nwietschorke/amos-ss2021-synthetic-file-system-dev/sfs/backend/mdh/backend.py", line 199, in statfs
raise NotImplementedError()
NotImplementedError
ERROR:root:contains path with: /Root/
ERROR:root:access called!
My system, python, sfs etc. is not set up proper related to root and nwietschorke user rights.
So there might be a mix up of access rights.
If this is the root of this issue close it, please.
Otherwise try to reproduce it on your system and or give further instructions.
The text was updated successfully, but these errors were encountered: