Running this code cell
%%bash
touch /var/tmp/hello_world
ls -l /var/tmp/hello_world
inside a Google Cloud Datalab (i.e. Jupyter) notebook leaves me wondering: where does the file actually reside.
- It is not stored as
/var/tmp/hello_world
locally where I run the browser. - It is apparently not stored as
/var/tmp/hello_world
on the VM instance that hosts my instance of Datalab (i.e. Jupyter). I double-checked withssh
. - It is apparently not stored inside the notebook's
.ipynb
file. (That file is apparently stored in/mnt/disks/datalab-pd/content/
on the cited VM instance.)
So where does the file actually reside?