I'm on a managed machine but I'd like to create a folder stored in RAM for temporary storage, how might I do this?
Tell me more
×
Super User is a question and answer site for
computer enthusiasts and power users. It's 100% free, no registration required.
migrated from stackoverflow.com Feb 13 '12 at 20:45
|
AFAIK, you can't create a new tmpfs mount without root privileges. However, many Linux distos provide a tmpfs mount on On RHEL4/RHEL5:
On Ubuntu 11.10, it is mounted on
|
|||||
|
|
Without the help of a sysadmin you can't. In fact you need him to use sudo to make you able to mount tmpfs or to put an ad-hoc entry in /etc/fstab . The point is that mount requires special rights. Ask your sysadmin PS: if your system works with tmpfs mounted on /tmp, then you can create a folder there. |
|||