The tmpfs tag has no wiki summary.
0
votes
1answer
62 views
mount tmpfs preserve current permissions
I have a directory of a web application cache and this has the permissions 755 (default), and I configured setfacl additional permissions.
the problem is that when I restart the system, the ...
1
vote
1answer
232 views
Can fstab options uid and gid be the user-group name or must they be numeric?
I'm learning how to set up a tmpfs in fstab for my www-data user and I was wondering if I can use the actual user/group name instead if the numeric ids (personal preference)?
I'm on Debian with ext4, ...
0
votes
1answer
57 views
Execute in Place an encrypted ram drive
I have found a few old posts claiming that tmpfs can execute in place. Is this true? If so, how? If not, is there a ram drive alternative?
Can this be done with a ram drive that is encrypted? If ...
0
votes
2answers
78 views
are daemon tmpfs executables copied unencrypted to memory upon execution? (prevent if so?)
When a daemon is executed, is the executable copied to memory?
If so, can it be copied encrypted?
If not, is there a way to prevent the executable from being copied to memory?
The executable is ...
0
votes
1answer
139 views
How can I use the tmpfs to accelerate my chrome browser start up?
Every time when I am trying to start the chrome browser, it is a little bit slow because the chrome need to load the cache and that may cause a big amount of disk IO.
My distribution is Debian ...
1
vote
1answer
323 views
use `/run/shm` (formerly `/dev/shm`) as a temp directory
Is it good practice to create a directory in /run/shm (formerly /dev/shm) and use that like a temp directory for an application?
Background: I am writing black box tests for a program which does a ...
2
votes
0answers
105 views
Moving /dev/shm/ to /run/shm in Arch?
Dolphin (The KDE4 FM) would not receive file change notifications for /dev/shm, but for /run/shm.
So now I would like to migrate /dev/shm/ to /run/shm, but I couldn't find the corresponding part in ...
1
vote
1answer
161 views
What parts of the filesystem to tmpfs/squashfs/sparseimage for USB live system
I want to create a live system on a USB key / SDCard with Linux Mint 14 (KDE or Debian Edition) that stores data persistently. The USB key needs to have at least one fat32 partition. As storage for ...
1
vote
1answer
187 views
tmpfs performance
I use avconv to make screen recording of gameplays on linux (yeah, I'm sorry, I am one of them, but I get more excited about the scripts than playing it self), but recently my harddrive has gone and ...
3
votes
1answer
248 views
Does the (source) device in a tmpfs type mount mean anything?
I just went into /etc/fstab (Linux) and changed my line for /tmp (on which a specific ext4 partition was previously mounted) to tmpfs. This was clearly a bit silly, but I wasn't thinking. Anyway, I ...
4
votes
1answer
2k views
Move /tmp to RAM
I am trying to move /tmp to RAM and obey good practice:
/var/tmp should NOT be placed in tmpfs, as it must survive reboots
not mount /tmp as a stand-alone tmpfs, but rely on /dev/shm or /run/shm
...
4
votes
3answers
1k views
Proper way to disable tmpfs on /run/shm
How do I disable tmpfs on /run/shm? I searched through initscripts and found that the following code checks the entry in fstab, but what should I change to make it not mount /run/shm? I'm running ...
5
votes
1answer
1k views
Tmpfs only with RAM
How to be sure that a tmpfs filesystem can only deal with physical and it's not using a swap partition on disk ?
Since i have a slow HDD and a fast RAM i would like, at least, giving higher priority ...
2
votes
2answers
113 views
Graphical archive manager that uses /tmp
I am looking for a (preferably) graphical archive manager that can be configured to use /tmp as a scratch area for decompressing.
My setup is as follows: I have my local workstation with /home ...
0
votes
0answers
374 views
How to disable tmpfs on /media in openSUSE?
In OS 11.4 /media is a regular directory. Whatever I put there, it stays.
In OS 12.1 /media is tmpfs. Whatever I put there, on next restart is gone.
The question is -- how to get rid of tmpfs on ...
2
votes
1answer
479 views
tmpfs and vm.swappiness
I have started tuning a bit Linux VM performance on my system (yes. I know that vm.swappiness=0 will kill kittens but I found 30-40 as much better for me as it improved my latency - probably at cost ...
8
votes
3answers
2k views
(How) can I create a tmpfs as a regular (non-root) user?
The distribution is an Ubuntu server running the 2.6.35-30 Linux kernel.
I would like to have a directory that sits completely in memory. Is this possible without root privileges?