LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices


Reply
  Search this Thread
Old 12-03-2012, 10:20 AM   #1
rng
Senior Member
 
Registered: Aug 2011
Posts: 1,198

Rep: Reputation: 47
Any advantage of /tmp on tmpfs ?


Is there any advantage of having /tmp on tmpfs using following fstab entry?
Quote:
tmpfs /tmp tmpfs nodev,nosuid 0 0

OR

tmpfs /tmp tmpfs nodev,nosuid,size=20%,mode=1777 0 0
I have seen many articles on the net on this but many have been old and apparently now wheezy mounts it as a default (http://www.legendiary.at/2012/03/21/...fs-by-default/) but it is not so on my recently installed Debian-testing system.

If yes, which of above 2 lines should be added to fstab?
 
Old 12-03-2012, 11:51 AM   #2
fotoguy
Senior Member
 
Registered: Mar 2003
Location: Brisbane Queensland Australia
Distribution: Custom Debian Live ISO's
Posts: 1,291

Rep: Reputation: 62
There's s few advantages to running tmp in memory, memory is a lot quicker to read and write to, which can speed up some processes that utilise the tmp, for example, if you rip audio or movies this can speed the process considerably. For ssd drives you can reduce the amount of unnessasary writes to the drive, thus increasing the life span of the drive. You can get a build up of temp files that can sit in the tmp directory when it's mounted in the normal location on the drive and take up space that can be used for other things, having it in memory will remove them every time you reboot.

I would prefer this one because it gives you more control and options so you can make it to your liking depending on what you do with this computer

Quote:
tmpfs /tmp tmpfs nodev,nosuid,size=20%,mode=1777 0 0

Last edited by fotoguy; 12-03-2012 at 11:52 AM.
 
Old 12-03-2012, 07:37 PM   #3
rng
Senior Member
 
Registered: Aug 2011
Posts: 1,198

Original Poster
Rep: Reputation: 47
How about adding other tmpfs entries in fstab on Debian, if I want to install on an external usb device:
Quote:
tmpfs /var/log tmpfs defaults,noatime,mode=0755 0 0
tmpfs /var/log/apt tmpfs defaults,noatime 0 0
tmpfs /var/lock tmpfs defaults,noatime 0 0
tmpfs /var/run tmpfs defaults,noatime 0 0
http://wiki.geteasypeasy.com/How_to:...ur_Flash_Drive
https://wiki.archlinux.org/index.php/Fstab#tmpfs

Debian-testing is using some folders on tmpfs even without any fstab entries:
Quote:
$ df -hT | grep tmpfs
udev devtmpfs 10M 0 10M 0% /dev
tmpfs tmpfs 392M 664K 391M 1% /run
tmpfs tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs tmpfs 784M 0 784M 0% /run/shm
 
Old 12-04-2012, 02:01 AM   #4
geox
Member
 
Registered: Jan 2012
Posts: 42

Rep: Reputation: 2
In my experience mounting /tmp on tmpfs does not give you any advantages, only disadvantages.

In embedded Linux /tmp is usually soft-linked to some directory under /var, but only because /var is usually the only available location that is writable (embedded linux that is!)
If you have an SSD you might also choose for that option. Then again, why get a fast disk if you don't use it...

But why you would want to mount /var/log on a ramdisk is beyond me. Why? The whole reason you have logs is to trace back what happened. After a reboot your tmpfs systems are empty so you can forget about any tracing. And I cannot imagine you would use tmpfs for performance reasons as syslog buffers writes, so your application can continue even if the log hasn't been written to disk.

The reason Debian mounts /var/lock and /var/run on separate disks is that you can always start an application and/or service, even if your /var partition (or '/') fills up completely. Sometimes your applications create so much logging that they will fill up /var/log completely and, as a result, also /var or '/'. If Linux cannot write to /var/lock or /var/run it cannot start any application or service anymore. They are tmpfs system for this reason only.

Anyways....my advice would be to forget about using tmpfs for /tmp but use a regular disk partition instead.
 
Old 12-07-2012, 02:19 AM   #5
fotoguy
Senior Member
 
Registered: Mar 2003
Location: Brisbane Queensland Australia
Distribution: Custom Debian Live ISO's
Posts: 1,291

Rep: Reputation: 62
Quote:
But why you would want to mount /var/log on a ramdisk is beyond me. Why? The whole reason you have logs is to trace back what happened. After a reboot your tmpfs systems are empty so you can forget about any tracing. And I cannot imagine you would use tmpfs for performance reasons as syslog buffers writes, so your application can continue even if the log hasn't been written to disk.
Have to agree with geox here on this one, /var/log is important to troubleshoot if anything goes wrong, that doesn't mean to say that you shouldn't do it. You can experiment with it and see if it works for you, just make sure you backup your /etc/fstab file firest, I have tried that myself for my SSD, in the end I decided to use an old 8gb flash drive I had laying around, it now handles the /var/log directory, when it fails i'll just by another one, cheap enough. I still run my /tmp, /var/tmp in memory, as well as the /run /var/run that ubuntu places in memory by default.

My advise would be to experiment with it and see if it causes you any trouble, or gain any speed out of it, that would be the only way you know if there will be any benefits to doing it. I have had no problems with mine, and I do the usuall stuff, surf the web, emails, rip movies etc...
 
Old 12-07-2012, 06:48 AM   #6
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Quote:
Originally Posted by geox View Post
In my experience mounting /tmp on tmpfs does not give you any advantages, only disadvantages.
I disagree. Using tmpfs on /tmp gives me a serious speed increase when compiling things in /tmp. I can compile a kernel with -j10 in /tmp without much I/O-waits, but I can only use -j6 on a fast SSD.

Quote:
If you have an SSD you might also choose for that option. Then again, why get a fast disk if you don't use it...
RAM is faster than any SSD. So, why get fast RAM if you don't use it?
 
Old 12-07-2012, 08:19 AM   #7
replica9000
Senior Member
 
Registered: Jul 2006
Distribution: Debian Unstable
Posts: 1,121
Blog Entries: 2

Rep: Reputation: 259Reputation: 259Reputation: 259
I originally started using my /tmp dir with tmpfs just so I wouldn't have temp files always writing to my SSD. With RAM so cheap these days, I've recently started loading my whole rootfs into RAM. Much faster than SSD, and saves on write cycles.
 
Old 12-07-2012, 10:29 AM   #8
geox
Member
 
Registered: Jan 2012
Posts: 42

Rep: Reputation: 2
Quote:
RAM is faster than any SSD. So, why get fast RAM if you don't use it?
Well, for one because RAM is so much more expensive. And two, Since my RAM is restricted I use it for other things. There are absolutely valid cases for using tmpfs for /tmp but most of the times I find a tmpfs simply too small.

Quote:
With RAM so cheap these days, I've recently started loading my whole rootfs into RAM. Much faster than SSD, and saves on write cycles.
So you need a rootfs of only a few GB? (see previous argument)
 
Old 12-07-2012, 10:46 AM   #9
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Quote:
Originally Posted by geox View Post
So you need a rootfs of only a few GB? (see previous argument)
As you can see in his sig his main system has 32GB of RAM, so the rootfs can be fairly large. I use tmpfs for /tmp on a machine with 16GB. Of course on a system with 2GB or less this isn't really an option.
 
Old 12-07-2012, 03:19 PM   #10
fotoguy
Senior Member
 
Registered: Mar 2003
Location: Brisbane Queensland Australia
Distribution: Custom Debian Live ISO's
Posts: 1,291

Rep: Reputation: 62
Quote:
Originally Posted by replica9000 View Post
I originally started using my /tmp dir with tmpfs just so I wouldn't have temp files always writing to my SSD. With RAM so cheap these days, I've recently started loading my whole rootfs into RAM. Much faster than SSD, and saves on write cycles.
That actually a nice idea, might try that myself since i'm running 16gb. That gives me an idea, now that i'm running Lubuntu which supports aufs, for machines with limited ram you could mount rootfs as read-only and create a ramdisk for the write files branch, this would save much space and would make the writes much faster. Of course the only draw back would be you would lose any changes with each reboot, make a nice experiment though.
 
Old 12-07-2012, 11:43 PM   #11
replica9000
Senior Member
 
Registered: Jul 2006
Distribution: Debian Unstable
Posts: 1,121
Blog Entries: 2

Rep: Reputation: 259Reputation: 259Reputation: 259
I have a script that alternates between my SSD and a HDD to sync back the changes. I suppose in the even of a crash, I go back in time a few hours.
 
Old 12-11-2012, 02:18 AM   #12
fotoguy
Senior Member
 
Registered: Mar 2003
Location: Brisbane Queensland Australia
Distribution: Custom Debian Live ISO's
Posts: 1,291

Rep: Reputation: 62
Quote:
Originally Posted by replica9000 View Post
I have a script that alternates between my SSD and a HDD to sync back the changes. I suppose in the even of a crash, I go back in time a few hours.
Maybe you should look at aufs, you can set it up so it writes to the hdd so you don't have to worry about scripts, you wont lose and data it you have a crash then.
 
Old 12-11-2012, 03:35 AM   #13
geox
Member
 
Registered: Jan 2012
Posts: 42

Rep: Reputation: 2
Fotoguy: If you use aufs you state that all changes will be lost on reboot. So that contradicts your statement about not losing data.

Putting your rootfs in a ramdisk is something embedded systems do a lot and i have a lot of experience with this particular setup. Embedded systems do this mainly to reduce flash disk wear. They do NOT use an SSD but rather regular flash, which is not optimized to reduce disk wear. An SSD is.

If an embedded system uses RAM as a rootfs they implement a lot of workarounds to get it to work consistently. This is not easy to do. If you put your rootfs in RAM be aware of these drawbacks. You WILL lose changes. You will gain speed, but due to disk caching in Linux this will be minimal.

A ramdisk is faster and reduces wear on your SSD but considering the very minor performance increase, the fact SSD's are optimized to reduce wear already and the drawbacks mentioned I'd say this setup has advantages for very few setups/uses. Compiling 3-4 linux kernels a day is one of those uses.

Last edited by geox; 12-11-2012 at 03:42 AM.
 
Old 12-11-2012, 04:16 AM   #14
fotoguy
Senior Member
 
Registered: Mar 2003
Location: Brisbane Queensland Australia
Distribution: Custom Debian Live ISO's
Posts: 1,291

Rep: Reputation: 62
Quote:
Originally Posted by geox View Post
Fotoguy: If you use aufs you state that all changes will be lost on reboot. So that contradicts your statement about not losing data.
Sorry I should have made myself a little clearer with replica9000 post, people may not familiar with unionfs filesystems. Aufs creates branches, which are read-only, and read-write, with live cd/dvd which use unionfs filesystems, the read-write branch is usually on a ramdisk, which will be lost on reboot/restart, but in replica9000 situation using a hdd which is read-write, you could just create a read-write branch that would point to the hdd, so any modification are made dynamically and would not be lost on reboot/restart. Not sure how easy this would be to do, haven't done it myself, but i'm looking into something like this myself for a bit of experimentation.
 
Old 12-11-2012, 04:35 AM   #15
geox
Member
 
Registered: Jan 2012
Posts: 42

Rep: Reputation: 2
Ah, much like running from a LiveCD then
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Bad exit status from /var/tmp/rpm-tmp.Cs9Mt5 (%build) imbrij Linux - Virtualization and Cloud 11 10-27-2012 10:55 AM
Multiple tmpfs mounts and reasonable settings for /tmp Meson Linux - General 4 07-17-2011 11:18 PM
/etc/fstab "tmpfs /tmp tmpfs defaults 0 0" ramfs?! HOW? xcislav Linux - General 2 06-04-2011 03:03 AM
Can't login, says tmp directory full but tmp file is empty! Could be linked to MySQL? bethanlowder Fedora 7 09-25-2009 07:17 AM
how to securing /tmp , /var/tmp and /dev/shm hackintosh Linux - Security 7 10-17-2007 11:26 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian

All times are GMT -5. The time now is 11:54 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration