|
Actually, I think the problem is not in the fakeroot, but in the make-jpkg script:
if touch /lib/.test 2>/dev/null; then
rm -f /lib/.test
echo "You are real root -- unfortunately, some Java distribution s have" >&2
echo "install scripts that directly manipulate /etc, and may cau se some" >&2
echo "inconsistencies on your system. Instead, you should become a" >&2
echo "non-root user and run:" >&2
echo >&2
echo "fakeroot make-jpkg $@" >&2
echo >&2
echo "which will allow no damage to be done to your system files and" >&2
echo "still permit the Java distribution to successfully extract ." >&2
echo >&2
echo "Aborting." >&2
exit 1
fi
The following commands run in my system without errors:
fakeroot touch /lib/.test
fakeroot rm /lib/.test
I'm sorry, but I'm not so expert in using fakeroot, is it normal that you can run those
commands without errors?
|