edit /etc/sudoers
sudo visudoThen find the admin group permission section:
%admin ALL = (ALL) ALLmacOS
%wheel ALL=(ALL) ALLLinux
Change to add NOPASSWD:
%admin ALL = (ALL) NOPASSWD: ALLmacOS
user ALL=(ALL) NOPASSWD: ALLLinux
Be aware that removing the password requirement to use sudo eliminates a level of security. If someone gains access to your account they will be able to easily escalate to root privileges.