Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Operating System Articles
Page 52 of 171
DCP – Transfer Files Between Linux Hosts Using Peer-to-Peer Network
As a Linux user, you may often find yourself needing to transfer files between different hosts on your network. While there are several ways to do this, the Distributed Copy (DCP) protocol is a peer-to-peer method that offers a convenient and efficient solution for large-scale file transfers. In this article, we will explore DCP in detail, including how to install and use it to transfer files between Linux hosts. We will also discuss security considerations when using DCP, and how to use SSH to ensure secure file transfers. What is DCP? DCP is a protocol that enables ...
Read MoreCloud Connect User Guide
Veeam Cloud Connect is a cloud-based backup and disaster recovery solution that allows organizations to extend their existing Veeam infrastructure to secure, service provider-managed cloud repositories. This comprehensive guide covers installation, configuration, and backup management to help you leverage Cloud Connect for reliable data protection. What is Cloud Connect? Veeam Cloud Connect enables businesses to send backup data to cloud-based repositories managed by certified Veeam service providers. It seamlessly integrates with existing Veeam Backup & Replication infrastructure, providing an offsite backup destination without the complexity of managing cloud storage directly. The solution supports both backup-to-cloud and replication-to-cloud scenarios. ...
Read MoreCockpit – A Powerful Tool to Monitor and Administer Multiple Linux Servers via Browser
Managing multiple Linux servers can be a challenging task, especially for those who are new to the Linux environment. Luckily, there are several tools available that make this task easier, and one such tool is Cockpit. In this article, we will explore what Cockpit is, its features, how to install and configure it, and how to use it to manage your Linux servers effectively. What is Cockpit? Cockpit is a powerful web-based graphical interface for managing and monitoring multiple Linux servers. It provides an easy-to-use and intuitive interface that allows system administrators to manage servers from a ...
Read MoreConfigure _No Password SSH Keys Authentication_ with PuTTY on Linux Servers
SSH (Secure Shell) is a popular protocol for securely connecting to remote servers over a network. When you use SSH to connect to a server, you typically need to provide a username and password to authenticate your identity. However, this process can be tedious if you need to connect to multiple servers frequently. Fortunately, there is a solution: No Password SSH Keys Authentication. In this article, we'll walk you through the process of setting up No Password SSH Keys Authentication on a Linux server using PuTTY, a popular SSH client for Windows. With this setup, you can connect to ...
Read MoreConfigure Collectd as a Central Monitoring Server for Clients
Collectd is a lightweight system statistics collection daemon that gathers performance metrics such as CPU usage, memory utilization, disk I/O, and network traffic. It operates as a central monitoring solution, allowing administrators to collect data from multiple client systems and analyze it from a single server location. This article demonstrates how to configure Collectd as a central monitoring server to collect metrics from distributed client machines and visualize the data using modern dashboards. Prerequisites Before configuring Collectd, ensure you have the following − A server running Linux (Ubuntu or Debian preferred) One or more client ...
Read MoreCreate More Advance GUI Applications Using PyGobject Tool in Linux
PyGObject is a powerful Python binding that enables developers to create advanced GUI applications in Linux using the GObject introspection library. It provides access to GTK, GStreamer, and other GObject-based libraries, allowing developers to build sophisticated desktop applications with native Linux integration. What is PyGObject? GObject is a fundamental object system used by GTK, GStreamer, and other libraries to create object-oriented software in C. PyGObject allows developers to create GUI applications using Python while leveraging the power of GObject-based libraries, providing a Pythonic interface to native Linux desktop technologies. Installation Requirements Before developing GUI applications using ...
Read MoreDeploying MySQL on Kubernetes {Guide}
MySQL is one of the most popular relational database management systems in use today, and running it on Kubernetes can provide a highly scalable and flexible solution for managing your database workload. In this guide, we will walk you through the process of deploying MySQL on Kubernetes, from setting up a Kubernetes cluster to creating a MySQL deployment, adding persistent storage, and exposing the deployment with a service. We will be using YAML files to define our Kubernetes resources, and we will also provide detailed explanations and examples of each step along the way. Whether you're new to Kubernetes ...
Read MoreExclude directories while using grep command?
The grep command is a powerful text searching utility in Linux that allows you to search for specific patterns within files. When performing recursive searches across directory trees, you may want to exclude certain directories to improve performance or avoid searching through irrelevant content such as log directories, cache folders, or version control directories. The --exclude-dir option provides an efficient way to skip specified directories during recursive grep operations, making your searches faster and more targeted. Exclude Single Directory To exclude a single directory from your grep search, use the --exclude-dir option with the -R (recursive) flag. ...
Read MoreDigitally Sign Documents in Linux Using ONLYOFFICE Desktop Editors
Digital signatures are an essential aspect of document security in modern computing. They ensure that the document hasn't been altered and that it comes from a trusted source. Digital signatures are widely used in business, legal, and government settings, but they're also useful for personal documents. ONLYOFFICE Desktop Editors provides Linux users with a comprehensive solution for digitally signing documents using cryptographic methods. What is a Digital Signature? A digital signature is a mathematical technique used to verify the authenticity and integrity of a digital document or message. It provides a way for the recipient of a document ...
Read MoreCreating Software RAID0 (Stripe) on ‘Two Devices’ Using ‘mdadm’ Tool in Linux
RAID 0 (Stripe) stands for Redundant Array of Inexpensive Disks. It is a data storage technique that combines multiple disks into a single logical unit to provide improved performance and storage capacity. RAID 0 uses striping to write data across multiple disks simultaneously, offering faster data access but no redundancy. In this article, we will learn how to create RAID 0 on two devices using the mdadm tool in Linux. What is RAID 0? RAID 0, also known as striping, divides data into blocks and writes them across all disks in the array. This allows for faster ...
Read More