Package management is a fundamental aspect of administering and maintaining Linux systems. Two of the most commonly used package management systems in the Linux world are RPM (Red Hat Package Manager) and DPKG (Debian Package). While they serve the same purpose of installing, upgrading, and managing software packages, they have different commands and package formats. In this article, we will explore the RPM and DPKG package management systems, comparing their equivalent commands and shedding light on the differences between them. RPM vs DPKG Comparison Table Command Details RPM Command DPKG Command Install a package rpm -i {package.rpm} dpkg -i {file.deb}…
Author: Rahul
Geany is a lightweight IDE (Integrated Development Environment) using the GTK2 toolkit. It was developed to provide a small and faster IDE for users for editing files. Geany has few of dependencies from other packages so its easier to install. AS Geany only uses GTK2 toolkit and therefore you need only the GTK2 runtime libraries to run. This tutorial will help you to install Geany IDE on Ubuntu 18.04 & 16.04 Desktop systems. Features Geany has a large number of features which is useful for use, below is the list of few basic features: Syntax highlighting Code completion Auto completion…
Mysqldump is an utility provided by MySQL/MariaDB to backup databases and tables. Generally, we take a full dump of database regularly and keep it. But some times we required to recover a single or 2-3 tables from backup. Then the question if how to restore a specific table from the full backup file. This article will help you to how to extract tables backup from the full database backup file. Also, we can extract all tables backup in individual files per table. Step 1 – Download MySQL Dump Split Script To split a full mysqldump database backup file in separate…
MySQL is a popular open-source relational database management system. However, sometimes you may need to remove MySQL from your Linux system due to various reasons such as upgrading to a newer version, replacing it with another database system, or simply uninstalling it. In this article, we’ll show you how to remove MySQL completely from your Linux system in a safe and effective manner. Before we begin, it is recommended to back up your data and configuration files before uninstalling MySQL. You can use the mysqldump utility to back up your data or copy the entire MySQL data directory to a…
Amazon S3 is a highly scalable and durable object storage service that allows you to store and retrieve any amount of data from anywhere on the web. S3FS is a FUSE (Filesystem in Userspace) interface for Amazon S3 that allows you to mount Amazon S3 buckets as a local file system on your CentOS or Fedora system. This allows you to easily access and manipulate your S3 data as if it were stored on a local file system. In this article, we’ll show you how to mount an Amazon S3 bucket on a CentOS or Fedora system using S3FS. Before…
AWStats is a free and open-source log analyzer that provides detailed insights into the traffic of your Apache web server. With AWStats, you can track website visits, referring websites, search engines, operating systems, browsers, and much more. It’s an effective tool for website owners, system administrators, and developers to monitor the performance of their website and make informed decisions to optimize it. This article provides a step-by-step guide on how to set up AWStats on CentOS, RHEL, and Fedora systems. The guide covers all the necessary prerequisites, including installing the required dependencies and the AWStats software, configuring AWStats to analyze…
Amarok Team has released a very strong audio player in August 2013. This released is titled as “Return To The Origin”. The new Amrok media player providers more fun with new exciting features. I wish you enjoy its features with great fun and Love. New Features of Amarok A fancy audio analyzer visualization applet Smooth fade-out when pausing music Many UI improvements and visual tweaks including better support for alternate color themes Significantly enhanced MusicBrainz tagger Power management awareness with a pair of new configuration options Performance optimizations and responsiveness tuning all over Amarok Install Amarok Audio Player Use following…
Tecadmin always tried to create valuable content for their readers. If you like our content and have an interest in donations that makes smiles on others. Please donate! You may donate to the following charities that are working around the globe without seeking nationality, religion, color, name, age, gender, etc. 1. United Nations Children’s Fund (UNICEF) The UNICEF (United Nations International Children’s Emergency Fund) is the driving force that helps build a world where the rights of every child are realized. Unicef – http://www.unicef.org/ Unicef India – http://www.unicef.org/india/ 2. Doctors Without Borders Doctors Without Borders provides medical humanitarian assistance in…
PHP stands for Hypertext Preprocessor, and it’s your go-to for crafting email communications within your web applications. Its mail() function is a marvel of simplicity and efficiency, offering you the means to send emails with minimal fuss. Whether it’s a simple notification or a complex marketing campaign, PHP stands ready to dispatch your messages into the digital ether. Success or failure? The function’s return value leaves no room for guesswork. Configuring PHP for Email Success PHP’s email prowess is powered by the sendmail_path directive found in the PHP.ini file. For Unix enthusiasts, the paths /usr/sbin/sendmail or /usr/bin/sendmail are your bread…
Wkhtmltoimage is a very useful application to create screenshots of a website or webpage. Sometimes we are required to create a screenshot of web pages and store in our system. It uses QT Webkit rendering engine for creating images in various formats. This article will help to capture screenshots of a webpage using PHP script and Linux command line. Step 1: Install wkhtmltoimage Visit the wkhtmltopdf.org and install and download the package for your Linux system. Then install it using the standard package manager. For example, to download and install the package on Ubuntu 22.04, execute: wget https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6.1-2/wkhtmltox_0.12.6.1-2.jammy_amd64.deb sudo apt…