Tutorial

  • How To Create a Bootable Linux USB Flash Drive From Terminal?

    How To Create a Bootable Linux USB Flash Drive From Terminal?

    Many Linux users might be using some tool to create bootable Linux USB sticks, but no one uses the traditional method which works flawlessly on command line interface, and I’m still using this method instead…

  • Dog Years – JavaScript Project

    Dog Years – JavaScript Project

    Here is another javascript project after Kelvin weather, the calculation of Dog years in javascript. Dogs mature at a faster rate than human beings. We often say a dog’s age can be calculated in “dog…

  • Kelvin Weather — JavaScript Project

    Kelvin Weather — JavaScript Project

    In Codecademy, when learning the basics of JavaScript we are given a project of building Kelvin weather, where we have to convert Kelvin to Celsius, then to Fahrenheit. In this article, I’ve explained the javascript…

  • How To Disable or Enable OS Prober From the Grub?

    How To Disable or Enable OS Prober From the Grub?

    Linux has an OS Prober feature that allows us to choose other operating systems installed in the system using Grub. By default, on the latest version of Linux, it’s disabled and will remain disable, but…

  • How to install Nginx on Fedora?

    How to install Nginx on Fedora?

    Nginx is an open-source web server (free HTTP Server software), in addition to its HTTP Server capabilities, it can also function as a Proxy Server for email (IMAP, POP3, and SMTP) and a Reverse Proxy…

  • How to search files by extension in Linux?

    How to search files by extension in Linux?

    Want to search files using a file extensions like: *.css, *.js, *.php, *.txt, or *.zip etc. in Linux. Use the following command. sudo find /home/user/Documents -type f -name “*.css” Let’s understand the above command. sudo…

  • How to change default oEmbed width-height size in WordPress?

    oEmbed is a feature that allows a simple URL to be shown as a beautiful embedded item. This can help in many ways to bloggers and website owners as users click more on such embeds…

  • Unable to install “Package”: snap “Package” has “install-snap” change in progress

    Ubuntu introduced snap as default package source to install latest applications and software. But it is new and slow as per my experience, whenever I try to install some big application or one that has…

  • Unable to acquire the dpkg frontend lock

    If you are trying your hands on Linux based OS and getting following error, means you are unable to allow current user a root privilege. A root or root-equivalent user can only get rid of…

  • Setting up Minecraft server on Linux based VPS

    Setting up Minecraft server on Linux based VPS

    Minecraft is a sandbox game where players can build their own world. Since its establishment in 2011, the game now has 126 million active players. To further improve the gaming experience, Minecraft enthusiasts manage their…

  • How to fix scheduled events are running late in WordPress?

    In WordPress, scheduled events are what periodically looks for updates to plugins, themes and WordPress itself. It is also what makes sure scheduled posts are published on time. It may also be used by various…

  • Repository changes its ‘Suite’ value from ‘testing’ to ‘stable’

    While apt update you may get repository no longer has a release file error, it happens when a repository owner changes its suite value or version. Do not panic if this is the first time…