Install DDrescue Data Recovery Tool On Ubuntu 16.04

DDrescue Data Recovery Tool for Ubuntu 16.04. Install DDrescue (CLI Data Recovery Tool) on Ubuntu 16.04 DDRescue-GUI is a powerful tool (with graphical user interface) to recover data from corrupted hard drives and flash memories (USB drives) on Linux Ubuntu. To be more specific, DDRescue-GUI uses the dump (dd) tool. DDRescue-GUI  application is implemented in … Read more

How to Install Kodi Media Center in Ubuntu

1. Open terminal either from application menu or by pressing Ctrl+Alt+T on keyboard. When it opens, run command to add the PPA: sudo add-apt-repository ppa:team-xbmc/ppa Type user password (no asterisk feedback) when it prompts and hit Enter to continue.    install Kodi 18.5 via commands: sudo apt update sudo apt install kodi

overGrive – Ubuntu Installation Instruction

Requirements Ubuntu 16.04 – 20.04 / Mint 18 – 20 (32bit / 64bit) or later installed. The software should work on most Debian based systems if they support Gtk3. Python 3.5.3 or later installed. Ubuntu 16.04 / Mint 18 users must update to at least Python 3.5.3 or use the AppImage version. Users updating to Ubuntu 20.04 should … Read more

How to install Sophos Antivirus for Linux in Ubuntu

Step 1) Go to the Sophos website and download the latest copy of the Sophos Antivirus for Windows. You may have to accept their terms and provide an email ID during free registration. Download Sophos Antivirus for Linux Step 2) The downloaded package is a compressed archive file. It should look like sav-linux-free-9.tgz. The version … Read more

How to install FileZilla FTP client in Ubuntu

A brief intro of FileZilla FileZilla is the open source FTP client program. It uses FTP/SFTP protocol to transfer the files. It allows us to securely transfer files from the local computer to the remote computer. It is mostly used by the web developers in the uploading, downloading and editing web pages. Webpages are stored … Read more

How to Install Visual Studio Code on Ubuntu

Visual Studio Code is an open-source cross-platform code editor developed by Microsoft. It has a built-in debugging support, embedded Git control, syntax highlighting, code completion, integrated terminal, code refactoring and snippets. The easiest and recommended way to install Visual Studio Code on Ubuntu machines is to enable the VS Code repository and install the VS … Read more

Using Brace Expansion

The ultimate labor-saving trick at the command-line is brace expansion. Put simply, anything within braces ({}) is substituted within the specified filename. The following will create new directories called PhotosGermany, PhotosEngland, and PhotosSpain: mkdir Photos{Germany,England,Spain} In other words, the mkdir command takes the word Photos and combines it with Germany, England, and Spain, creating three … Read more