Skip to content

Instantly share code, notes, and snippets.

@alimbada
Last active February 11, 2025 15:47
Show Gist options
  • Save alimbada/954dc9de4f90f3c8b27a43e23c86b786 to your computer and use it in GitHub Desktop.
Save alimbada/954dc9de4f90f3c8b27a43e23c86b786 to your computer and use it in GitHub Desktop.
SMB/samba Cheat Sheet

Mount SMB share as non-root user with write permissions

sudo mount -t cifs -o "uid=$local_user,username=$smb_user,addr=$host,vers=1.0" //$host/$share $mount_path

Note

vers=1.0 only applies because I have a very old NAS running SMB 1.0.
Yes, it's insecure. No, it can't be updated. Yes, it's in the process of being retired.

For errors:

  • mount: $mount_path: cannot mount //$host/$share read-only
  • mount: $mount_path: bad option; for several filesystems (e.g. nfs, cifs) you might need a /sbin/mount.<type> helper program.

Install cifs-utils:

sudo apt install cifs-utils
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment