How to setup passwordless sudo (the right way)

As root: echo "%passwordless ALL = (ALL:ALL) NOPASSWD: ALL" | tee /etc/sudoers.d/passwordless > /dev/null groupadd passwordless usermod -aG passwordless {your_username_here} Why you should use this method: 1. Using this method gives you control over who has passwordless sudo privileges 2. Passwordless sudo privileges…

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 &…