First of all, I'm noob on using flashcache, and all that I'll post here is studying about it.
I've an Asus K56CM, i5 with 500gb of HD and 24Gb of SSD for cache. In windows 8, the default operating system, uses Expresscache for caching the HD in the SSD.
I want to make the same in Xubuntu, and i've seen Flashcache as the better way to do this.
I've follow several manuals, but I'm loosing something.
The partitions table is:
sda 8:0 0 465,8G 0 disk
├─sda1 8:1 0 5,9G 0 part [SWAP]
├─sda2 8:2 0 117,2G 0 part /
└─sda3 8:3 0 342,7G 0 part /home
sdb 8:16 0 22,4G 0 disk
├─sdb1 8:17 0 250M 0 part /boot/efi
├─sdb2 8:18 0 5,9G 0 part
└─sdb3 8:19 0 16,3G 0 part
SDA is Hard Disk and SDB is SSD
In SDB2 I'm using gdisk for Intel Rapid Boot, and I want to cache /home in SDB3.
The walkthrough I've follow is (http://nitocris.over-blog.net/article-flash-cache-as-home-or-root-on-ubuntu-109792445.html):
- apt-get install git-core
- mkdir -p ~/Build/ ; cd ~/Build/
- git clone https://github.com/facebook/flashcache.git
- sudo apt-get install git build-essential dkms linux-headers-`uname -r` uuid-dev
- cd flashcache
- sudo make -f Makefile.dkms all boot_conf
- sudo make install
- sudo modprobe flashcache
- sudo echo "flashcache" >> /etc/modules
- dmesg | tail
And Flashcache is now installed. But my problem is when I create the flashcache link.
I take the UUID of SDA3 and make the flashcache_Create on SDB3:
- umount /home
- flashcache_create -p back home_cached /dev/sdb3 /dev/disk/by-uuid/XXX-XXX (the ID)
And then, I edit the FSTAB, commenting the /home mounting and adding:
- /dev/mapper/home_cached /home reiserfs defaults 0 2
Everything ok, but now, then when I reboot system, /home is not being mounted... and I don't know why...
Any help?
THanks!
PD: sorry about my english, i'm spanish :S
EDIT: Ok, I have the solution. Flashcache must be created on every reboot, so I have created an script to execute on boot. I described it here: http://ubuntuforums.org/showthread.php?t=2179297
I've read in some sites that putting writeable is the solution... but isn't another solution?
– EirisDG Oct 06 '13 at 16:14