Posts
Custom Sudoers
by danaukes
sudo nano /etc/sudoers.d/passwordless-sudo
Add the same line as above to the new file:
username ALL=(ALL) NOPASSWD: ALL
Save ...
Distrobox Info
by danaukes
sudo apt install -y podman distrobox crun curl -s https://raw.githubusercontent.com/89luca89/distrobox/main/install | sudo sh
distrobox create --name test ...
DVD backup
by danaukes
sudo apt install -y k3b libdvd-pkg sudo dpkg-reconfigure libdvd-pkg sudo apt install -y ...
Gnome Remote Desktop
by danaukes
```bash sudo apt install -y winpr-utils
sudo systemctl restart gnome-remote-desktop.service sudo grdctl --system rdp enable
sudo rm -rf ~gnome-remote-desktop/rdp-tls* sudo ...
Dealing with .heif Images
by danaukes
https://linuxnightly.com/convert-heif-images-to-jpg-or-png-on-linux/
sudo apt install -y libheif-examples
heif-convert image.HEIC new-image.jpg
using ...
install node
by danaukes
https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-ubuntu-22-04
```bash cd ~/Downloads curl -sL https://deb.nodesource.com/setup_18.x -o nodesource_setup.sh sudo bash ...
Micropython on Linux
by danaukes
```bash
sudo apt install -y build-essential libffi-dev git pkg-config
git clone https://github.com/
Installing and Setting up MQTT
by danaukes
Installation
sudo apt update
sudo apt install -y mosquitto mosquitto-clients
sudo snap install mqtt-explorer
Example Setup
```bash sudo cp ...