Skip to content

Commit ad46383

Browse files
authored
Create mount_windows_share.md
1 parent 7b5930b commit ad46383

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

mount_windows_share.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
### Mount Windows Share
2+
3+
**On Windows**
4+
- Create user id with password on Windows (Blank password not allowed by default)
5+
- Create share with permission to created user
6+
7+
**On Linux**
8+
```sh
9+
# list shares
10+
smbclient -L nameOrIP -U userid
11+
12+
# mount share
13+
mount -t cifs //nameOrIP/sharename /path/to/mountpoint -o user=userid,password=password
14+
```

0 commit comments

Comments
 (0)