Skip to content
Snippets Groups Projects
Commit 0006b408 authored by Lukáš Krupčík's avatar Lukáš Krupčík
Browse files

rucni merge s upravami od RUS016

parent 57c872d7
No related branches found
No related tags found
No related merge requests found
$ termrec transfer_sftp_salomon.ttyrec
# File transfer from local machine to Salomon cluster
# using sftp command
$ touch test_file.sftp
$ sftp -o IdentityFile=/home/local/.ssh/id_rsa dd-16-12-13@salomon.it4i.cz
# list of all commands - help or ?
sftp> help
# display remote working directory on Salomon cluster
sftp> pwd
# display remote directory listing on Salomon cluster
sftp> ls -l
# display statistics for remote directory
sftp> df -h
# display local working directory on local linux machine
sftp> lpwd
# display local directory listing on local linux machine
sftp> lls -l
# now we can upload a file from linux machine to Salomon cluster
sftp> put test_file.sftp
# and then check if successfully uploaded
sftp> ls -l
# of course we can download a file from the cluster
sftp> get tutorial.tgz
# and check in local directory
sftp> lls -l
# delete local file from sftp
sftp>!rm tutorial.tgz
# quit sftp
sftp> exit
# login to Salomon cluster and check all transfered files
ssh -i /home/local/.ssh/id_rsa dd-16-12-13@salomon.it4i.cz
$ls -l
# yes, all files are stored in home directory on the cluster
File added
# file transfer from local machine to the remote cluster
# toto i v CZ
# create local directory with files
$ mkdir folder
$ cd folder
# using scp command to transfer a file
$ touch test_file.scp
$ scp test_file.scp dd-16-12-13@salomon.it4i.cz:/home/training/dd-16-12-13/test_file.scp
# using scp command to transfer a directory
$ mkdir local_dir
$ touch local_dir/file
$ scp -r local_dir dd-16-12-13@salomon.it4i.cz:/home/training/dd-16-12-13/local_dir
# using sftp command
$ touch test_file.sftp
$ sftp -o IdentityFile=/home/local/.ssh/id_rsa dd-16-12-13@salomon.it4i.cz
# ukazat i interaktivni rezim
# commands: https://www.digitalocean.com/community/tutorials/how-to-use-sftp-to-securely-transfer-files-with-a-remote-server
# list of all commands - help or ?
sftp> help
# display remote working directory on Salomon
sftp> pwd
# display remote directory listing on Salomon
sftp> ls -la
# display statistics for remote directory
sftp> df -h
# display local working directory on linux machine
sftp> lpwd
# display local directory listing on linux machine
sftp> lls -la
# now we can upload a file from linux machine to Salomon
sftp> put test_file.sftp
# and then check if successfull uploaded
sftp> ls -l
# of course we can download a file from remote machine
sftp> get tutorial.tgz
# and check in local directory
sftp> lls -l
# delete local file from sftp
sftp>!rm tutorial.tgz
# quit sftp
sftp> exit
#####################
# using sshfs command
# zatim nedelat
$ touch test_file.sshfs
## zjistit mountpoint!
$ sshfs -o IdentityFile=/home/local/.ssh/id_rsa dd-16-12-13@salomon.it4i.cz:. /home/training/dd-16-12-13
#####################
# login to the Salomon cluster and check all transfered files
ssh -i /home/local/.ssh/id_rsa dd-16-12-13@salomon.it4i.cz
$ls -l
# yes, all files are stored to home directory on the cluster
File deleted
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment