I use NFS to share media to computers around my house. Unfortunately one of the machines is on a slow wireless link, is there a way to cache network shares on the local disk for performance?
2 Answers
Stefan led me down the right track. This will work on any system 12.04 and newer.
Your filesystem will also need extended attribute support. If you're using EXT4 you're fine, if you're using EXT3 you'll need to ensure your filesystem is mounted with the user_xattr attribute.
Here's how I set it up on the client machine, you don't need to do anything on the server side.
First, install the user space daemon:
sudo apt-get install cachefilesdThen turn it on by editing
/etc/default/cachefilesdand changing the run line toRUN=yesEnsure your NFS mount in
/etc/fstabhas anfscoption. Don't forget to remount it after you've made the changes. Here's my excerpt (modify to your needs):192.168.1.115:/home/jorge /home/jorge/Backup nfs fscStart the service:
sudo /etc/init.d/cachefilesd start
Configuration of the cache is done in /etc/cachefilesd.conf, see the references for what the setting options are.
References:
- Linux Magazine
/usr/share/doc/cachefilesd/howto.txt.gz/usr/share/doc/cachefilesd/README.gz- How do I enable extended attributes on ext4?
- 73,717
I'm not sure if there is any way to do this currently with Ubuntu 10.04 LTS.
However, the newer versions of the Linux kernel include a feature called FS-Cache & CacheFS, which sounds exactly like what you (and I) want.
Also see Local Caching For Network Filesystems.
- 4,224