Author: Rahul

I, Rahul Kumar am the founder and chief editor of TecAdmin.net. I am a Red Hat Certified Engineer (RHCE) and working as an IT professional since 2009..

Angular is an javascript frameworks, libraries, assets, and utilities. This tutorial will help you to create an Angular application using the Angular CLI tool on any platform. The angular project provides and Command Line Interface called Angular CLI for the automation. You can do automating operations in Angular projects instead of doing them manually and save the time and effort. Using the Angular CLI, You can do the followings: Creating new project. Setup application Environment. Manage application configurations. Building components, services and routing system. Starting application, testing and deploying the project. Installing 3rd party libraries like Bootstrap, Sass etc. Let’s…

Read More

Angular is an frameworks, libraries, assets, and utilities. It keeps track of all the components and checks regularly for their updates. This tutorial will help you to install the Angular CLI tool on Ubuntu 19.10, 18.04 & 16.04 Linux operating systems. Reference: Serve Node.js Application behind the Apache Server Step 1 – Install Node.js First of all, you need to install node.js on your system. If you don’t have node.js installed use the following set of commands to add node.js PPA in your Ubuntu system and install it. sudo apt install python-software-properties curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -…

Read More

Memcached is a distributed memory object caching system which stored data in memory on key-value basis. It is very useful for optimizing dynamic websites and enabled speed by caching objects in memory. Read more about memcache. This article will help you to install Memcached on Fedora Linux systems. Install Memcached on Fedora Memcached is available under default Fedora repositories. You can install it by running the following command on your Fedora Linux system. sudo dnf install memcached -y Now start the Memcached service using the following commands. sudo systemctl enable memcached.service sudo systemctl start memcached.service Memcached Configuration Edit the Memcached…

Read More

Wine (originally an acronym for “Wine Is Not an Emulator”) is a compatibility layer capable of running Windows applications on several POSIX-compliant operating systems, such as Linux, macOS, & BSD. The Winehq team has announced the latest stable release 7.0 on January 18, 2022. Its source code is available for download from its official site. You may also use the package manager to install wine. Wine is an Open Source implementation of the Windows API and will always be free software. This article will help you to install Wine 7.0 Stable Release on Debian 10 Buster Linux system using the…

Read More

MX Linux is a cooperative venture between the antiX and former MEPIS communities. The MX Linux, version 18.3 is the latest version available to download. Ubuntu MX Linux 18.03 Download Links Please find below DVD ISO images download links for Ubuntu Desktop and Ubuntu server edition. You can also use torrent to download images. MX-18.3_x64.iso [torrent] MX-18.3_386.iso [torrent]

Read More

JSON (JavaScript Object Notation) is a popular lightweight data interchange format used for exchanging data between servers and clients. While it is designed to be human-readable, JSON files can sometimes become difficult to read and understand, especially when dealing with large or complex data structures. In such cases, pretty printing JSON files becomes essential for better readability and debugging. In this article, we will show you how to pretty print JSON files in Linux using the `json_pp` command, a built-in JSON processor. Understanding the json_pp Command The `json_pp` command is a JSON preprocessor that ships with Perl, which is typically…

Read More

Apache is one of the most popular open-source web servers available, used by many websites globally. One of its features is the ability to list directories and their contents when there’s no index file present. This feature, while handy for some uses, can expose sensitive information about your website’s structure or content to the public. In this article, we will walk you through how to disable directory listing in Apache to enhance your website’s security. What is Directory Listing? Before we delve into disabling directory listing, it’s crucial to understand what it is. Directory listing is a feature that allows…

Read More

In the era of cloud computing, having your own private cloud storage is not just a luxury but a necessity for many. ownCloud offers a flexible, open-source solution for file sharing and data synchronization. In this guide, we’ll walk you through the process of installing ownCloud on Fedora Linux, a popular and powerful Linux distribution. Prerequisites Before we start, ensure you have the following: A system running Fedora Linux. Basic knowledge of Linux command line. Sudo or root privileges on your system. Step 1: System Update First, update your Fedora system to ensure all packages are up to date. Open…

Read More

Webmin is a web hosting control panel like CPanel which provides easy to use interface for managing Unix-like systems. Webmin is very easy to use and a lightweight application can be easily installed on the system within a minute. Webmin removed all the manual tasks to be done through command lines. This article will help you to install the latest Webmin on Ubuntu 19.10, 18.04 & 16.04 LTS systems. This article is using APT to install Webmin, you may also download Webmin packages directly and install in system. Step 1 – Configure APT Repository To install or update Webmin in…

Read More

Some times you may require to convert any string to uppercase (all letters). This tutorial will help to convert a string (any case) to the upper case as showing in the below image. Convert String to Upper Case Using Python programming language you can use string .upper() function to convert any string to upper case. Here is the sample Python code to convert string to uppercase.

Suggested reading Some more examples of string conversions in Python. Convert String to Lowercase in Python

Read More