Accessing the Sakura Cluster
The username and password for all SU HPC clusters are same.
Within campus
ssh username@sakura.sabanciuniv.edu
From outside of campus
ssh username@flow.sabanciuniv.edu
Then
ssh username@sakura.sabanciuniv.edu
Saving Your Output
While submitting your job to query, there are several ways to save your output.
- Output could be directed to a file by command
./some_task > out.txtwill write your output to the file out.txt./some_task >> out.txtwill append your output to the file out.txt./some_task &>> out.txtwill append your output and stderror to the file out.txt
Redirecting Output
This output later could both be viewed and edited or copied to local.
- To view output;
catcommand could be used or editing file nano editor could be used withnano out.txtcommand. - To copy the output to your local computer;
- From local
scp username@sakura.sabanciuniv.edu:/absolute/path/to/file /relative/path/in/local - From cluster
scp /relative/path/in/local username@local:/absolute/path/to/directorycould be used.
- From local