How To Change Redis Max Memory Tecadmin

For example, to set the maximum memory to 1GB, (or 102410241024 bytes) you can use the following configuration: You can also specify a policy for how Redis should handle the situation when the maximum memory limit is reached. This is done using the maxmemory-policy directive, which can take one of the following values: noeviction: Redis will return an error when the maximum memory limit is reached and a new key needs to be added....

December 23, 2022 · 2 min · 321 words · Edwin Upright

How To Clone A Git Repository Into A Specific Folder Tecadmin

Clone a Git Repository Into a Specific Folder General-purpose of git cloning is to create a local copy of the remote repository. However, cloning without specifying the exact directory will create a new one. Quite often, this won’t be very convenient and it could potentially lead to a lot of clutter residing on your server. That is why specifying the directory to which you want to clone is a useful thing to learn....

December 23, 2022 · 2 min · 223 words · Anthony Thompson

How To Create Sftp User In Ubuntu 22 04 No Shell Access Tecadmin

In this tutorial, we will help you to set up an SFTP server and create an SFTP-only user on Ubuntu 22.04 systems. That account can connect over SFTP but is not able to connect over SSH. Also, this will restrict (chroot) the SFTP user to a specific directory only. Prerequisites A running Ubuntu 22.04 LTS system with shell access Requies a sudo privileged account Step 1 – Installing OpenSSH Server The Ubuntu servers have already installed the OpenSSH server but the desktop systems may not have it....

December 23, 2022 · 3 min · 560 words · Kathy Bouleris

How To Determine The Filesystem Type In Linux Ext3 Ext4 Xfs

There are several ways to determine the filesystem type in Linux. Some of the most common ways are: Method 1: Using the lsblk command The lsblk command is a command-line utility that displays information about the block devices on your system, including the filesystem type. To display the filesystem type of a particular block device, you can use the -o option with the lsblk command to specify the information you want to display....

December 23, 2022 · 2 min · 384 words · Maria Heath

How To Download And Upload Files With Sftp Command Tecadmin

You can also use this or this tutorial to configure sftp only user on your Linux system without SSH access. In this tutorial you will learn: Connect to Remote SFTP Server Use sftp command-line utility to connect remote sftp system. You need the sftp user and hostname or IP address of the remote host. Enter sftpuser account password to connect: Navigate and View Files Navigation in directories on SFTP is as simple as the local system....

December 23, 2022 · 3 min · 546 words · Claudia Dickerson

How To Enable Zfs Compression On Linux Step By Step

File systems are methods responsible for managing data in permanent storage e.g. hard disks and solid-state drives(SSD). File Systems are the decision-makers for deciding where the data will be stored and how it’s going to be managed and accessed. One of the most renowned file systems is the Zettabyte file system (ZFS), now known as OpenZFS after being acquired by Oracle Corp. ZFS is on its way to becoming the goto filesystem for many Linux users....

December 23, 2022 · 5 min · 1044 words · Stephen Estrada

How To Fix Mobile Network Disconnected On Android

Are you tired of receiving the “Mobile Network State Disconnected” error on Android? This is a bug that multiple users have reported receiving. It is commonly found in older Android devices. Due to this error, you may be unable to connect to the internet while you can still make or receive calls. This can be quite infuriating, as being disconnected from the internet means being disconnected from social media. However, do not worry this article is aimed to help you learn how to fix Mobile Network State disconnected on Android....

December 23, 2022 · 5 min · 1050 words · Jim Stammer

How To Fix The Running Slow Problem On Android

Almost every Android user has complained about their phone being slow or that it freezes. This is especially true for phones that are more than 24 months old. These devices get slow with time and do not run at their optimum speed. The speed of your device is determined based on multiple factors which could be slowing it down. This article will tell you how to fix the running slow problem on Android....

December 23, 2022 · 5 min · 963 words · Kelsie Dutcher

How To Generate Spf Records For Your Domain Tecadmin

Create an SPF Record for Your Domain Using an SPF record is the easiest way to indicate whether your mail is legitimate or not. You can also use Sender ID or Domain-based Message Authentication, Reporting, and Conformance (DMARC) records, but they aren’t as common as SPF. You can add your SPF record to your domain’s DNS settings so that it’s accessible to other mail servers. The format of SPF records varies between DNS providers, but the general format is as follows:...

December 23, 2022 · 3 min · 481 words · Sean Washington

How To Get Current Url With Javascript Tecadmin

Here is the list of options available to get URLs and other details using JavaScript. The first example will get the current URL in a web browser. Other examples are also available for your reference. #1 – href This will return the entire URL displayed in the address bar. #2 – host This will return the hostname and port of the URL in the address bar. #3 – hostname This will return only the hostname of the URL in the address bar....

December 23, 2022 · 1 min · 182 words · Pauline Blaser

How To Install Anaconda On Ubuntu 22 04 Tecadmin

