Let's consider the following use case: * We have to run install script from read-only media (like CDROM) * User wants to run it from directory of CDROM (clicking on script from GUI file manager) * We have to unpack to regular filesystem, like ext3/4, to preserve file attributes (unpacking to «tmpfs» kills them) So, * we cannot unpack it to tmpfs (can be solved by `--notemp`) * we cannot use `--notemp` (because impossible to unpacking to subdirectory of readonly CDROM) Implementing something like `--tempdironhome` (creating random temporary directory on user home) can be a solution. Also, this can solve issue #300. May other solutions exist.