Opendedup

get more from your disk

  • Increase font size
  • Default font size
  • Decrease font size

Linux Quickstart Guide

E-mail Print PDF

Requirements

System Requirements

Optional Packages

  • attr - (setfattr and getfattr) if you plan on doing snapshotting or setting extended file attributes

Getting Started

Step 1: Set your JAVA_HOME to the path of the java 1.7 jdk or jre folder, or edit the path in the shell scripts (mount.sdfs and mkfs.sdfs) to reflect the java path

e.g. export JAVA_HOME=/usr/lib/jvm/jdk

Step 2: Modify the maximum number of open files by editing /etc/security.limits.conf. Add the following lines

* soft nofile 65535
* hard nofile 65535

Step 2: Create an sdfs file system.

To create and SDFS file System you must run the following command:

sudo ./mkfs.sdfs --volume-name=<volume-name> --volume-capacity=<capacity>

e.g.

sudo ./mkfs.sdfs --volume-name=sdfs_vol1 --volume-capacity=100GB

Step 3: Mount the sdfs

To mount SDFS run the following command:

sudo ./mount.sdfs -v <volume-name> -m <mount-point>

e.g.

sudo ./mount.sdfs -v sdfs_vol1 -m /media/sdfs

Quick Note:

If you would like to mount the volume with fuse 2.7 try mounting the volume and changing the fuse mount options. Take a look at this example

sudo ./mount.sdfs -v sdfs_vol1 -m /media/sdfs  -o direct_io,allow_other,fsname=SDFS

Last Updated on Friday, 24 August 2012 18:26  

SDFS Info

Latest News

SDFS Version 1.2.3 has been released with major fixes and enhancements. It can be downloaded here.
 
SDFS Version 1.2.1 has been released with major fixes and enhancements. It can be downloaded here.