NLP Centre logo

Welcome to the NLP Centre server aurora

This server is intended for accessing files and running programs via SSH and SCP. Here's how to do that from different operating systems.

To find out your login and password, see the Faculty account page.

πŸ“ Common Tips

πŸͺŸ Windows

There are two options:

πŸ…°οΈ Using PowerShell or Windows Terminal

ssh yourlogin@aurora.fi.muni.cz

To copy a file:

scp C:\Users\you\Desktop\file.txt yourlogin@aurora.fi.muni.cz:~/

πŸ…±οΈ Using PuTTY (SSH)

1. Download from putty.org

2. Open PuTTY and enter the server address aurora.fi.muni.cz in the Host Name field:

PuTTY Configuration Window

Using WinSCP (SCP/File Transfer)

1. Download from winscp.net

2. Enter your login details and choose the SFTP protocol:

WinSCP login screen

3. You can now drag and drop files between your PC and the server:

WinSCP interface

Run a Python script remotely:

ssh yourlogin@aurora.fi.muni.cz
python3 yourscript.py

🍏 macOS

Use the built-in Terminal application:

ssh yourlogin@aurora.fi.muni.cz

Copy a file:

scp ~/Documents/myfile.txt yourlogin@aurora.fi.muni.cz:~/

Run a Python script:

ssh yourlogin@aurora.fi.muni.cz
python3 script.py

🐧 Linux

Most Linux systems include SSH/SCP out of the box. Use your terminal:

ssh yourlogin@aurora.fi.muni.cz

Copy a file:

scp myfile.txt yourlogin@aurora.fi.muni.cz:~/

Run a Python script:

ssh yourlogin@aurora.fi.muni.cz
python3 script.py

πŸ› οΈ Note: If this is your first time connecting, you may be prompted to verify the server's identity. Just type yes when asked.

❓ If you have trouble logging in, please contact your instructor or system administrator.


Β© 2025 NLP Centre FI MU