Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

In this page:

...

Info

https://notebooks.hpc.uiowa.edu/research-interactive/user/<your_hawkid>/tree


IDAS Home Drives

On IDAS, each research user gets 100GB for storage in their home drive. To check how much you have used:

  • Go to the Jupyter Hub tree page (please fill in your HawkID): 

    • https://notebooks.hpc.uiowa.edu/research-interactive/user/<your_hawkid>/tree

  • In the top right corner of your IDAS tree page, click New >> Terminal
    Image Added

  • In Terminal, type df -h $HOME. In the example below, 26GB out of 100GB has been used and 75GB is available:          
Code Block
languagebash
hawkid@jupyter-notebook-research-hawkid:~$ df -h $HOME
Filesystem      Size  Used Avail Use% Mounted on
/dev/rbd64      100G   26G   75G  26% /home/hawkid


If your home drive is full, you can go to the Jupyter Hub tree page and remove any files you don't need. You can also use Terminal to list and remove any hidden files. 

Code Block
languagebash
# list all files including hidden files
ls -al
# delete files you no longer need
rm file1.txt file2.txt


Shutting down an IDAS instance 

...