1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 09:42:07 +02:00
tldr/pages.it/linux/smbclient.md
K.B.Dharun Krishna 5c26174aa9
pages/*: update links and more info link script (#11390)
* pages/*: update links and more info link script

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* cleanup: reformat code

* ax-webapp: fix link

* curl: fix false positive

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

---------

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2023-11-06 23:14:12 +05:30

32 lines
939 B
Markdown

# smbclient
> Programma client simile ad FTP per server SMB/CIFS.
> Maggiori informazioni: <https://manned.org/smbclient>.
- Connettiti ad una share (all'utente verrà richiesta la password; `exit` per uscire dalla sessione):
`smbclient {{//server/share}}`
- Connettiti con un altro nome utente:
`smbclient {{//server/share}} --user {{username}}`
- Connettiti con un altro gruppo di lavoro:
`smbclient {{//server/share}} --workgroup {{dominio}} --user {{username}}`
- Connettiti con un nome utente ed una password:
`smbclient {{//server/share}} --user {{username%password}}`
- Scarica un file dal server:
`smbclient {{//server/share}} --directory {{percorso/della/directory}} --command "get {{file.txt}}"`
- Carica un file sul server:
`smbclient {{//server/share}} --directory {{percorso/della/directory}} --command "put {{file.txt}}"`
- Elenca le share di un server in modo anonimo:
`smbclient --list={{server}} --no-pass`