Allow sudo without password
To allow sudoing without a password you will need to add the following to /etc/sudoers where username is your username. username ALL=(ALL) NOPASSWD:ALL
Detailed tutorials and guides
To allow sudoing without a password you will need to add the following to /etc/sudoers where username is your username. username ALL=(ALL) NOPASSWD:ALL
Introduction In this guide I will be showing you how you can interact with the clipboard from the terminal. The focus of this will be how you can do things like copy the contents of a file (or output from a program) directly into memory and also how you can paste directly into a file … Read more
Introduction In this tutorial, I will be showing you how you can setup OpenSSH to allow you to securely login via SSH Keys. This is very useful as it adds an extra level of authentication and also works as a great protection against people trying to guess your passwords! Prerequisites In order to follow this … Read more
You can change the hostname on ubuntu via the terminal using the following command sudo hostname [newhostname] You may need to open up a new terminal window for you to see this change. To make this persistent, you can edit the following two files by replacing the previous hostname to the new one. sudo nano … Read more
For this to work, you will need to have access to an account with sudo privileges already. This has been tested on Ubuntu 14.04 but will most likely work on all Debian based distributions. If you are creating a new account then you can use the following command sudo adduser [username] This will then create … Read more
In this tutorial, I will be showing you how you can transfer files between servers. Below, you should be able to see this been done. Download to this server If you are currently connected to a server and would like to download a file to it from another server, you will need to run a … Read more
In this guide I will be showing you how you can setup a Prometheus node exporter on Ubuntu 18.04 server for the Raspberry Pi so that a Prometheus server can collect metrics from it. Note: This is for the raspberry pi and is designed to work on arm64 machines Requirements To follow this guide you … Read more