-
as seen on Ask Ubuntu
- Search for 'Ask Ubuntu'
According to suggestions in this post I am trying to improve my system to run better with a Solid State Drive. But regarding to RAMdisks and /etc/fstab usage I have some understanding problems coming up.
So let's say I add the following lines to /etc/fstab
tmpfs /tmp tmpfs defaults,noatime…
>>> More
-
as seen on Super User
- Search for 'Super User'
I have a script that decrypts some data to a tmpfs, the directory is secure (permissions), the machine's swap is encrypted (random key on boot) and when the script is done it does a 35 pass wipe (Peter Gutmann) of the cleartext on the tmpfs .
I do this because I'm aware wiping files on a journaling…
>>> More
-
as seen on Super User
- Search for 'Super User'
How can I create consistent snapshots of tmpfs or any RAM disks?
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
/var/log/lastlog gets written to when you log in. The size of this file is based off of the largest UID in the system. The larger the maximum UID, the larger this file is. Thankfully it's a sparse file so the size on disk is much smaller than the size ls reports (ls -s reports the size on disk).
On…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
I was wondering if, and how much, using tmpfs could improve MySQL performance and how it should be done ? My guess would be to do mount -t tmpfs -o size=256M /path/to/mysql/data/DatabaseName, and to use the database normally but maybe I'm wrong (I'm using MyISAM tables only).
Will a hourly rsync…
>>> More