Rate This Document
Findability
Accuracy
Completeness
Readability

Installing Jellyfish

Procedure

  1. Use PuTTY to log in to the server as the root user.
  2. Use an SFTP tool to upload the Jellyfish installation package to the /path/to/JELLYFISH directory on the server.
  3. Run the following command to decompress the installation package:
    cd /path/to/JELLYFISH && tar -zxf jellyfish-2.2.10.tar.gz
  4. Run the following command to go to the directory generated after the decompression:
    cd jellyfish-2.2.10
  5. Run the following command to perform the configuration:
    CC=`which gcc` CXX=`which g++` ./configure --prefix=/path/to/JELLYFISH CXXFLAGS='-O3 -std=c++11 -march=armv8.2-a -mtune=tsv110 -flto' CFLAGS='-O3 -march=armv8.2-a -mtune=tsv110 -flto'
  6. Run the following command to perform the installation and compilation:
    make -j && make install