How to setup passwordless sudo (the right way)

As root: groupadd passwordless usermod -aG passwordless yourusername echo "%passwordless ALL=(ALL:ALL) NOPASSWD: ALL" | tee /etc/sudoers.d/passwordless > /dev/null chmod 440 /etc/sudoers.d/passwordless visudo -c Why you should use this method: 1. Using this method gives you control over who has passwordless…

Chrome Remote Desktop settings that make your life easier

Settings locations CRD sources settings from the places listed below: System-wide settings: /etc/chrome-remote-desktop-session User settings: ~/.chrome-remote-desktop Environment variables: CHROME_REMOTE_DESKTOP_HOST_EXTRA_PARAMS Enable retina and 4K display resolutions. MBP Intel 15: 2880x1800 MBP Intel 16: 3072x1920 MBP Intel 13: 2560x1600 MBP ARM 14: 3024x1890 MBP ARM 16:…

Chrome Remote Desktop APT Installation

During CRD installation, the only option referenced is downloading the .deb package directly and then installing it using dpkg or apt. After some searching I figured out how to install it from apt directly. 1. Download the Google apt GPG public key sudo touch /usr/share/keyrings/google.gpg &…