I'm trying out the step-by-step guide for installing iSCSI + MHVTL on CentOS. I'm got stuck at a point when preparing the source rpm files. First when I run the command;
rpm -ivh http://mirror.centos.org/centos/5/updat ... l5.src.rpm
once the download is over and the install starts, I get the following msgs repeated.
warning: user mockbuild does not exist - using root
warning: group mockbuild does not exist - using root
After that I run the command:
cd ~/rpmbuild/SPECS
rpmbuild -bp --target=`uname -m` kernel-2.6.spec 2> prep-err.log | tee prep-out.log
but I do not find the source files in rpmbuild/BUILD. I guess the reason might be due to the messages I get when installing the kernel rpm, since "nia" advised in the guide against building the package as root, whereas the message indicates that the mockbuild does not exist due to which the install is using root. I did try creating a user called mockbuild after which I didn't get the message I got above, but I still do not see the source files in rpmbuild/BUILD.
So anyone got any ideas what I should be doing?