How to burn/write Xubuntu ISO image to USB drive

To write an ISO image to a USB drive on Linux, you can use the ‘dd’ command.

Download the latest preferred Xubuntu version from official store https://xubuntu.org/download/

Below the steps to follow:

– Insert the USB drive into your computer’s USB port.

Read the rest

Xubuntu, fastboot, ADB and Redmi Note 7 adventures

Install adb and fastboot:

sudo su
apt-get update
apt-get install android-tools-adb android-tools-fastboot -y

Supposed your phone device bootloader is unblocked:

– Settings –> About Phone –> MIUI version and MIUI Version 7 Times
– Settings –> Additional Settings –> Developer Options and check “OEM unlocking” [should be already checked] and “USB debugging.”… Read the rest

Xubuntu 127.0.0.53 issue in /etc/resolv.conf file


The problem when you seemingly configured all right and Google’s DNS resolvers are good:

nameserver 8.8.8.8
nameserver 8.8.4.4

But system still shows wrong information

Install resolvconf if needed

sudo apt-get install resolvconf -y

You need to disable systemd-resolved to get rid of 127.0.0.53 from your /etc/resolv.confRead the rest

How to install roxterm on Xubuntu 18.04.1 LTS

roxterm no longer exist in debian pkg

Download and install roxterm using source below

http://roxterm.sourceforge.net/index.php?page=installation&lang=en

git clone git://git.code.sf.net/p/roxterm/code roxterm

cd roxterm

Install python if needed:

sudo apt install python

You may skip below three steps and install and install dependencies firstly

sudo python ./mscript.py
Read the rest