File transfer to UHHDisk
Files can be copied to an from UHHDisk,
with the tool smbclient
.
smbclient
has a command line interface that is similar to
the classic ftp
client which today shall be used for Anonymous
FTP only.
smbclient
can be used after loading the
smbclient
Module:
$
module load smbclient$
smbclient -U bxy1234@uni-hamburg.de //uhhdisk.uni-hamburg.de/home smb: \>
//uhhdisk.uni-hamburg.de/home
connects to the personal
UHHDisk folder (which corresponds to drive K:
on Fully
Managed Devices (FMDs) running under Windows). Alternatively one can
connect to //uhhdisk.uni-hamburg.de/daten
(which
correspongs to drive Z:
on Windows FMDs).
Commands at the smb:
prompt
Command | Description |
---|---|
cd directory_name |
change working directory on the remote host |
pwd |
print working directory of the remote host |
ls |
list files in the remote working directory |
get remote_filename [local_filename] |
copy file from the remote host |
put local_filename [remote_filename] |
copy file to the remote host |
lcd directory_name |
change working directory on the local computer |
!pwd |
print working directory of the local computer |
!ls |
list files in the local working directory |
quit |
end file transfer session |
For a complete list see the man-page on Hummel-2
$
man smbclient
or on the web page of the Samba project
https://www.samba.org/samba/docs/current/man-html/smbclient.1.html