1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/smbpasswd.md

21 lines
393 B
Markdown
Raw Normal View History

2019-10-17 16:46:27 +08:00
# smbpasswd
> Change a user's SMB password.
> Samba users must also have a local Unix account.
- Change the current user's SMB password:
`smbpasswd`
- Add a specified user to Samba and set password(user should already exist in system):
`smbpasswd -a {{username}}`
2019-10-17 16:46:27 +08:00
- Modify an existing Samba user's password:
`smbpasswd {{username}}`
2019-10-17 16:46:27 +08:00
- Delete a Samba user:
`smbpasswd -x {{username}}`