Category: Ubuntu

  • How to Install and Run Ubuntu 20.04 LTS on Windows 11 using WSL

    How to Install and Run Ubuntu 20.04 LTS on Windows 11 using WSL
    , ,

    To install Ubuntu on Windows 11, follow the steps in the video. Links:Latest version of WSL component – https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi Chapters:0:00 Intro0:23 Step 1 – Turn on WSL – Windows Subsystem for Linux1:07 Step 2 – Install Ubuntu from Microsoft Store1:59 Step 3 – Update the WSL2 Kernel Components2:39 Step 4 – Launch Ubuntu2:59 Step 5… Read more

  • How to Speed Test Your Internet From the Linux Command Line

    How to Speed Test Your Internet From the Linux Command Line
    , , ,

    Testing your internet speed and ping from the Linux terminal is as effortless as can be. Commands:On Ubuntu/Debian derivatives, run:sudo apt update && sudo apt upgrade On Arch-based systems, run:sudo pacman -Syu On Fedora, CentOS, and RHEL, issue the following command:sudo dnf update On Ubuntu/Debian derivatives, type in:sudo apt install speedtest-cli On Arch-based systems, run:sudo… Read more

  • How to Install Systemback on Debian, Ubuntu, Linux Mint

    How to Install Systemback on Debian, Ubuntu, Linux Mint
    , ,

    This tutorial will be showing you how to install Systemback on Debian, Ubuntu and Linux Mint. Commands:wget –quiet -O – https://repo.linuxbabe.com/linuxbabe-pubkey.asc | sudo tee /etc/apt/trusted.gpg.d/linuxbabe-pubkey.ascecho “deb [signed-by=/etc/apt/trusted.gpg.d/linuxbabe-pubkey.asc arch=$( dpkg –print-architecture )] https://repo.linuxbabe.com $(lsb_release -cs) main” | sudo tee /etc/apt/sources.list.d/linuxbabe.listsudo apt updatesudo apt install systembackxhost +local:sudo su –export DISPLAY=:0.0systembackecho “deb [signed-by=/etc/apt/trusted.gpg.d/linuxbabe-pubkey.asc arch=$( dpkg –print-architecture )] https://repo.linuxbabe.com… Read more

  • How to Install Microsoft OneDrive on Linux

    How to Install Microsoft OneDrive on Linux
    ,

    Just because OneDrive is Microsoft doesn’t mean you can’t access it from Linux. Commands:sudo apt-get updatesudo apt-get upgrade -ysudo apt-get dist-upgrade -ysudo apt-get autoremove -ysudo apt-get autoclean -yecho “deb [arch=$(dpkg –print-architecture) signed-by=/usr/share/keyrings/obs-onedrive.gpg] https://download.opensuse.org/repositories/home:/npreining:/debian-ubuntu-onedrive/xUbuntu_22.04/ ./” | sudo tee /etc/apt/sources.list.d/onedrive.listsudo apt install –no-install-recommends –no-install-suggests onedriveonedrive destination-directory [FILEPATH] –synchronize Chapters:0:00 Intro0:23 Install the OneDrive Client for Linux on… Read more

  • How to Set a Static IP Address in Ubuntu

    How to Set a Static IP Address in Ubuntu

    Your home network relies on IP addresses to route data between devices, and sometimes on reconnecting to the network a device’s address can change. Here’s how to give an Ubuntu Linux computer a permanent IP address that survives reboots. Commands:nmcli connection showip addrping 192.168.86.128ip rsudo nmcli con add con-name “static-ip” ifname enp0s3 type ethernet ip4… Read more

  • How to Overlay two files with UnionFs in a Linux System

    How to Overlay two files with UnionFs in a Linux System

    UnionFS creates a unified seamless filesystem by transparently overlaying files and directories from separate filesystems. In this short video, we shall be looking at how to get it installed in Ubuntu 20.04. Commands:sudo apt-get updatesudo apt install -y unionfs-fusemkdir dir1touch dir1/f1touch dir1/f2mkdir dir2touch dir2/f3touch dir2/f4mkdir unionunionfs dir1/:dir2/ union/ls union/ Chapters:0:00 Intro0:23 Step1: Update the package… Read more

  • How to Configure Time Zone and System Clock in Linux

    How to Configure Time Zone and System Clock in Linux
    ,

    In this video, we will look at how to change your time zone settings in Linux and how to use NTP to sync the Linux system clock to your time zone. Commands:datesudo dpkg-reconfigure tzdatasudo ln -sf /usr/share/zoneinfo/sudo ln -sf /usr/share/zoneinfo/your-geographic-area/your-city /etc/localtimetimedatectltimedatectl set-local-rtc 0timedatectl set-local-rtc 1sudo timedatectl set-ntp truetimedatectl statussudo systemctl status systemd-timesyncdsudo systemctl enable –now… Read more

  • Protect Your Eyes From Computer Screen Harm with IRIS

    Protect Your Eyes From Computer Screen Harm with IRIS
    ,

    Iris is an eye protection software available for Linux, macOS, Windows, ChromeOS, Android, iOS, and Windows Phone. This video will be showing you how to install IRIS on Linux. Link:Iris website – https://iristech.co/ Chapters:0:00 Intro0:23 How to Install IRIS on Linux3:03 Create an app launcher4:44 Enable automatic start5:17 End screen Commands:cd ~/Downloadssudo mkdir /opt/iris/sudo apt… Read more

  • 2 Ways to Upgrade Ubuntu 20.04 To Ubuntu 22.04 (Graphical & Terminal)

    2 Ways to Upgrade Ubuntu 20.04 To Ubuntu 22.04 (Graphical & Terminal)

    Ubuntu 22.04 Jammy Jellyfish is released on April 21, 2022. This video is going to show you 2 ways to upgrade from Ubuntu 20.04 to Ubuntu 22.04: using the graphical update manager and using the command line. Commands:update-manager -dlsb_release -asudo apt update && sudo apt dist-upgradesudo apt install update-manager-coresudo nano /etc/update-manager/release-upgradesdo-release-upgrade -d Link:How to Upgrade… Read more

  • How to Install and Run Flatpak Applications

    How to Install and Run Flatpak Applications
    ,

    To take advantage of flatpaks, you need to have flatpak enabled on your system. Without much further ado, let’s dive into this and see how flatpak can be installed in Debian/Ubuntu. Commands:sudo apt updatesudo apt install flatpakflatpak remote-add –if-not-exists flathubhttps://flathub.org/repo/flathub.flatpakrepoflatpak remotesflatpak search app-nameflatpak install remotes Application-IDflatpak listflatpak run Application-IDflatpak updateflatpak uninstall Application-ID What you will… Read more