Posts with "ubuntu" Tag

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 ...

Read More
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 ...

Read More
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 ...

Read More
Micropython on Linux

by danaukes

```bash sudo apt install -y build-essential libffi-dev git pkg-config git clone https://github.com//micropython cd micropython git remote add upstream ...

Read More
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 ...

Read More
QR Code Tools

by danaukes

modified from this site

Installing

```bash sudo apt install -y qrencode #encoding tools sudo apt install -y ...

Read More
recover data from an sd card

by danaukes

https://askubuntu.com/questions/330568/how-to-restore-photos-on-sd-card

```bash sudo apt install -y testdisk sudo ...

Read More
Recovering Files

by danaukes

External Resources

  • ...
Read More