Found 128 Articles for Ubuntu

How To Set-Up Apache to use Password Authentication on Ubuntu 16.04

karthikeya Boyini
Updated on 20-Jan-2020 11:04:18

428 Views

In this article, we will learn about how to setup and configure the Apache Web server to restrict from visitors without authentication where we can hide some important and critical information to the un-authenticated users.PrerequisitesWe needed an Ubuntu machine with a non-root user with Sudo privileges.An Apache2 web server installed on the machine.Installing the Apache UtilitiesWe needed to install an Apache2 utility package called ‘htpasswd’ where this utility is a part of ‘apache2-utils’ packages.This will help us to create and manage the username and password which is needed to access the restricted part of the website.Below is the command to ... Read More

How to Set Up and Configure Jekyll Development Site on Ubuntu 16.04

karthikeya Boyini
Updated on 20-Jan-2020 10:59:24

59 Views

In this article, we will learn how to setup and configure Jekyll Development Site. Jekyll provides the benefits of the Content Management System (CMS) with performance and security which appears in the database-driven sites. It is also called as blog-aware which has features of handling the date-organized contents. It is especially suitable for the people who work off-line, which also provides the lightweight editor with content management which has the version control for tracking the changes made on their websites.PrerequisitesA machine with Ubuntu 16.04 installed.A user with Sudo permissions on the machine.Installing the Jekyll Development Site on Ubuntu 16.04Before we ... Read More

How to Install and Use Docker on Ubuntu 16.04

Sharon Christine
Updated on 20-Jan-2020 11:36:54

220 Views

Docker is an open-source project that automates the deployment of application inside the software container. The container allows the developer to package up all project resources such as libraries, dependencies, assets etc. Docker is written in Go Programming language and is developed by Dotcloud. It is basically a container engine which uses the Linux Kernel features like namespaces and control groups to create containers on top of an operating system and automates the application deployment on the container.Installing DockerBefore install Docker, it should required updated packages. To update the packages, use the following command –$ sudo apt-get updateUse the following ... Read More

How to Remove Empty Lines from a File on ubuntu

karthikeya Boyini
Updated on 20-Jan-2020 10:45:11

4K+ Views

Do you know how to remove empty lines from the file in Ubuntu? It may also be performed manually if the file has few strains but if the file has hundreds of thousands of line that is tough to be accomplished manually. This article explains you about – how to remove empty lines from a file on Ubuntu.Our sample file should be like this –Use the following command to remove the Empty lines from a file as shown below –$ ex -s +'v/\S/d' -cwq abc.txtIn the above command abc.txt indicates the file name. The sample output should be like this ... Read More

How to Install and Use Command Line Cheat Sheets on Ubuntu

Sharon Christine
Updated on 20-Jan-2020 10:42:56

265 Views

Cheat is a command line primarily based on Python software that lets in system administrators to view and save helpful cheat sheets. It retrieves simple-text examples of a delegated command which will remind the user of alternatives, arguments, or commonplace makes use of. Cheat is used for “commands which you use frequently, however now not frequently sufficient to consider”Installing CheatBefore installing Cheat, we need to make sure that everything’s up to date on the system as shown in the below command –$ sudo apt-get update && sudo apt-get upgradeInstalling Cheat is best done with the Python package manager Pip. To ... Read More

How to Quickly Install WordPress On Ubuntu/Linux Mint

karthikeya Boyini
Updated on 20-Jan-2020 10:29:08

790 Views

WordPress is a free and open source website and blogging tool and it is the most popular CMS (content management system) on the internet. It allows you to easily set up flexible blogs and websites on top of a MySQL backend with PHP processing. This article describes “How to install WordPress on Linux with bash script”. Bash script automatically downloads and installs the latest version of WordPress in any place of your choice.Installing LAMPTo install and run WordPress on your system, pre-installation on your web server is required.Use the following command to install LAMP web server.$ sudo apt-get install lamp-server^The ... Read More

How To Install and Setup Sphinx on Ubuntu 16.04

Sharon Christine
Updated on 20-Jan-2020 10:27:28

319 Views

In this article, we will learn about how to install and setup Sphinx on Ubunt 16.04, Sphinx is an open source search engine which allows for full test searches, and is best in performing searches with a huge data very effectively where the data can be from any sources, (Ex − SQL Databases, plain text files, etc., )Features of the SphinxAdvanced indexes and good tool for querying.High Searching performance and indexes.Advances result for post-processing.Easily scalable with advanced searches.Can be integrated with SQL and XML sources.Can be scalable for handing the huge data with 1000’s of queries.PrerequisitesBefore we begin we needed ... Read More

How to Install and Get Started with Symfony 2 on Ubuntu

Sharon Christine
Updated on 20-Jan-2020 10:21:00

114 Views

Symfony is a full-stack, open-source PHP framework. It’s well known for its independent components which can be easily integrated into any other PHP project. The Symfony framework is suitable for building personal home page applications of any length, consisting of console programs supposed to run only at the command line. This article explains about – How to install and get started with symfony 2 on Ubuntu.Before we get started out, we’ll want to put in PHP for the command line environment. To install the php7.0-cli package, use the following command-$ sudo apt-get install php7.0-cliYou should now have PHP installed on ... Read More

How To Install and Configure “R” on Ubuntu 16.04

Sharon Christine
Updated on 20-Jan-2020 10:15:17

322 Views

In this article, we will learn how to install and configure R on Ubuntu 16.01. “R” is an open-source programming language which can be specially used for statistical computing and performing analytical data. Where “R” has the community well know for the packages generated by the users in a specific area of study. We will install the “R” package using the CRAN (Comprehensive “R” Archive Network).PrerequisitesWe need a Linux machine install with Ubuntu 16.04 server with a minimum of 1 GB of RAM.A non-root user with Sudo permissions on the machine.Adding the CRAN repository to the Machine and Install R ... Read More

How to Install and Configure Nginx on Ubuntu 16.04

Sharon Christine
Updated on 20-Jan-2020 10:07:45

617 Views

In this article, we will learn about how to install and configure the Nginx Web server. Nginx is the most popular web server where some of the most popular and high traffic sites are hosted where it is more friendly and secured than Apache and it is also used as a web server.PrerequisitesUbuntu 16.04 installed on the machine with a non-root user with sudo permissions on the machine.Installing the Nginx in MachineWe can install the Nginx, which is available on Ubuntu’s default repository so can directly install the Nginx using the apt command.Before we install the Nginx we needed to ... Read More

Advertisements