mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 09:42:07 +02:00

* 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>
32 lines
939 B
Markdown
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`
|