Showing posts with label Ubuntu. Show all posts
Showing posts with label Ubuntu. Show all posts

How to Install Systemback on Ubuntu 18.04 and Ubuntu 19.10, 20.04


This tutorial will be showing you how to install Systemback on Ubuntu 18.04 and Ubuntu 19.10. Systemback is a simple system backup and restore application, released under the terms of GPLv3 license. Features of Systemback includes:
  • Create backups of the system and the users configuration files
  • Restore the system to a previous state, just like the snapshot function of Virtualbox
  • Create bootable ISO file from existing installation
  • Copy the system from one partition to another partition.
  • Upgrade software

Install Systemback on Ubuntu 18.04, 19.10 and 20.04

Ubuntu 16.04 users can install Systemback from PPA by running the following commands in terminal.

sudo add-apt-repository ppa:nemh/systemback

sudo apt update

sudo apt install systemback

The author of Systemback stopped its development in 2016, so Ubuntu 18.04, 19.10 and 20.04 are not in the supported list. If you run the above command on Ubuntu 18.04, you will see the following error,

E: The repository 'http://ppa.launchpad.net/nemh/systemback/ubuntu bionic Release' does not have a Release file.

or

E: Unable to locate package systemback

To install systemback on Ubuntu 18.04/19.10, first remove the PPA.

sudo add-apt-repository --remove ppa:nemh/systemback

The Systemback binary for Ubuntu 16.04 is compatible with Ubuntu 18.04/19.10/20.04, so we can add the Ubuntu 16.04 PPA on 18.04/19.10. Run the following command to import the GPG signing key of this PPA so that the package manager can verify signature. The signing key can be found on launchpad.net.

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 382003C2C8B7B4AB813E915B14E4942973C62A1B

Unable to locate package systemback

If you see the following error:

gpg: keyserver receive failed: no keyserver available

or

gpg: keyserver receive failed: No data

You can fix this error by using a different keyserver. So instead of keyserver.ubuntu.com you can use pgp.mit.edu.

sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 382003C2C8B7B4AB813E915B14E4942973C62A1B

Then add the PPA on Ubuntu 18.04/19.10/20.04.

sudo add-apt-repository "deb http://ppa.launchpad.net/nemh/systemback/ubuntu xenial main"

systemback ubuntu 18.04 ppa

Update package list and install Systemback.

sudo apt update

sudo apt install systemback

Then you can start Systemback from your application menu. You need to enter your password to use this software. After you enter the password, click OK button.

systemback for bionic

As you can see, you can create restore points of your system, restore to a point, copy the system to another partition, install the system to a new partition, create live system (bootable ISO image), repair the system and upgrade software on the system.

systemback create iso

How to Create a Bootable ISO Image From Your Current System

Systemback can create a customized ISO image file from your current system. Every program and file can be included in the ISO.

Click the Live System Create button, then give a name to your ISO file. You have the option to include the user data files. Click the Create New button to create live system.

systemback create live iso

After the live system is created, you can convert the sblive file to ISO file. Note that if the sblive file is too big, you can’t convert it to ISO file. The sblive and ISO file are stored under your home directory by default, but they are not visible.

You can also insert your pen drive to your computer and write the sblive file to pen drive. (Click the reload button to detect USB drives.)

systemback bootable USB

Because my system has many programs and files, this process can take some time.

write live system to usb drive

Once it’s done, you can use the bootable USB to install your customized Ubuntu system on other computers.

all systemback ubuntu 18.10

I hope this tutorial helped you install Systemback on Ubuntu 18.04 and 19.10.

 

Fix ‘No WiFi Adapter Found’ with Ubuntu 18.04

This tutorial is a quick fix for HP laptops that wireless does not work on Ubuntu 18.04 Gnome desktop.
On my cheap laptop HP 246 G6 I found that the wireless network does not work out-of-box after installed Ubuntu 18.04. No wifi option in system tray menu, and System Settings says ‘No Wifi adapter found‘.
This happens on many HP devices including HP 15-bs000, 15-bs100, 15g-br000, 15q-bu000, and Pavilion 15-br000, HP 280 G3, 290 G1, and more. And the reason is Ubuntu does not support RTL8723de wifi driver.

Here’s what I did to fix no wifi adapter issue in Ubuntu 18.04:
1. Reboot and go to BIOS to make sure wireless network are enabled. And plug laptop into a wired connection.
2. Open terminal either via Ctrl+Alt+T shortcut key or by searching for ‘terminal’ from software launcher.

3.1 You may first install the building tools first via command:

sudo apt-get install linux-headers-$(uname -r) build-essential git

3.2 Run command to get the newest Realtek rtlwifi codes that includes rtl8192ce, rtl8192cu, rtl8192se, rtl8192de, rtl8188ee, rtl8192ee, rtl8723ae, rtl8723be, and rtl8821ae.:

git clone https://github.com/lwfinger/rtlwifi_new.git

And then check out extended branch for rtl8822be or rtl8723de:

cd rtlwifi_new/ && git checkout origin/extended -b extended


4. In this terminal window, install the drivers via command:

sudo make install

Type your password (no asterisks feedback) when it prompts and hit Enter.


5. If the installation success, run 2 commands load the new driver:

sudo modprobe -r rtl8723de 

sudo modprobe rtl8723de

Wireless network starts working in my case:

6. If that does not work, you may remove and blacklist the broadcom drivers and restart:

sudo apt purge bcmwl-kernel-source 

sudo sed -i '/blacklist bcma/ d' /etc/modprobe.d/blacklist.conf  

sudo sed -i '/blacklist brcmsmac/ d' /etc/modprobe.d/blacklist.conf

In addition,if you notice weak signal try command:

sudo modprobe -r rtl8723de && sleep 5 && sudo modprobe rtl8723de ant_sel=1

and see if it is better, if not run:

sudo modprobe -r rtl8723de && sleep 5 && sudo modprobe rtl8723de ant_sel=2

(REQUIRED) Or write the rule into configuration. REPLACE X with whatever setting (1, 2, or 3) worked best.

echo "options rtl8723de ant_sel=X" | sudo tee /etc/modprobe.d/rtl8723de.conf