
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 143 Articles for Ubuntu

6K+ Views
NFS or Network File System is a widely used protocol that allows remote clients to access shared files over a network. Installing and configuring an NFS server on Ubuntu 18.04 is a straightforward process, but it requires some basic knowledge of Ubuntu commands and file systems. In this article, we will walk you through steps to install and configure an NFS server on Ubuntu 18.04. Step 1: Update System Before installing any software, it's always a good practice to update system. To do this, open terminal and run following command − sudo apt update && sudo apt upgrade This ... Read More

9K+ Views
Anaconda is an open-source distribution of Python and R programming languages used for data science, machine learning, and artificial intelligence projects. It comes with various pre-installed libraries and packages that are useful for scientific computing, data analysis, and data visualization. In this article, we will walk through steps to install Anaconda on Ubuntu 18.04 and 20.04. Prerequisites Before installing Anaconda on Ubuntu 18.04 or 20.04, you should have access to a terminal window or command-line interface with superuser privileges. Step 1: Download Anaconda The first step is to download Anaconda installation file from official Anaconda website. To download Anaconda, open ... Read More

1K+ Views
FTP (File Transfer Protocol) is a standard network protocol used to transfer files from one host to another over a TCP-based network, such as Internet. An FTP server allows users to upload and download files over network, and it is an essential tool for file sharing and remote file access. In this article, we will guide you through process of installing an FTP server on Ubuntu with vsftpd, one of most popular FTP servers available. Step 1: Install VSFTPD The first step in installing an FTP server on Ubuntu is to install vsftpd package. You can do this by running ... Read More

2K+ Views
Akaunting is a free, open-source accounting software that can be used to manage your finances, create invoices, track expenses, and generate financial reports. It is a great alternative to expensive commercial accounting software and is suitable for small to medium-sized businesses. In this article, we will guide you through steps to install Akaunting on Ubuntu 20.04. Step 1: Update your Ubuntu System Before installing any software, it is recommended to update your Ubuntu system to ensure that you have latest security updates and bug fixes. To update your system, open terminal and run following command − sudo apt update && ... Read More

2K+ Views
Ajenti is an open-source web-based control panel that allows users to manage their servers and applications through a graphical user interface. It is written in Python and is compatible with multiple operating systems, including Debian and Ubuntu. In this tutorial, we will guide you through steps required to install Ajenti Control Panel in Debian and Ubuntu. Step 1: Update system Before proceeding with installation process, we need to update system to latest packages. To do this, open terminal and enter following command − sudo apt update && sudo apt upgrade Step 2: Install necessary packages Next, we need to ... Read More

624 Views
If you are a fan of Ubuntu, you know how frustrating it can be to reinstall your favorite applications and PPAs after a fresh installation. Thankfully, there is a solution to this problem. Meet Aptik - a backup and restore tool that makes reinstalling your favorite apps and PPAs a breeze. In this article, we'll explore Aptik and how you can use it to backup and restore your favorite applications and PPAs. What is Aptik? Aptik is a free, open-source tool that allows you to backup and restore your installed applications and PPAs. tool is designed to make it easy ... Read More

7K+ Views
If you are looking to set up a local network or manage an existing one, then you will need to know how to install a DHCP server. DHCP stands for Dynamic Host Configuration Protocol, and it is used to assign IP addresses and other network configuration parameters to devices on your network automatically. In this article, we will show you how to install a DHCP server on Ubuntu and Debian. What is a DHCP Server? A DHCP server is a network service that automatically assigns IP addresses and other network configuration parameters to devices on a network. Instead of manually ... Read More

22K+ Views
Ubuntu is a popular Linux distribution that is widely used for its reliability and security. One of the main advantages of using Ubuntu is that it is available in two versions: desktop and server. The desktop version comes with a graphical user interface (GUI), which makes it easy to use for beginners. On the other hand, the server version does not have a GUI, as it is designed for advanced users who prefer to work from the command line. However, in some cases, you may want to install a GUI on an Ubuntu server to make it easier to manage. ... Read More

1K+ Views
The MEAN stack is a popular web development framework consisting of MongoDB, Express.js, Angular.js, and Node.js. It is an open-source platform that allows developers to create robust web applications quickly and efficiently. In this article, we will guide you through the installation and setup process of the MEAN stack on Ubuntu. Step 1: Install Node.js and NPM Node.js is the runtime environment that allows developers to run JavaScript code outside of the browser. It is the backbone of the MEAN stack. To install Node.js on Ubuntu, follow these steps − Open the terminal on Ubuntu by pressing Ctrl+Alt+T. Type the ... Read More

2K+ Views
Ubuntu is one of the most popular Linux-based operating systems used by millions of people around the world. It is known for its ease of use, reliability, and security features. One of the most important features of Ubuntu is its package management system, which allows users to easily install, update, and remove software packages on their system. One of the most popular ways to install software on Ubuntu is through Personal Package Archives (PPAs). PPAs are repositories that contain software packages that are not available in the official Ubuntu repositories. They are typically maintained by individuals or teams of developers ... Read More