tldr/pages/linux/smbpasswd.md

21 lines
393 B
Markdown
Raw Normal View History

2019-10-17 09:46:27 +01: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 09:46:27 +01:00
- Modify an existing Samba user's password:
`smbpasswd {{username}}`
2019-10-17 09:46:27 +01:00
- Delete a Samba user:
`smbpasswd -x {{username}}`