March 2019
Intermediate to advanced
356 pages
10h 7m
English
Use the following command to clone the Ceph Git repository:
git clone https://github.com/ceph/ceph.git
The preceding command will give the following output:

Once we have cloned the Ceph Git repository, we need to edit the CMakeLists.txt file and add in a section for our new class that we are going to write.
Edit the following file in the source tree:
~/ceph/src/cls/CMakeLists.txt
Also, place the following in the file:
# cls_md5set(cls_md5_srcs md5/cls_md5.cc)add_library(cls_md5 SHARED ${cls_md5_srcs})set_target_properties(cls_md5 PROPERTIES VERSION "1.0.0" SOVERSION "1" INSTALL_RPATH "")install(TARGETS cls_md5 ...Read now
Unlock full access