简体   繁体   English

如何在Ubuntu中授予共享文件夹的权限?

[英]How to give permission to share folder in Ubuntu?

我已经创建了一个文件夹share ,当我共享该文件夹并从窗口7访问它时,它会显示一个警告框that you have no permission提示that you have no permission仅当文件夹进入该文件夹时,文件夹显示"share" ,然后出现警告。

EDIT -> This is probably the easiest: 编辑->这可能是最简单的:

http://www.7tutorials.com/how-access-ubuntu-shared-folders-windows-7 http://www.7tutorials.com/how-access-ubuntu-shared-folders-windows-7

Turn on guest access before playing with permissions to check it works 播放权限之前先打开访客访问权限以检查其是否有效


EDIT-> If you wanted to configure Samba: 编辑->如果要配置Samba:

Are you using Samba? 您在使用Samba吗? I imagine you are, have you edited the Samba configuration file? 我想您是,您是否编辑了Samba配置文件?

Where your share equals "testshare" you will need something like: 如果您的份额等于“ testshare”,则需要类似以下内容:

[testshare]
comment = Public Share
path = /path/to/share/point
read only = no
browseable = yes
guest only = yes
guest ok = yes

Note that is a public share at a very basic level. 请注意,这是非常基本的公共共享。 Here is a useful link I just borrowed: 这是我刚刚借用的有用链接:

https://help.ubuntu.com/community/Samba/SambaServerGuide https://help.ubuntu.com/community/Samba/SambaServerGuide

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Ubuntu如何仅授予所有者读取权限 - Ubuntu how to give read permission only for owner 如何在 Ubuntu 上授予英特尔实感摄像头的权限 - how to give permission to intel realsense camera on Ubuntu 如何授予makefile复制文件夹的权限? - How to give permission to a makefile to copy a folder? 如何授予 mysql 用户在 ubuntu 上创建和删除数据库的权限 - How to give a mysql user permission to create and delete database on ubuntu 如何为我的Laravel应用程序授予权限在目录中创建子文件夹(Ubuntu) - How to give permission for my Laravel application create subfolders in a directory (Ubuntu) 如何在 ubuntu 22.04 上给予正确的快门权限? - how to give proper snap permission to shutter on ubuntu 22.04? Ubuntu Python授予对树的完全许可 - Ubuntu Python give full permission to tree 如何在Ubuntu Server中自动将文件夹和文件访问权限继承设置为父文件夹? - How to set the folder and file access permission inheritance as parent folder automatically in Ubuntu Server ? linuxdcpp无法在Ubuntu中共享正确的文件夹 - linuxdcpp unable to share the right folder in Ubuntu 在新的Ubuntu 14.04.3上共享文件夹:权限被拒绝 - Sharing a folder on a fresh Ubuntu 14.04.3: Permission Denied
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM