...
Walk-thru- Build Lustre MASTER on RHEL 7.3/CentOS 7.3 from Git
Dec 25th, 2019 Note
As of this date the LUTF is still on the multi-rail branch. To get it you need to:
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
git pull https://review.whamcloud.com/fs/lustre-release refs/changes/81/33181/57
# follow the rest of the build instructions in the top link |
Deploy Lustre rpms
Deploy lustre RPMs on your test nodes using your favourite method.My
Suggested Method:
- Copy the RPMs to the test node in some directory
Code Block |
---|
mkdir ~/lustre_rpmsscprpms scp root@buildmachine:~/lustre_build/*.rpm ~/lustre_rpms |
- uninstall any existing Lustre rpms
...
Code Block |
---|
rpm -e --nodeps kmod-lustre kmod-lustre-osd-ldiskfs kmod-lustre-tests lustre lustre-iokit \
lustre-osd-ldiskfs-mount lustre-tests lustre-resource-agents lustre-debuginfo |
- Install the new rpms
Code Block |
---|
rpm --nodeps --ivh *.rpm |
- The LUTF is now installed with the rest of the lustre tests
Code Block |
---|
cd /usr/lib64/lustre/tests/lutf |