The Anaconda provides an easily manageable environment for python applications. It provides a variety of tools for collecting data from various sources using machine learning and AI. With the help of Anaconda, we can deploy applications with a single button click. This tutorial will help you to install and use the Anaconda on Ubuntu 22.04 Linux system with step-by-step instructions. Prerequisites Firstly, open the terminal on your Ubuntu system and update the Apt packages repository....

December 23, 2022 · 2 min · 289 words · Kimberly Powell

How To Install And Configure Apache On Debian 10 Tecadmin

Install Apache on Debian 10 First of all, Login to your Debain 10 system via SSH and update the Apt cache. Then install Apache2 HTTP server packages as below: Manage Apache Service Apache service is managed with systemctl command line. After installation, use the following command to check the status of Apache service. Here is the other commands to stop, start or restart Apache service via command line. Test Apache Setup You can view the installed Apache version details using the following command....

December 23, 2022 · 3 min · 438 words · Tim Stiver

How To Install And Use Cordova On Centos Rhel 7 6 5 Tecadmin

You may like: Setup Ionic Framework on CentOS for open-source SDK for hybrid mobile app development Step 1 – Prerequsities In order to install Cordova, you must have installed Node.js and NPM on your system. Skip this step if you already have installed but if Not, run the following commands to install it first. You can visit our tutorial to install latest Node.js on CentOS and Red Hat systems. Step 2 – Install Cordova with NPM Now use the following command to install Cordova on your system using npm command....

December 23, 2022 · 2 min · 246 words · Tammie Lawrence

How To Install And Use Php Composer On Debian 11 Tecadmin

Composer is a similar tool to npm for Node.js, pip for Python, and bundler for ROR. Composer 2 is the latest available version for your system with enhanced performance. We will use that version to install on our system. This tutorial helps you to install and use PHP composer on Debian 11 Bullseye Linux system. Prerequisites Shell access to a running Debian system with sudo privilege. Install PHP 5.3 or higher version on Debain....

December 23, 2022 · 3 min · 488 words · Julie Navarra

How To Install Apache Maven On Windows Tecadmin

Requirements Apache Maven required Java Development Kit (JDK) to be installed on the system. Apache Maven 3.3 and above version requires JDK 1.7 or above. So make sure your server fulfills requirements before installing Apache maven. Setting Up JAVA_HOME environment variable The first thing that we need to do is set up JAVA_HOME. This is a system environment variable that we need to set up in order to install Maven correctly....

December 23, 2022 · 3 min · 438 words · Neil Houser

How To Install Gulp Js On Centos Rhel 7 6 Tecadmin

Step 1 – Installing Node.js First of all, you need to install node.js on your CentOS system. Use following set of commands to add node.js yum repository on your CentOS system and install it. Then install the Nodejs package on your system. Step 2 – Install Gulp.js on CentOS After installation of Node.js and Npm on your system, use the following commands to install Gulp CLI globally on your system. You have successfully installed the Gulp CLI tool on your system....

December 23, 2022 · 1 min · 128 words · Brian Caldwell

How To Install Zend Framework On Ubuntu 16 04 Tecadmin

Prerequsities Shell access on Ubuntu 16.04 Sudo proviledged account access Step 1 – Install PHP and Apache The Zend Framework required PHP 5.6 or higher version to run. So make sure you have installed proper PHP version. To install PHP and Apache2 on Ubuntu 16.04 system follows the below commands. Step 2 – Install PHP Composer Now, As you have installed PHP, now install PHP Composer on your system using the following set of commands....

December 23, 2022 · 2 min · 332 words · Ralph Lang

How To Install Zoom On Ubuntu 16 04 Desktop Tecadmin

This tutorial will help you to install Zoom client on your Ubuntu 16.04 Desktop system. Prerequisites You must have Ubuntu Desktop access to run Zoom client on your system. This tutorial uses Snap packages to install Zoom application on Ubuntu 16.04 system. So, you must have install Snapd service on your system. Run the following commands to install Snapd service on your system: Install Zoom on Ubuntu 16.04 Zoom client is available as snap packages....

December 23, 2022 · 1 min · 208 words · Christopher Peredo

How To Lock Your Facebook Profile From Non Friends

While you will still see the user’s profile name and photo, you won’t be able to scroll down and view the user’s public timeline. Instead, it will only display a notice that displays a message like this: “This user locked his profile.” The information that you can view will be very limited. You can see the difference between the two profiles below: What Happens When a User’s Facebook Profile Is Locked?...

December 23, 2022 · 3 min · 602 words · Cheryl Cass

How To Promote Your Discord Server The Ultimate Guide

Getting members to your server doesn’t have to be hard, as there are several techniques you can use to boost your member count and create an engaging server. By promoting your Discord server, your server will gain many members, and will become much more active as a result. If you’re looking to promote your Discord server, this guide will show you how step-by-step, and showcasing the best techniques. We’re going to cover some of the best tips too, so let’s get started!...

December 23, 2022 · 5 min · 1049 words · Sally Guthrie