WEB HOSTING PUNE

No Widgets found in the Sidebar Alt!

LINUX

Task Scheduling in Linux with cron

Cron is a Linux and UNIX based tool that allows scheduling automated tasks. Cron commands are stored in a file named for the user who created them in /var/spool/cron/ CRON…

read more
September 17, 2021
LINUX

How to install and configure PHP

PHP is a general-purpose scripting language well-suited for Web development since PHP scripts can be embedded into HTML. This guide explains how to install and configure PHP in an Ubuntu System…

read more
September 22, 2024
LINUX

Adding name servers in command line

Properly configuring name servers is essential for any Linux server that needs to resolve domain names into IP addresses. Whether you’re setting up a server or managing a local machine,…

read more
November 17, 2024
  • LINUX,  Command

    Rsync Command in Linux with Examples easy to learn – Basic guide

    January 9, 2024 /

    'rsync' is a command-line utility used for data synchronization and file transfer between two systems. It is commonly found in Unix and Unix-like operating systems but can also be used on Windows / Linux through various implementations. The primary purpose of ‘rsync‘ is to efficiently copy and synchronize files and directories from one location to another while minimizing data transfer. ‘rsync‘ is a fast and versatile command-line utility for synchronizing files and directories between two locations over a remote shell, or from/to a remote Rsync daemon. It provides fast incremental file transfer by transferring only the differences between the source and the destination. There are basically two ways in which rsync can…

    read more
    Kiran kumar Comments Off on Rsync Command in Linux with Examples easy to learn – Basic guide

    You May Also Like

    How to change file permissions in linux

    November 6, 2019
    PHP Max Input

    How to increase the PHP Max Input Vars

    August 18, 2024
    CPU Server

    Single CPU Server vs. Dual CPU Server: Which is Best for You?

    June 2, 2024
  • LINUX

    How To Reset Root Password On CentOS 7

    November 5, 2021 /

    Have you ever encountered a situation when you missed your user account password on a Linux System? If you forget user password, you can easily reset it using root account. What if you forget your root password? You cannot reset root account password using user account. Since user account is not permitted to perform such task in general. So I planned to boot into single user mode. As the system boots, press ESC to bring up the GRUB boot prompt. The prompt happens early in the boot process. If you miss the prompt, you need to restart the server from the control panel and try again. At the GRUB boot prompt, press E to…

    read more
    whpadmin 0 Comments

    You May Also Like

    PHP Max Input

    How to increase the PHP Max Input Vars

    August 18, 2024
    Microphone

    How to Enable Microphone on an RDP Server

    December 15, 2024
    name servers

    Adding name servers in command line

    November 17, 2024
  • LINUX

    How To Disable Root SSH Access

    October 28, 2021 /

    By default when you install CentOS 7 and SSH server, the root account automatically have remote access via SSH. This can be dangerous. If the root account password falls into the wrong hands, your server is at the mercy of the bad guys with the password. They can delete every file and folder on the server and take down the entire system with few commands. That’s why limiting the root account from directly accessing the server is recommended. I will show you through the step by step disable root SSH access on a CentOS 7 server. Before you disable SSH logins for the root account, you must create a normal…

    read more
    whpadmin 0 Comments

    You May Also Like

    Benefits of Hosting

    The Benefits of Hosting Your Website Locally vs. Internationally

    October 13, 2024
    name servers

    Adding name servers in command line

    November 17, 2024
    NVMe vs SSD

    NVMe vs SSD: What’s the difference?

    April 20, 2024
  • LINUX

    How to check the PHP version on Linux

    October 27, 2021 /

    There are several possibilities to check and validate PHP version on Linux. METHOD 1 Open a bash shell terminal and use the command “php –version” METHOD 2 “php -v” to get the version of PHP installed on the system METHOD 3 Let’s create a PHP file with content as shown below. The phpinfo() function outputs a great deal of information about the state of the current PHP environment, including loaded extensions, compilation options, version, server information, and so on. Now, considering that Apache is installed and working, open a browser and test PHP using address as follow: We hope you’ve found this useful! 

    read more
    whpadmin 0 Comments

    You May Also Like

    .htaccess

    How to Locate and Create .htaccess File – A Step-by-Step Guide

    March 20, 2024
    Restart cPanel

    How to Restart cPanel Service on a Server via SSH?

    July 18, 2024

    How to change file permissions in linux

    November 6, 2019
  • LINUX

    How to clear Default Mail Account in a cPanel Server using SSH

    October 15, 2021 /

    In every cPanel server, we can find a default mail account in the name of cPanel username. The default mail account is not used for normal mailing purposes. All the notification mails from the server are forwarded to this default mail account. cPanel also routes mails sent to the non-existing email accounts at your domain name to the default mail account if catch-all feature is enabled. For example, if your default mail account is vasco@demoserver.com and someone emails a non-existent or mistakenly entered address, billy@demoserver.com, then cPanel forwards the email to vasco@demoserver.com. In most cases spam mails are sent to randomly generated email accounts which may or may not exists…

    read more
    whpadmin 0 Comments

    You May Also Like

    Benefits of Hosting

    The Benefits of Hosting Your Website Locally vs. Internationally

    October 13, 2024
    Commands for System Admins

    Essential Linux Commands for System Admins, Cloud, and DevOps Engineers

    February 16, 2024
    CPU Server

    Single CPU Server vs. Dual CPU Server: Which is Best for You?

    June 2, 2024
  • LINUX

    How To Archive Files and Directories in Linux

    September 17, 2021 /

    Introduction Archiving is the process of combining multiple files and directories (same or different sizes) into one file. On the other hand, compression is the process of reducing the size of a file or directory. Archiving is usually used as part of a system backup or when moving data from one system to another. Archives and Directories The most common programs for archiving files and directories are: Tar Zip Archive files and directories using the tar command Tar is a Unix command representative TAPE Archive (tape archive). It is used to combine or store multiple files (same or different into one file. There are four main modes of operation in the…

    read more
    whpadmin 0 Comments

    You May Also Like

    Rsync Command in Linux with Examples easy to learn – Basic guide

    January 9, 2024
    Ports

    How to Check Open Ports in Linux

    September 8, 2024
    Email

    Why Does Your Email End Up in Spam?

    December 1, 2024
  • LINUX

    Task Scheduling in Linux with cron

    September 17, 2021 /

    Cron is a Linux and UNIX based tool that allows scheduling automated tasks. Cron commands are stored in a file named for the user who created them in /var/spool/cron/ CRON Commands The Crontab command is used to create new cron files: Crontab -l list the contents of your personal cron file. Crontab -r removes all crontab entries. Crontab -e opens your default text editor for cron job creation. Steps Creating a Cron Job Login to your server as root Create a directory for the purpose of testing as Add files to the crondemo directory using touch command Open crontab -e and add the command Allow sometime and list the directory…

    read more
    whpadmin 0 Comments

    You May Also Like

    Benefits of Hosting

    The Benefits of Hosting Your Website Locally vs. Internationally

    October 13, 2024
    Login Issues

    How To Resolve cPanel Login Issues?

    November 2, 2024
    Kernel

    Best Understanding the Kernel: The Heart of the Operating System

    July 10, 2024
  • LINUX

    How To Use Rsync to Sync with a Remote System

    September 17, 2021 /

    Syncing to a remote system is trivial if you have SSH access to the remote machine and rsync installed on both sides. Once you have SSH access verified between the two machines, you can sync the dir1 folder from earlier to a remote computer by using this syntax This is called a “push” operation because it pushes a directory from the local system to a remote system. The opposite operation is “pull”. It is used to sync a remote directory to the local system. If the dir1 were on the remote system instead of our local system, the syntax would be: Like cp and similar tools, the source is always the first argument, and the destination is always…

    read more
    whpadmin 0 Comments

    You May Also Like

    Rsync Command in Linux with Examples easy to learn – Basic guide

    January 9, 2024
    DKIM Record

    What Is DKIM Record And Its Importance

    December 8, 2024
    Node.js

    How to Set Up a Node.js Application Using CloudLinux’s Node.js Selector in cPanel

    October 20, 2024
  • LINUX

    How To Use Rsync to Sync Local Directories

    August 16, 2021 /

    Introduction Rsync, which stands for “remote sync”, is a remote and local file synchronization tool. It uses an algorithm that minimizes the amount of data copied by only moving the portions of files that have changed. What Is Rsync? Rsync is a very flexible network-enabled syncing tool. Due to its ubiquity on Linux and Unix-like systems and its popularity as a tool for system scripts, it is included on most Linux distributions by default. Basic Syntax The basic syntax of rsync is very straightforward, and operates in a way that is similar to ssh, scp, and cp. We will create two test directories and some test files with the following commands: We…

    read more
    whpadmin 0 Comments

    You May Also Like

    Restart cPanel

    How to Restart cPanel Service on a Server via SSH?

    July 18, 2024
    Ubuntu

    How To Install Linux, Apache, MySQL, PHP (LAMP) Stack on Ubuntu

    April 11, 2024
    Commands for System Admins

    Essential Linux Commands for System Admins, Cloud, and DevOps Engineers

    February 16, 2024
  • LINUX

    Linux Uptime Command

    August 16, 2021 /

    The Linux Operating System is filled with several commands which any aspiring Linux expert or power user e.g. system admin must have a good grasp of. One of such commands is uptime and today, I’ll briefly discuss its purpose and syntax. Uptime is a command that returns information about how long your system has been running together with the current time, number of users with running sessions, and the system load averages for the past 1, 5, and 15 minutes. uptime uses a simple syntax: Using Uptime You can run the uptime command without any options Output: Let’s see some useful uptime command usage with examples. Check Linux Server Uptime You can filter uptime’s result to show only the running time of the system with…

    read more
    whpadmin 0 Comments

    You May Also Like

    Kernel

    Best Understanding the Kernel: The Heart of the Operating System

    July 10, 2024
    ERR_SSL_PROTOCOL_ERROR

    How To Fix The ERR_SSL_PROTOCOL_ERROR

    May 25, 2024
    Website Backup

    Creating a Website Backup Using Terminal and Command Line

    June 22, 2024
 Older Posts
Newer Posts 

Recent Posts

  • How to Enable Microphone on an RDP Server
  • What Is DKIM Record And Its Importance
  • Why Does Your Email End Up in Spam?
  • How to Configure Mail Forwarding in Plesk
  • Adding name servers in command line

Categories

  • Command
  • Hosting
  • Information
  • LINUX
  • Security
  • website-building
  • Windows
  • WordPress

Archives

  • December 2024
  • November 2024
  • October 2024
  • September 2024
  • August 2024
  • July 2024
  • June 2024
  • May 2024
  • April 2024
  • March 2024
  • February 2024
  • January 2024
  • November 2021
  • October 2021
  • September 2021
  • August 2021
  • July 2021
  • June 2021
  • November 2019
  • October 2019
Ashe Theme by WP Royal.