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

  • In Terminal, type df -h $HOME. In the example below, 26GB out of 100GB has been used and 75GB is available:          

...

Code Block
languagebash
# list all files including hidden files
ls -al

# get the top largest 10 files and directories in your IDAS home drive:
du -shx $HOME/.[^.]* * | sort -rh | head

# delete files you no longer need
rm file1.txt file2.txt

...