diff options
author | 2017-03-08 17:41:54 +0100 | |
---|---|---|
committer | 2017-03-08 17:41:54 +0100 | |
commit | 0bc4bd086fe1991b9ae4a78e03d801c589403e8e (patch) | |
tree | 09228bfbc6dfbb72f0dd6a7052201852a638b372 | |
parent | f7d3423403ef367d99ca48ce71d3ad9b52e5fcdd (diff) |
10_base: fstab adjustment to mount /tmp in tmpfs
Change-Id: I254c4b002fb9b16c54222a11ff1d71006fef1cca
Signed-off-by: Stephane Desneux <stephane.desneux@iot.bzh>
-rw-r--r-- | INSTALL/setup.d/10_base | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/INSTALL/setup.d/10_base b/INSTALL/setup.d/10_base index fddd75b..e429e65 100644 --- a/INSTALL/setup.d/10_base +++ b/INSTALL/setup.d/10_base @@ -60,6 +60,8 @@ echo "en_US.UTF-8 UTF-8" >>/etc/locale.gen /usr/sbin/locale-gen echo "LANG=en_US.UTF-8" >>/etc/default/locale +# by default, /tmp is not mounted in tmpfs: solve this +echo "tmpfs /tmp tmpfs noatime,size=50% 0 0" >>/etc/fstab |