How to Download All Ubuntu Version’s Wallpapers via Terminal

How to Download All Ubuntu Version’s Wallpapers via Terminal

At the time of writing this article, I was using Ubuntu 20.04 Focal Fossa which had nearly 20 new wallpapers. But if you have been using Ubuntu for quite some time you must be missing the old Ubuntu wallpapers which you were used to quite used to gaze.

Though it’s easier to just find the old Ubuntu Wallpapers on the internet, Download the image, and set them as your wallpaper, where is FUN in that. As a regular Ubuntu user, it is enthralling to use the command line to do our work. Let’s give some space for nostalgia to kick in.

So to download the Wallpaper of all Ubuntu versions execute the below command via terminal (shortcut : Ctrl+Alt+T).

View Wallpaper Packages of all the Ubuntu Versions in sorted manner –

apt-cache search ubuntu wallpapers | sort -n

After this you can either choose a particular version to download or download almost all the wallpapers with the below command.

sudo apt-get install ubuntu-wallpapers-* edgy-wallpapers feisty-wallpapers gutsy-wallpapers

To download only particular wallpaper package use command.

sudo apt-get install [Wallpaper Package Name]

These wallapers will be download to the default Ubuntu wallaper directory : /usr/share/backgrounds

Once installed just open the default Ubuntu all to change the wallpaper, and all the wallpapers ever shipped with Ubuntu will be shown there. Enjoy!!!!

Test Speed of your Internet from Terminal/CLI in Linux

speedtest-terminal

There are various web applications to test the speed of your Internet Connection. The most famous being Speedtest by Ookla – Link Here

But suppose you want to test your network bandwidth from a Linux machine without a desktop environment installed or for just looking cool among your friends.

speedtest-terminal

Follow below steps to install Speedtest app from Terminal

Execute below commands in you terminal window. These commands will add ookla (speedtest) repo mirror to your apt-get package manager list.

    • sudo apt-get install gnupg1 apt-transport-https dirmngr
    • export INSTALL_KEY=379CE192D401AB61
    • sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys $INSTALL_KEY
    • echo "deb https://ookla.bintray.com/debian generic main" | sudo tee /etc/apt/sources.list.d/speedtest.list
    • sudo apt-get update
    • sudo apt-get install speedtest

After the installation just run “speedtest” command, it will automatically choose the best server for testing and display the results.