Ubuntu – data stored in RAM filesystem – TMPFS

In my Cubieboard2 I use Lubuntu. Since I have connected barometer and arduino to my cubieboard, I read data from that devices and store it to cubieboard2 filesystem. Since NAND memory is not quite suitable for such frequent changes because of wear-out of the memory cells over time, I’ve created temp space in RAM memory. Cubieboard2 has 1GB DDR memory so there is some space for it.


I will use TMPFS and not older RAM disks – ramfs. Tmpfs is supported by the Linux kernel from version 2.4 and up. On reboot, everything in tmpfs will be lost. The memory used by tmpfs grows and shrinks to accommodate the files it contains and can be swapped out to swap space.
To get more comprehensive info regarding those filesystems read this post or this post.

To get info of total and available memory in MB type:

free -m

Lubuntu image for Cubieboard doesn’t contain dedicated swap. You can check it by gparted or simply by:

swapon -s

I have 581MB free from total 811MB so it’s safe allocate some space for diskmem.
Since my files are small and replacing it’s data I will allocate max 10MB for file system in memory.

mkdir -p /home/linaro/projects/memdisk
sudo chown linaro:linaro /home/linaro/projects/memdisk
sudo mount -t tmpfs -o size=10M,mode=0755 tmpfs /home/linaro/projects/memdisk

My user and group name is linaro, so I changed ownership to that user/group.

To make mount permanent also after reboot, I have added a line in /etx/fstab:

sudo mcedit /etc/fstab
tmpfs /home/linaro/projects/memdisk tmpfs size=10M,mode=0755,uid=linaro,gid=linaro 0 0

 

I hope I will prolong the lifetime of my NAND memory on Cubieboard2 by adding this filesystem in RAM. To test the total capacity of the folder I have created a 10MB file (0.5+0.5+9MB) and then tried to add a file with 1 byte. It worked – no space left on device as you can see on the screen capture below.

To create a 10MB file type:

dd if=/dev/zero of=9mb-file.bin bs=1024k count=10

If you use tmps for apache2 /var/log then follow this: initd-script-to-create-essential-dirs-apache


Related Posts

DLNA media server on Cubieboard with Lubuntu

I have installed Lubuntu on my new Cubieboard 2. I have also attached HDD to SATA so I have more space to store my media. This posts describes the steps needed to install and configure[…]

Continue reading ...

Cubieboard2 – Lubuntu installation

I wanted to install Lubuntu on my new Cubieboard2 so I decided to go for this v1.06 Lubuntu 12.10 image. You have option to have NAND or SD card and I’ve decided to go for[…]

Continue reading ...

Lubuntu ssh: Read from socket failed – solved

SSH to my fresh lubuntu on cubieboard2 was not working. I tried it also from the lubuntu itself with the error: $ ssh localhostRead from socket failed: Connection reset by peer I went through many[…]

Continue reading ...