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..

Though Windows is the well-known operating system among the common masses, the majority of developers and tech specialists prefer Linux because of its stability, security, and flexibility of customization. Linux has not been performing well in personal Desktop Computers, but it is the preferred operating system when it comes to powering servers and supercomputers. Even Microsoft uses Linux for its cloud environments. Linux is a free, open-source, and very lightweight operating system. It is highly customizable and can easily be optimized to perform specific tasks very quickly. It is more stable, secure, and scalable than the other operating systems, making…

Read More

Python is a renowned general-purpose programming language. Unlike HTML or CSS, general-purpose programming languages are used in several application domains. In programming languages, loops are a set of instructions that execute a sequence of code continuously until a certain condition is fulfilled. Most modern programming languages do include the concept of loops. The syntax for loops in each language may differ but the logic being used remains the same. Many programming languages have several types of loops and the most renowned ones are while and for loop. Today we will only learn about while loop and where it should be…

Read More

SQL Server is a relational database management system developed by Microsoft. It provides a powerful graphical interface called SQL Server Management Studio (SSMS), which provides all the features to manage your databases. Also provides options to backup and restore the database using graphical interfaces. Also, we can execute the T-SQL statement through SSMS to take a backup of the database. How to Backup SQL Server Database We can backup the SQL Serer database either with the T-SQL statements or we can use the SSMS wizard process to take full, differential, or transactional backup of the database. Use one of the…

Read More

NPM (Node Package Manager) is a command-line tool for managing node modules for Node.js applications. It is used to install, update or delete a node module in your system. It also follows the pacakge.json file for proper management of node modules for an application. The npmjs.com is the centralized repository containing all the node.js modules. Npm download the packages from npmjs and install them on a client machine. By default, NPM installs the latest version of an available module, but sometimes you may be required an older version of the module for your application. This tutorial helps you for installing…

Read More

Sudo allows us to provide superuser privileges to a normal user with restrictions. It allows users to run programs with the privileges of the superuser. You can configure sudo to give root privileges to specific commands only. Anyone working with the sudo privileges always remember a famous quote: With great power comes great responsibility This tutorial provides you the step by step instructions to create a new user with sudo privileges on CentOS and RHEL systems. Also, help you to allow sudo access to the existing accounts. Steps to Create a Sudo User on CentOS Access the Terminal: Log in…

Read More
How to Install NetBeans IDE on Fedora IDE

NetBeans is an open-source integrated development environment for the application development on Windows, Mac, Linux, and Solaris operating systems. It offers excellent debugging capabilities, coding, plugins, and extensions with multiple out-of-the-box features. The NetBeans is widely used by the PHP and Java application developers. A shell script is provided by the official team for easier installation of Netbeans on Linux systems. However, we can also use the Snap package to install the latest NetBeans IDE on the Fedora system quickly. This tutorial will help you to install NetBeans IDE on a Fedora system using the Snap package manager. Prerequisites A…

Read More

Microsoft SQL Server (MSSQL) is a relational database management system used on Windows servers. The latest versions are also available for the Linux platform. It’s a good practice to backup databases regularly, especially in production environments. So in case of any failure, we can restore a database from backup files. The SQL server provides options to back up and restore the full database or transactions logs. In this how-to guide, we will learn to restore the SQL Server database using T-SQL statements and SQL Server Management Studio. How to Restore SQL Server Database We can restore a SQL Server database…

Read More

The Microsoft SQL Server provides you multiple ways to rename a database. You can either use SQL Server management studio or run SQL query to rename a database. Before renaming a database, remember it can break the connections for services configured with the current database name or existing stored procedures. How to Rename a SQL Server Database In this guide, we will discuss three ways to rename a database in the SQL server. The first option will use SQL query to rename a database, the second will use a stored procedure and the third option will use SQL Server Management…

Read More

The wget command in Linux is a powerful tool for downloading files from the internet. It allows you to download files from a URL and save them to your local file system. This command-line utility can be used to download single files, entire directories, or even complete websites. Whether you need to download files for backup purposes, or to transfer large files between systems, the wget command is an indispensable tool for any system administrator. In this article, we’ll take a closer look at the wget command, including its various options and how to use it effectively. Whether you’re a…

Read More

Sudo provides special privileges to users to run commands as another user. It can use used to allow superuser privileges to a normal user with restrictions. One can configure the sudo to give root privileges to the specific commands only. This tutorial helped you to create a new user with Sudo privileges, add an existing user to sudo privileges or remove sudo privileges from any account. Create User with Sudo Access Use the system’s default “adduser” command to create a new account. As per current requirements the command syntax will be like: sudo adduser [USER_NAME} [GROUP_NAME] Here: USER_NAME is the…

Read More