Different options and the compress has *.tar again.
Refer: https://forums.fedoraforum.org/showthread.php?312452-No-more-tar-gz-compression-option

Technical notes, and other ideas.
Different options and the compress has *.tar again.
Refer: https://forums.fedoraforum.org/showthread.php?312452-No-more-tar-gz-compression-option
Ubuntu has changed how things have worked, and on the company network, you will need to set what DNS server is being used.
There is a settings place for this now, not tested yet:
Refer: https://vitux.com/how-to-change-dns-settings-in-ubuntu/
Refer: https://askubuntu.com/questions/1021884/no-internet-after-upgrade-from-16-04-to-18-04
Quick Test
If the /etc/resolv.conf is empty but you can ping 8.8.8.8, you can use the following as a quick test/patch, but you will need to use the following section for a complete fix.
$ echo "nameserver 8.8.8.8" | sudo tee /etc/resolv.conf > /dev/null
Permanent Fix
HALW DNS at time of writing was: 10.211.55.1
Use the following command to determine current IP address: $ nmcli dev show | grep 'IP4.DNS'
Ubuntu might change completely how this works in the future, you can review this article here: https://www.techrepublic.com/article/how-to-set-dns-nameservers-in-ubuntu-server-18-04/
If the /etc/resolvconf/resolv.conf.d/head is empty then you have to repeat the command above after every restart except you do this:
$ sudo apt install resolvconf $ echo "nameserver 8.8.8.8" | sudo tee -a /etc/resolvconf/resolv.conf.d/head > /dev/null $ echo "nameserver 10.211.55.1" | sudo tee -a /etc/resolvconf/resolv.conf.d/head > /dev/null $ echo "nameserver 8.8.4.4" | sudo tee -a /etc/resolvconf/resolv.conf.d/head > /dev/null
Then you have to restart the resolvconf and the networking
$ sudo systemctl enable resolvconf $ sudo systemctl start resolvconf $ sudo /etc/init.d/networking restart
Refer: https://askubuntu.com/questions/81293/what-is-the-command-to-update-time-and-date-from-internet
$ sudo date -s "$(wget -qSO- --max-redirect=0 google.com 2>&1 | grep Date: | cut -d' ' -f5-8)Z"
Copy *.desktop property file to
/home/.local/share/applications
Modify Applications Menus with MenuLibre
$ sudo apt-get -y install menulibre
Install Stacer on Ubuntu 20.o4
Refer: https://linuxconfig.org/how-to-install-stacer-on-ubuntu-20-04-focal-fossa-linux-desktop
$ sudo apt install stacer
$ stacer
Install gdebi which is a lightweight *.deb Installer
We will be using the gdebi tool to install Stacer DEB file package. To install gdebi on your Ubuntu 18.04 system, open up terminal and enter:
You should be able to install this via the software store, and then you can just right-click and choose other applicatino to install a *.deb through the file manager.
Command Line Version
$ sudo apt install gdebi-core
Download Stacer
Navigate to Stacer download page and download the latest Stacer DEB package to your home directory. For example in this guide we will be installing Stacer 1.0.9. Let's start by downloading stacer via the wget command:
$ cd /tmp
$ wget https://jaist.dl.sourceforge.net/project/stacer/v1.0.9/stacer_1.0.9_amd64.deb
The above command downloaded Stacer Debian package into our user home directory.
Install Stacer
What remains is to use the gdebi command to install Stacer:
$ sudo gdebi ~/stacer.deb
Refer: https://snapcraft.io/store
Overview: https://itsfoss.com/snap-store/
This contains the command line version to update:
Refer: http://www.linuxandubuntu.com/home/how-to-change-boot-order-set-default-boot-os-in-ubuntu-14-10-15-04-linux-mint-or-other-derivatives
How to set Windows 10 as default in Ubuntu (grub) boot loader with GUI
Refer: https://www.itsupportguides.com/knowledge-base/ubuntu/set-windows-10-default-ubuntu-grub-boot-loader/
The following steps show how to set Windows 10 as the default operating system when using the Ubuntu (grub) boot loader.
This is for when you are dual-booting Windows 10 and Ubuntu.
We’ll be using the Grub Customizer software by Daniel Richter.
Step 1: Install the Grub Customizer software
If you haven’t already, boot into Ubuntu
Click on the Ubuntu icon in the launcher to open the search dialog
Type “terminal” and click on the icon when it appears
In the terminal – run the following command
sudo add-apt-repository ppa:danielrichter2007/grub-customizer
Enter your password
Press ‘Enter’ on your keyboard when prompted
Now run the following command
sudo apt-get update
When it’s done, run the following command and enter ‘Y’ when prompted
sudo apt-get install grub-customizer
Step 2: Change the boot order
Click on the Ubuntu icon in the launcher to open the search dialog
Type “Grub” and click on the Grub Customizer icon when it appears
Enter your password in the prompt and click ‘Authenticate’
In the list you will see the item for your Windows 10 installation. Click on it.
Now use the arrows in the toolbar to move it to the top of the list.
Click ‘Save’
Now restart your computer and confirm that Windows 10 is now the default boot option.
Out of the box installation was not working, use Synaptic to install instead.
For Rhythmbox on Ubuntu 19.04
$ sudo apt-get install synaptic -y
$ sudo apt-get install ubuntu-restricted-extras
Use this to install Brasero with all the goodies
This may have helped but was trying multiple actions
Refer: https://askubuntu.com/questions/819671/how-should-i-install-libdvdcss-so-2-library-to-ubuntu-16-04
$ sudo apt install libdvd-pkg
$ sudo dpkg-reconfigure libdvd-pkg
After doing some cleanup, it looks like shutdown was starting to take a long time. Did the following figuration change.
Refer: https://blog.imposeren.org/2016/11/how-to-fix-ubuntu-1604-hangs-or-very.html
$ sudo edit /etc/systemd/system.conf
Uncomment the following line and change it from 10 seconds to 5 seconds
[Manager]
DefaultTimeoutStopSec=5s