Skip to content

Latest commit

 

History

History
26 lines (25 loc) · 740 Bytes

File metadata and controls

26 lines (25 loc) · 740 Bytes

Running Guide (for developers)

We will keep updating this file with the latest detailed instructions as the project grows.

Install the FastDevFS

To install FastDevFS, follow these steps:

  1. Clone the repository:

    git clone https://github.com/devlup-labs/FastDevFs.git
    cd FastDevFs
  2. Ensure you have the necessary dependencies installed, including FUSE3 and a C++ compiler.

    sudo apt-get install libfuse3-dev g++
  3. Build the project using CMake:

    mkdir -p build
    cd build
    cmake ..
    make
  4. Run the filesystem (requires root privileges):

    mkdir -p ../test_mount_dir
    ./FastDevFS ../test_mount_dir -f ## Run in foreground mode