当前位置:网站首页>samba服务器如何配置
samba服务器如何配置
2022-07-28 14:38:00 【丨刘一丨】
一:samba服务器配置
- 安装samba
sudo apt-get install system-config-samba -y - 修改smb.conf
sudo vi /etc/samba/smb.conf
[work]
comment = share for liujiaxing
path = /home/liujiaxing/project
public = yes
writeable = yes
available = yes
browseable = yes
create mode = 0664
create mask = 0775
directory mode = 0775
directory mode = 0775
force create mode=0644
force directory mode=0755
valid users = liujiaxing
- 重启samba服务器
sudo /etc/init.d/smbd restart
二:相关问题
如果映射网络驱动器出现异常情况,执行如下操作!
重新安装libtalloc2
sudo apt-get remove samba libtalloc2
sudo apt-get autoremove
sudo apt-get install samba libtalloc2
如果安装不上 先安装sudo apt-get install aptitude,之后按照如下方式安装:
sudo aptitude install samba libtalloc2
您可能感兴趣的文章:
Android源码分析(一)-----如何快速掌握Android编译文件
Android源码分析(二)-----如何编译修改后的framework资源文件
Android源码分析(三)-----系统框架设计思想
Android源码分析(四)-----Android源码编译及刷机步骤
Android源码分析(五)-----如何从架构师的角度去设计Framework框架
边栏推荐
- Regular expression (4)
- Set structure byte alignment
- 字符串(3)
- 软件测试的流程规范有哪些?具体要怎么做?
- 程序员的自我修养
- 20. Channel allocation task implementation
- The difference between character array and string
- Nftscan and nftplay have reached strategic cooperation in the field of NFT data
- Write a standard character device driver with your hands
- 22. Realization of message processing task
猜你喜欢
随机推荐
手把手带你编写一个规范的字符设备驱动
File and directory operations (5)
字符数组和字符串的区别
文件及目录操作(5)
Execution process of SQL statement
EasyExcel复杂表头导出(一对多)
Qt创建文件夹的两种方式区别
8. Realization of real-time data backup and real-time clock function
.net core version 2.2 cross domain configuration
Heuristic merging simple problem on tree
Matlab导出高清图片、且Word中压缩不失真、转换PDF不失真
Summary of common redis commands (self provided)
22. Realization of message processing task
Problems encountered by pyppeter
MIT pointed out that the public pre training model should not be used indiscriminately
融云实时社区解决方案
Chrome plug-in debugging
Introduction to grpc
GRC concept GRC architecture RPC lifecycle
Matlab exports high-definition pictures without distortion in word compression and PDF conversion








