From 0523864d3088d6e3281c52abb9bdab370655f0c6 Mon Sep 17 00:00:00 2001 From: jslagrew <82918323+jslagrew@users.noreply.github.com> Date: Tue, 14 Jul 2026 08:54:49 -0500 Subject: [PATCH] Update Ubuntu.md for no password sudo prompts Some platforms, like Digital Ocean, may require a password prompt for sudo with a newly created user account, which currently creates issues during the install. Adding the user, even with "--disabled-password' still generated a password entry prompt on sudo use. --- docs/install-instructions/Ubuntu.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/install-instructions/Ubuntu.md b/docs/install-instructions/Ubuntu.md index 2f9a3f42..84eb69e8 100644 --- a/docs/install-instructions/Ubuntu.md +++ b/docs/install-instructions/Ubuntu.md @@ -13,6 +13,9 @@ Select the appropriate Ubuntu Server 24.04 package from your provider. You won't ``` sudo adduser --disabled-password --gecos "DShield Honeypot" dshield sudo adduser dshield sudo +echo 'dshield ALL=(ALL:ALL) NOPASSWD: ALL' | sudo tee /etc/sudoers.d/dshield sudo +chmod 440 /etc/sudoers.d/dshield +sudo visudo -cf /etc/sudoers.d/dshield ``` If you installed the "minimum server": Make sure to install the editor of your choice. (for example, "sudo apt install emacs-nox").