🚀 Accessing MARBEC-DATA Folders in JupyterHub
The MARBEC-DATA server is dedicated to data storage and is connected to the MARBEC-GPU server, which is used for computations.
The folders stored in MARBEC-DATA are always accessible via the command line.
🔍 You can view the available folders by typing:
ls /marbec-data/
or navigate directly to a specific folder:
cd /marbec-data/<your_folder>
However, these folders do not appear directly in the file tree.
To view them in the Jupyter file explorer, you need to create a symbolic link.
📌 Creating a Symbolic Link:
- Open a terminal in JupyterHub.
- Navigate to the location where you want the folder to appear:
cd /home/your_username/
- Create the symbolic link with the name of your folder in MARBEC-DATA:
ln -s /marbec-data/<your_folder>
- Refresh the Jupyter interface to see the folder appear.