×


Blog


Methods to check an available memory in Ubuntu 20.04 LTS ?

This article will guide you on how different methods of checking the available #memory in #Ubuntu 20.04. By following any of these methods, you can check the available memory along with lots of other useful memory statistics of your Ubuntu 20.04 system.

Logical Volume Manager (#LVM) is a software-based RAID-like system that lets you create "pools" of storage and add hard drive space to those pools as needed. There are lots of reasons to use it, especially in a data center or any place where storage requirements change over time.

#Linux by default tries to use RAM in order to speed up disk operations by making use of available memory for creating buffers (file system metadata) and #cache (pages with actual contents of files or block devices), helping the system to run faster because disk information is already in memory which saves I/O #operations 

To check memory #usage on Linux:

1. free command. The free command is the most simple and easy to use command to check memory usage on linux.

2. /proc/meminfo. The next way to check memory usage is to read the /proc/meminfo file.

3. vmstat. The vmstat command with the s option, lays out the memory usage statistics much like the proc command.

4. top command.

5. htop.


Step by step process to install MongoDB on Linux Mint 20 ?

This article will guide you on methods to install MongoDB on #Linux #Mint 20 system. You can check #MongoDB status, and can also access its shell to pass #commands to this database.

MongoDB installs as a #systemd service, which means that you can manage it using standard systemd commands alongside all other sytem services in Ubuntu. To verify the status of the service, type: sudo systemctl status mongodb.

Companies and development teams of all sizes use MongoDB because: The document data model is a powerful way to store and retrieve data that allows developers to move fast. MongoDB's horizontal, scale-out architecture can support huge volumes of both data and traffic.

To start MongoDB in Debian:

1. Start MongoDB. Issue the following command to start mongod: sudo service mongod start.

2. Stop MongoDB. As needed, you can stop the mongod process by issuing the following command: sudo service mongod stop.

3. Restart MongoDB. Issue the following command to restart mongod: sudo service mongod restart.


Step by step process to install MariaDB on Linux Mint 20 ?

This article will guide you on steps to install #MariaDB on the #Linux operating system. 

MariaDB offers more and better storage engines. NoSQL support, provided by Cassandra, allows you to run SQL and NoSQL in a single database system. MariaDB also supports TokuDB, which can handle big data for large organizations and corporate users.

As a columnar database, MariaDB ColumnStore stores table data in columns rather than rows. Data partitioning by columns is also called Vertical Partitioning.

MariaDB is a drop in place replacement for #MySQL, but you can also install it alongside MySQL. 

To install MariaDB on #Ubuntu 18.04, follow these steps:

1. Update packages index. sudo apt update.

2. Once the packages list is updated, install MariaDB by issuing the following command: sudo apt install mariadb-server.

3. The MariaDB service will start automatically.


Steps to Install Webmin on Ubuntu 20.04 LTS ?

This article will guide you on the steps to install #Webmin in your Linux system. Webmin comes with a very simple webserver called miniserv.pl that is capable of doing all that is necessary for Webmin to run. However, it is not as fast or memory efficient as a well-developed server such as #Apache.

To modify the default port, 10000 to 10101, open the /etc/webmin/miniserv. conf file and modify line 1 and 16. Now you can access the Webmin through url with new custom port.

To Install Webmin on #Ubuntu:

1. Log in to your Ubuntu #server.

2. Issue the command sudo nano /etc/apt/sources. list.

3. Hit [CTRL][x] and save the file.

4. Add the downloaded key with the command sudo apt-key add jcameron-key. asc.

5. Update apt with the command sudo apt-get update.

6. Install Webmin with the command sudo apt-get install webmin.


How to install and configure DHCP server on Linux ?

This article will guide you on steps to install and configure the #DHCP #server in the Linux system and assign dynamic and fixed #IP addresses to the clients. It takes just a few simple steps to configure the DHCP server in a #Linux machine. Once you have configured it, it will automatically assign the assigning IP addresses and related information to each machine on the network.

The main DHCP #configuration file is /etc/dhcp/dhcpd. conf. The file is used to store the network configuration information required by DHCP #clients.

To enable DHCP or change other TCP/IP settings:

1. Select Start , then select Settings > #Network & Internet.

2. Do one of the following: For a Wi-Fi network, select Wi-Fi > Manage known networks.

3. Under IP assignment, select Edit.

4. Under Edit IP settings, select Automatic (DHCP) or Manual.

5. When you're done, select Save.


Steps to install Google Chrome in Ubuntu 20.04 LTS ?

This article will guide you on the different methods to #install #Google #Chrome on #Ubuntu 20.04 system using two different ways using the command line and graphical methods. We have executed different commands on the terminal for the installation.

To Install Google Chrome on Ubuntu Graphically:

1. Click on Download Chrome.

2. Download the DEB file.

3. Save the DEB file on your #computer.

4. Double click on the downloaded DEB file.

5. Click Install button.

6. Right click on the deb file to select and open with Software Install.

7. Google Chrome installation finished.