OK got the point but i am right now at ubunutu same issue
Code:
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 22.04 LTS
Release: 22.04
Codename: jammy
Linux test-VirtualBox 5.15.0-33-generic #34-Ubuntu SMP Wed May 18 13:34:26 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
Here's the error i am getting
Code:
sudo make install
if test -d ./.hg && cd .; then \
if hg log --style=changelog -b default > ChangeLog.tmp; then \
mv -f ChangeLog.tmp ChangeLog; \
else \
rm -f ChangeLog.tmp; \
fi; \
elif test -d ./.git && cd .; then \
./log2cl.pl -b master > ChangeLog; \
else \
echo "ChangeLog data not available" > ChangeLog; \
fi
for d in lib/util plugins/group_file plugins/sudoers plugins/system_group src include doc examples; do \
(cd $d && exec make pre-install) && continue; \
exit $?; \
done
make[1]: Entering directory '/home/test/Downloads/sudo-1.8.26/lib/util'
make[1]: Nothing to be done for 'pre-install'.
make[1]: Leaving directory '/home/test/Downloads/sudo-1.8.26/lib/util'
make[1]: Entering directory '/home/test/Downloads/sudo-1.8.26/plugins/group_file'
make[1]: Nothing to be done for 'pre-install'.
make[1]: Leaving directory '/home/test/Downloads/sudo-1.8.26/plugins/group_file'
make[1]: Entering directory '/home/test/Downloads/sudo-1.8.26/plugins/sudoers'
Checking existing sudoers file for syntax errors.
/bin/bash: line 3: ./visudo: No such file or directory
make[1]: *** [Makefile:384: pre-install] Error 127
make[1]: Leaving directory '/home/test/Downloads/sudo-1.8.26/plugins/sudoers'
make: *** [Makefile:103: pre-install] Error 2
I downloaded the files for 1.8.26 version from here https://www.sudo.ws/getting/download/ then i ran this following command ./configure , make , then make install and it is getting while runnng make install i want to overwrite the current version of sudo
Bookmarks