...
Code Block |
---|
git clone git://git.whamcloud.com/fs/lustre-release.git git checkout multi-rail # note make sure to pull out whatever the latest patch series is # cherry pick the below two patches ontop of your code base git fetch https://review.whamcloud.com/fs/lustre-release refs/changes/19/37019/3 && git checkout FETCH_HEAD git pullfetch https://review.whamcloud.com/fs/lustre-release refs/changes/81/33181/68 && git cherry-pick FETCH_HEAD # install python3 yum install python3 yum install python3-devel #configure sh ./autogen.sh PYTHON_VERSION=3.6 ./configure --with-linux=<kernel_path> # follow the rest of the build instructions in the top link |
...