Linux Touch Command: File Creation Made Easy

The Linux touch command is a handy tool for creating new files and changing file timestamps. It’s useful for both experienced system administrators and beginners. This article will show you how to use the touch command to make your work easier and more efficient.

Linux Touch Command: File Creation Made Easy

Key Takeaways

  • Understand the purpose and functionality of the Linux touch command
  • Learn how to create new files using the touch command
  • Discover how to modify file access and modification timestamps
  • Explore advanced touch command options for enhanced productivity
  • Discover touch command alternatives and troubleshooting tips

Understanding the Linux Touch Command

The touch command is a key tool in Linux’s command line. It helps manage files by creating new ones or changing their timestamps. This makes it a vital part of your work.

What is the Touch Command?

The touch command is a built-in Linux tool. It’s mainly used to make new, empty files or change the access and modification times of files. It’s a simple yet powerful way to handle your files from the command line.

When to Use the Touch Command?

  • To create new, empty files quickly and easily
  • To update the access and modification times of existing files
  • To ensure the existence of a file required by a script or application
  • To trigger file-based actions, such as cron jobs or automated processes
  • To maintain the timestamps of files for better organization and tracking

Knowing how to use the touch command can make your file management tasks easier. It helps you work more efficiently in the command line interface.

Creating New Files with Touch

The linux touch command is great for making new files. Just type touch followed by a file name to create an empty file. This is handy for setting up a file for later use on the command line.

Using the touch command to make new files is easy. Here’s how:

  1. Open your terminal or command prompt.
  2. Type the command, replacing filename.txt with your file name: touch filename.txt
  3. Hit Enter, and your new empty file will be ready in your current directory.

To make more than one file, list the names after touch, separated by spaces:

touch file1.txt file2.txt file3.txt

This will make three empty files: file1.txt, file2.txt, and file3.txt.

The touch command is a simple yet effective tool for file creation on Linux command line. Learning to use it can make your work faster and more efficient.

Changing File Timestamps with Touch

The linux touch command does more than just create new files. It also lets you change the timestamps of files that already exist. This is really useful when you need to keep files up to date or follow certain file management rules.

Modifying Access Time

The access time, or access time, shows when a file was last opened. You can change this with the touch command. This is handy for tracking how often files are used or meeting file retention rules.

Modifying Modification Time

The modification time, or modification time, tells you when a file was last changed. With the touch command, you can change this timestamp. This is useful for keeping files updated across different systems or checking if your files are current.

Using the linux touch command to adjust file timestamps is a key skill in managing files on Linux. It lets you have detailed control over your files.

Combining Touch with Other Linux Commands

The linux touch command is very useful on its own. But it gets even better when you use it with other Linux commands. For example, combining it with cron jobs makes file management easier and more efficient.

Using Touch with Cron Jobs

Cron jobs help you automate tasks like updating file timestamps or creating new files. Adding the touch command to these jobs makes managing your files more automated.

  • Periodically update file timestamps: Use the touch command within a cron job to update the access and modification times of specific files or directories, ensuring your file system remains organized and up-to-date.
  • Automatically create new files: Leverage the touch command in a cron job to generate new files on a scheduled basis, such as daily or weekly reports, log files, or other relevant documents.
  • Combine with other commands: Integrate the touch command with other Linux commands, such as find or grep, to create more complex automation workflows that address your unique file management needs.

Using the touch command with cron jobs makes your linux touch command workflows better. It cuts down on manual work and keeps your files in order.

linux touch command

The Linux touch command is a powerful tool for creating new files and changing file timestamps. It’s useful for both experienced Linux users and beginners. Knowing how to use the touch command can make your work easier and more efficient.

The touch command is simple but effective. It can create new files or update the timestamps of existing ones. This is great for managing files, making sure your project files have the right timestamps.

Creating New Files with Touch

One main use of the touch command is to create new files. Just type touch filename.txt to make a new file. This is handy for projects that need many files or when setting up a new project’s file structure.

Modifying File Timestamps

The touch command also changes file timestamps. This is useful in many situations, like:

  • Making sure a file’s timestamp shows the latest changes
  • Syncing timestamps of files in a project
  • Resetting timestamps for backups or archives

With the right options, you can adjust file timestamps easily with the touch command.

Integrating Touch with Other Linux Commands

You can also use the touch command with other Linux commands, like Cron jobs. This is great for automating file management tasks. It helps keep file timestamps consistent or creates new files on schedule.

Learning the touch command is a big plus for your Linux skills. It helps you manage files better and control your project files more effectively. Whether for personal or professional projects, the touch command is a valuable tool in your command-line toolkit.

Advanced Touch Command Options

The linux touch command has many advanced options. These options make it more useful. Two key features are setting a reference file and using verbose output.

Setting Reference File

The touch command lets you set a file’s timestamps from another file. This is great for syncing file timestamps or restoring original timestamps. To do this, use the -r option and the reference file’s name.

Verbose Output

The touch command also has a verbose output option. It’s useful for troubleshooting or tracking file changes. With -v or --verbose, you get detailed info on what the command does.

Using these advanced options of the linux touch command makes file management easier. You also learn more about how the command works.

Best Practices for Using Touch

The linux touch command is a key tool for managing files. It’s important to use it wisely to keep your files in order. By following best practices, you can make your work more efficient and keep your files safe.

One key thing to remember is how the touch command changes file timestamps. When you use touch, it updates the file’s last access and modification times. This can affect scripts and automated tasks that rely on these timestamps.

  • Use the touch command carefully to avoid messing up file timestamps.
  • Learn about the different touch command options. This lets you adjust access and modification times as needed.
  • Integrate the touch command into your file management routines. It can help make your work more efficient.

Also, think about how the touch command fits into your overall file handling. It’s great when used with other Linux commands. For example, you can use it in cron jobs to automate file updates.

“The touch command is a simple yet versatile tool in the Linux arsenal, but its power lies in understanding how to use it effectively and in alignment with your broader file management strategies.”

By following best practices, you can use the linux touch command to improve your workflow. It helps keep your files in order and boosts your efficiency in managing your Linux files.

Touch Command Examples

The Linux touch command is more than just for making new files. It has many useful features. Let’s look at some examples to see how powerful it is.

Creating Multiple Files

One great thing about the touch command is making many files at once. This is super useful for setting up folders or making lots of similar files. To make multiple files, just list their names separated by spaces:

  1. touch file1.txt file2.txt file3.txt
  2. touch report_{1..5}.txt

The first example makes three text files. The second example makes five files named “report_1.txt” to “report_5.txt” using a pattern.

Updating Timestamps

The touch command can also change the timestamps of files. This is handy when you need a file’s last change time to be now. Or when you want all files to have the same timestamp.

  • touch file1.txt
  • touch -d “2023-04-01” file2.txt
  • touch -m -d “2023-04-15” file3.txt

The first example updates `file1.txt` to the current time. The second example sets `file2.txt` to April 1, 2023. The third example changes only the modification time of `file3.txt` to April 15, 2023.

By checking out these examples, you can see how useful the touch command is. It makes managing files on Linux systems easier.

Touch Command Alternatives

The linux touch command is great for managing files, but it’s not the only choice. This section looks at other tools and commands for tasks like making new files or changing timestamps. Learning about these options can make your Linux experience better and help you pick the right tool for your needs.

The mkdir command is a good alternative. It lets you make new directories and files at the same time. For example, mkdir -p dir1/file1.txt makes a “dir1” directory and a “file1.txt” file inside it.

The echo command is also useful. It lets you make new files with certain text. For instance, echo "Hello, World!" > file.txt makes a “file.txt” file with “Hello, World!” inside it.

  • touch: The traditional Linux command for creating and updating file timestamps.
  • mkdir: Creates new directories and files simultaneously.
  • echo: Allows creating new files with specific content.
  • cat: Can be used to create new files and append content to existing ones.
  • nano and vim: Text editors that can be used to create and modify files.

There are many file management tools in Linux. You might find that some alternatives work better for you than the linux touch command. Try out different tools to see which ones fit your needs best.

CommandDescription
touchCreates new files or updates file timestamps
mkdirCreates new directories and files simultaneously
echoAllows creating new files with specific content
catCan be used to create new files and append content to existing ones
nanoText editor that can be used to create and modify files
vimText editor that can be used to create and modify files

Troubleshooting Touch Command Issues

The linux touch command is usually easy to use. But sometimes, you might run into problems or error messages. Let’s look at some common issues and how to fix them.

Permission Denied Errors

Many users face the “Permission denied” error with the touch command. This happens when you try to create or change a file in a directory you can’t write to. To fix this, make sure you have the right permissions. Use the ls -l command to check permissions and the sudo command to get temporary access.

Nonexistent Directory Errors

Another issue is the “No such file or directory” error. This happens when you try to create a file in a non-existent directory. Before using touch, check if the directory exists and navigate to it with cd.

Interpreting Error Messages

Understanding error messages is key. Read them carefully, as they often point to the problem. For example, an “Invalid argument” error might mean you’ve entered a wrong file name or path.

Knowing common linux touch command problems and error messages helps you solve issues quickly. This makes managing files easier.

“Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.” – Brian Kernighan

Remember, the touch command is a powerful tool. With a bit of troubleshooting, you can manage files smoothly and reliably.

Conclusion

The Linux touch command is a key tool for managing files and making workflows better. It helps users create new files and change timestamps. This makes daily tasks easier and boosts productivity.

Whether you’re experienced with Linux or just starting, learning the touch command is beneficial. It helps with tasks like automating jobs with Cron and controlling timestamps precisely. This tool opens up many ways to improve your workflow.

As you learn more about the touch command, remember it’s a powerful tool for keeping files organized. Using it can make your work more efficient and help you stand out professionally.

FAQ

What is the Linux touch command?

The Linux touch command is a tool for creating new files or updating file timestamps. It helps manage your files efficiently.

When should I use the touch command?

Use the touch command for creating empty files, changing file timestamps, or with cron jobs. It’s handy for automating tasks.

How do I create new files using the touch command?

To make a new file, type touch new_file.txt. This will create an empty file named “new_file.txt”.

Can I modify file timestamps with the touch command?

Yes, you can update file access and modification times. This is useful for keeping files in sync or meeting specific requirements.

How can I combine the touch command with other Linux commands?

The touch command works well with other Linux tools, like cron jobs. This makes your workflow smoother and ensures consistent file management.

What are some advanced options available for the touch command?

Advanced options include setting timestamps from a reference file and verbose output for troubleshooting.

What are some best practices for using the touch command?

To use the touch command well, understand its effects on timestamps. Use it wisely and as part of your file management.

Can you provide some practical examples of using the touch command?

Sure! You can create multiple files at once or update existing file timestamps. These examples show the touch command’s versatility.

Are there any alternatives to the touch command?

Yes, there are other Linux commands for similar tasks. Knowing these alternatives can help you find the best tool for your needs.

How can I troubleshoot issues with the touch command?

If you run into problems, this section helps with troubleshooting. It covers common issues and how to fix them, ensuring smooth file management.

Read more: How to create, delete and manage Child Domains in CyberPanel?

Here you can read How to log in to the Rainloop admin dashboard?

Read More: How to Change Upload limit On CyberPanel?

How to Change Upload limit On CyberPanel?

You can follow us on Facebook too.

Download the Pakistan Gold Rate Android Application

Independent News Coverage Pakistan (INCPak) has launched its Android App for Gold Rate in Pakistan, which provides daily updates from the bullion market.

The app provides Gold Prices in Pakistan, which are taken directly from the bullion market frequently throughout the day.

The initial version of the app is already available on the Google Play Store; however, we are working on more features, which will be released soon.

INCPak’s Pakistan Gold Rate Android App has several upcoming features, including Local Gold Prices, International Gold Rates, ARY Gold Rates, and Peshawar Gold Rates, which are mentioned separately in the app due to differences in Tola weight.

Features:

  • Latest Gold Rates
  • Frequently Updated Throughout the Day
  • International Gold Rate
  • Dollar Exchange Rate
  • ARY Gold Rate
  • Peshawar Gold Rate

Make sure to follow INCPak on their social media handles for regular updates

INCPak’s KSA Gold Rate App is Now Available on the Google Play Store

Independent News Coverage Pakistan (INCPak) has released its KSA Gold Rate Android App on the Google Play Store with daily updates from the local bullion market.

The app provides latest Gold Prices in the Kingdom of Saudi Arabia (KSA) and it is updated frequently throughout the day.

Furthermore, the app provides Gold Rates in Saudi Arabia via a detailed table showing 24-Carat, 22-Carat, and 21-Carat, which is broken down into Tola (11.664 Grams), 10 Gram, and 1 Gram weights.

Moreover, there is a built-in Gold Rate Calculator for manual calculations.

Make sure to follow INCPak on their social media handles for regular updates

The UAE Gold Rate App by INCPak Provides Daily Updates

If you’re looking for Gold Rates in the United Arab Emirates (UAE), you should download the UAE Gold Rate App by Independent News Coverage Pakistan (INCPak) on the Google Play Store.

The application provides daily updates on Gold Prices in the United Arab Emirates (UAE) from the local bullion market.

The app is updated frequently throughout the day and provides several features, including a breakdown of Gold Rates in UAE into 24-Karat, 22-Karat, and 21-Karat.

Furthermore, the Gold Prices are mentioned in 1 Tola (11.664 Grams), 10 Gram, and 1 Gram along with a Gold Rate Calculator for easy manual calculations for custom weights.

Make sure to follow INCPak on their social media handles for regular updates

Change PHP Upload Limit for Website in CyberPanel 

Change PHP upload limit is not big deal in CyberPanel you just need to follow this short article and all will go good. In cyberpanel upload_max_filesize is just a matter of few clicks. So now to increase upload limit just follow few steps:

Step-1 Login CyberPanel:

Login to your CyberPanel on port 8090 and any other if you have changed. URL will be like:

https://<your-ip>:8090

Step-2 Go to Edit PHP Configs

  • Go to PHP → Eidt PHP Configs → Basic, and select the version of PHP on which you want to change values of the required data.
Change Upload limit of PhpMyAdmin

Step-3 Change PHP upload limit CyberPanel

  • Set the limit in upload_max_filesize according to your choice and then click on Save Changes
Change Upload limit On CyberPanel

After doing that also press the Restart PHP button this thing will apply all changes on server level and you can now good to go with it.

We have an other article on this as well check here. For old version CyberPanel official guide is here.

You can follow us on Facebook too.

How to create SFTP login for websites hosted in cyberpanel.

Creating SFTP login for websites

Step 1: SSH Access

  1. Open cyberpanel and go to “List websites”.
  2. Select the website for which you want SFTP login. Then click on Manage.
  1. On the next page go to “SETUP SSH ACCESS
  1. SSH USERNAME for your website will be automatically generated like the highlighted in the screenshot.
    Setup the Password you want and save.

Now you are able to access your SFTP.
Just using Server IP, SSH user and Password.

Step 2: SFTP Access with FileZilla

  1. Host: <your server ip>
  2. Username: <ssh user of domain>
  3. Password: <ssh pass of domain>
  4. Port: <your server port>

Best Show-Hide/Collapse-Expand WordPress Plugins

Show-hide or collapse-expand functionality allows users to hide or show content on a web page by clicking on a designated button or link. This can be useful for displaying large amounts of information in a compact way, or for organizing content into sections that can be revealed as needed. So here in this article, we will learn about show-hide / collapse-expand WordPress.

In WordPress, this functionality can be implemented using plugins, which are add-ons that extend the capabilities of the WordPress platform. There are many different show-hide/collapse-expand plugins available, and the best one for you will depend on your specific needs and preferences. Some popular options include WP Collapse-O-Matic, Simple Show Hide, and Collapse-Pro. To find the right plugin for your site, you may want to do some research and read reviews to compare the features and functionality of different options.

WP-ShowHide

WP-ShowHide is a WordPress plugin that allows you to easily add a show/hide toggle to your WordPress site. This can be useful for hiding or revealing content on your sites, such as spoilers, spoilers, or additional information. To use the plugin, you can follow these steps:

  1. Install and activate the WP-ShowHide plugin on your WordPress site.
  2. Configure the plugin settings by going to Settings > WP-ShowHide in the WordPress admin dashboard. This may include options such as the toggle text, toggle style, and other customization options.
  3. To add a show/hide toggle to your content, you can use the [showhide] shortcode provided by the plugin. The shortcode takes two arguments: the text to show (enclosed in ) and the text to hide (enclosed in ). For example:
[showhide]
[show]Click here to reveal the hidden content.[/show]
[hide]This is the hidden content.[/hide]
[/showhide]

This will display a toggle link with the text “Click here to reveal the hidden content”. When the link is clicked, the hidden content will be revealed.

Note that this is just an example of how to use the WP-ShowHide plugin. You may need to consult the plugin’s documentation or support resources for more detailed instructions and information.

WP-show hide

Ultimate Blocks

Ultimate Blocks is a collection of custom blocks for the WordPress block editor (Gutenberg), designed to add additional functionality and design options to your WordPress site. The blocks included in Ultimate Blocks provide a range of features, including tables, testimonials, and call-to-action buttons. The blocks are designed to be easy to use and customize and can be added to any page or post on your site by simply inserting them into the block editor. Ultimate Blocks is a popular plugin among WordPress users and has received positive reviews for its feature-rich blocks and user-friendly interface.

Show-Hide / Collapse-Expand plugin for WordPress

As I mentioned earlier, there are many different show-hide/collapse-expand plugins available for WordPress. Some popular options include WP Collapse-O-Matic, Simple Show Hide, and Collapse-Pro. These plugins allow you to add show-hide/collapse-expand functionality to your WordPress site, allowing you to hide or show content on your pages and posts as needed.

To find the right plugin for your needs, you may want to do some research and read reviews to compare the features and functionality of different options. You can also try out different plugins on your site to see which ones work best for you. Keep in mind that not all plugins are compatible with all versions of WordPress, so be sure to check the plugin’s compatibility before installing it on your site.

 show-hide / collapse-expand WordPress.

Easy Accordion WordPress plugin:

An accordion is a user interface element that allows users to expand and collapse sections of content. The Easy Accordion plugin is a WordPress plugin that allows you to easily create accordion elements on your WordPress site. To use the plugin, you can follow these steps:

  1. Install and activate the Easy Accordion plugin on your WordPress site.
  2. Go to the plugin settings page, which can be found under Settings > Easy Accordion in the WordPress admin dashboard.
  3. Configure the plugin settings as desired. This may include options such as the accordion style, animation settings, and other customization options.
  4. Create a new accordion by going to the Easy Accordion page in the WordPress admin dashboard, and clicking on the “Add New” button.
  5. Enter a title for the accordion, and add the content for each accordion section using the editor provided.
  6. Publish the accordion by clicking on the “Publish” button.
  7. To display the accordion on your site, you can use the shortcode provided by the plugin, or you can use the Gutenberg block editor to add the accordion block to your page or post.

This is just an example of how to use the Easy Accordion plugin. You may need to consult the plugin’s documentation or support resources for more detailed instructions and information.

Easy Accordion plugin

Read more: How to Choose a hosting provider smartly?

How to get a post title in WordPress?

What is Dovecot Server?

Dovecot is an open-source IMAP and POP3 email server for Linux/UNIX-like frameworks written with security primarily in mind. It is a Mail Delivery Agent. Dovecot is easy to set up and requires almost no memory. It allows users to access their mailboxes using the IMAP interface. If configured correctly, it only interacts with authenticated users.

How to download Anydesk and how to install Anydesk

What is Dovecot Server?

Installing Dovecot Server

To install a basic Dovecot server with common POP3 and IMAP functions, run the following command:

sudo apt install dovecot-imapd dovecot-pop3d

Once the Dovecot is installed, you can enable and start it:

sudo systemctl enable dovecot
sudo systemctl start dovecot

Configuring Dovecot

The main config file of Dovecot is located at /etc/dovecot/dovecot.conf. We will be looking at three main options:

  • listen: This options allows you to set the IP address where you want to listen. You can use an asterik (*) which the wildcard meaning all IPv4 address and for IPv6 addresses you can use (::). To use both it should be like:
listen = *, ::
  • protocols: This option allows you to specify which protocols you would like to support such as POP3, IMAP. LMTP is also listed here as well which stands for Local Mail Transfer Protocol:
protocols = imap, pop3, lmtp
  • mail_location: This option sets from where the mail is picked up. By default, this setiing is empty, which means that Dovecot attempts to locate your mail automatically. The format of the mailbox location specification option is as follows:
mailbox-format : <path> [ : key = <value> … ]

Here you can read How to log in to the Rainloop admin dashboard?

Read More: How to Change Upload limit On CyberPanel?

How to Change Upload limit On CyberPanel?

You can follow us on Facebook too.

How to access MySql root user using the command line?

Often in the case of big databases or lack of user interfaces you need to do MySQL functions using the command line on your server. In this article, we will discuss How to access MySql root users using the command line?

We try to minimize this article as we can.

  1. Login to SSH using your credetial vis putty/bitvise etc.
  2. Now copy this comand and paste on your ssh terminal.
mysql -u root -p

After this terminal will ask for the root MySQL password provide a password to be processed.

In the case of cyberpanel Mysql root password location is. /etc/cyberpanel/mysqlPassword. use cmd to show.

cat /etc/cyberpanel/mysqlPassword

Read: How to connect CyberPanel with CyberPanel Cloud?

Read more: How to create, delete and manage Child Domains in CyberPanel?

Follow US on Facebook / Twitter Instagram .

CyberPanel Features List

This article will discuss the CyberPanel features list. All the features discussed in detail. This CyberPanel features list has all the features CyberPanel has.

CyberPanel Dasboard:

After login, you come to the base page, which is the CyberPanel dashboard. On the dashboard, you can see a sidebar on the left side, in this sidebar you can almost the feature of CyberPanel. In the center of the page you see those feature buttons you can access these feature from the sidebar lists or you can access through these buttons. On the right, you can see the Resources bar here you can see CPU usage, Ram usage, and Disk usage in percentage, how much you used the resources.

compelet cyberpanel features list

This is the all I discuss above are belong to the base/dashboard page of CyberPanel. now I’m discussing the sidebar feature list one by one.

CyberPanel Features List details

Sidebar in CyberPanel Dashboard:

here is the whole sidebar or CyberPanel Dashboard, the Sidebar is divided into three section that is Overview, Main, and Server.

Overview

In the Overview section, there is the general information of your server,
On the Top, you can see the IP address(255.255.255.255) that IP is your server IP address.
The next button is the Dashboard button, after clicking on this button go to the dashboard.
The next button is version management, if you want to know about your CyberPanel version click on this button.
The last button in this section is Connect if you want to connect your server to the CyberPanel Cloud then click on this button

CyberPanel Dasboard:

Read More: How to Change Upload limit On CyberPanel?

Main

On the second section of the CyberPanel dashboard sidebar, you can see a lot of feature dropdown lists,

Users

This first feature is Users when you click on Users a dropdown list shown on your sidebar that has a lot more features.
View Profile, this feature shows your account details e.g Username, Account ACL, Email, etc.
Create New User, if you want to create a new user click on this button.
List Users, if you want to list all users of CyberPanel click on this button the all use show on your screen.
Modify Users, as the name shows, this button is for update/modify your user’s information.
Reseller Center, This feature issue the Reseller account.
Create New ACL, This feature is for Creating a new ACL (Access Control List)
Delete ACL, if you want to Delete ACL (Access Control List) this feature is for deleting.
Modify ACL, if you want to modify or update ACL (Access Control List) click on this.
API Access, Enable or disable via this button.


Main

Websites

On the Section, the whole information about your websites that you are deployed on this server.
Create Website, You can create a new website by clicking on the button
List Website, You can list you all website that are deployed on your this server
List Child Domains, if you want to List all Child domain you can view all by clicking on this button
Modify Website, if you want to update/Modify your website click on this button
Suspend/Unsuspend,
Delete Website, if you want to delete your website click on this button.

Websites

Packages

Packages on CyberPanel help you assign resources to an individual website, you must create at least one package before you start creating websites.
Create Packages, You can create a package according to your requirement.
List Packages, List all Packages.
Delete Package, Delete the packages you won’t need anymore.
Modify Package, If you feel the need to modify the parameters for the existing package you can do so via modify package page.

Packages

Database

On the Database, you can create, delete, list, and access your database
Create Database, if you want to create a new database click on this button
Delete Database, On this button, it will delete the database
List Database, On this button it will list the database after selecting the website
PHPMyAdmin, if you want to access your PHPMyAdmin click on this button.

Database

DNS

On this Button the whole information about DNS(Domain Name Server)
Create Nameserver, You can create a NameServer according to your requirement via this button.
Config Default Nameservers, Configure Nameserver via this Button
Create DNS Zone, Before you can use the “ADD/MODIFY DNS Records” page you have to create a DNS zone first, this is the first step to start using the DNS server.
Delete Zone, Once the DNS zone is created you can delete the zone using this button.
Add/Delete Records, Once the DNS zone is created you can add or delete records using this button.
Cloudflare, In version v2.0.0, CyberPanel has added the ability to synchronize DNS entries between Cloudflare and CyberPanel DNS on your own server

DNS

Email

In this section, you can create, list, delete email, etc,
Create Email,
if you want to create a new email then click on this
List Email, This button is for List all Email created on the website.
Delete Email, if you want to delete Email click on this button
Email Forwarding,
Change Password, if you want to update or change the password of your email click on its button
DKIM Manager, access DKIM manager through this button
Access Webmail, access Webmail(Rainloop) through this button

email

FTP


Create FTP Account, click on this button to create a new FPT account
Delete FTP Account, if you want to delete an FPT account click on this button
List FTP Accounts, This button is for List all FTP account

ftp

Backup

Taking complete backup of a website account is simple.
Create Back up, If you want to create a backup click on this.
Restore Back up, Backup restore only works with backups generated through the backup generation tool in CyberPanel.
Add/Delete Destination, if you want to Add or Delete Back up Destination click on this
Schedule Back up, if you want to schedule your website’s backup then click and produce.
Setup Google Drive, This feature is for Google drive one-click backup
Remote Backups, this feature is for Remote backup

backup

Incremental Back up

CyberPanel version v1.9.1 adds supports for incremental backups,  Local, SFTP, S3 backup
Create/Restore Back up, you can create a local or remote incremental backup.
Add/Remove Destinations, From this button, you can directly go to backup destinations.
Schedule Backups, if you want to schedule your website’s backup then click and produce.
Restore from Remote this feature is for Incremental Remote backup

incbackup

SSL


Manage SSL, If you want to Manage SSL click on this button and manage
Hostname SSL, If you want to issue Hostname SSL you can issue it via this button
MailServer SSL, this button is for Mailserver SSl

ssl

Server

The third and last section of CyberPanel sidebae is server.

Web Terminal:

CyberPanel v1.9.2 onwards has a web terminal (to access your server SSH). However, in some browsers, you might not be able to use Web Terminal with default self-signed SSL. In that case, just set up CyberPanel on SSL. Now access CyberPanel using that domain.

server

Cloudlinux

CloudLinux and CageFS is available with CyberPanel v.1.8.6, but before using any of its features, you need to convert your operating system to CloudLinux OS. Use the commands below to convert your server to CloudLinux OS.
Create Package,
List Packages,
Monitor Usage,

cloudlinux

Containerization

Containerization feature (v1.8.0 and above required, currently only CentOS is supported) offers to limit website resources and have no link to our Docker Manager feature. With containerization you can limit various system resources for a website, groups are used on the back end to enforce these limits. You can limit:

  1. CPU Usage.
  2. Memory Usage.
  3. Network Usage.
  4. Disk Usage (IO and IOPS)
Containerization

Docker Manager

CyberPanel gives you the ability to manage your Docker container and images the easy way. Some of the exciting features of CyberPanel Docker Manager:

  1. Search and pull images from Docker Hub (Along with tags).
  2. Prune the system.
  3. Create Container from available/pulled images.
  4. List and manage container that includes:
    1. Start/Stop Containers.
    2. View Logs.
    3. Export the file.
    4. View Processes inside the container.
    5. Delete Containers.
    6. Re-create containers.


Manage Images,
Manage Containers,
Create New Container,

Containerization

Tuning
LiteSpeed Tuning,
PHP Tuning,

tunning

Server Status

This feature is for check your server status and maintains it.
Top Processes, from this feature you can check Top process.
LiteSpeed Status, from this feature you can LiteSpeed status
CyberPanel Main Log File, from this feature you can check CyberPanel Mail log files
Services Status, from this feature you can check your servers Status
Change Port, if you want to change your port then this feature is for that
Package Manager, from this feature you can access your package manager

status

PHP


Install Extensions, if you want to install extensions e.g. redis etc extension you can install via this option
Eidt PHP Configes if you want to change or configure your PHP version or anything else then you can change from this option

php

Logs

This is main featuer of CyberPanel. if you want see your server log you can watch from the option you can see:
Server Mail,
Access Log,
Error Logs,
Email Log,
FTP Logs,
ModSec Audit Logs,

logs

Security

This feature is for your server security. there is a lot of more feature in this.
Firewall, you can stop, start, reload, and add/delete firewall through his option
Secure SSH, Securing SSH is one of the most important tasks of a system administrator. CyberPanel allows you to change SSH port, disable root login and save your SSH keys.
ModSecurity Conf, this feature is for ModSecurity configuration.
The ModSecurity Rules, if you want to add/remove update or anything else with ModSecurity Rule you can from this option
For the ModSecurity Rules Packs, you can check the ModSecurity Rule pack from this option.
CSF, You can configure CSF(ConfigServer Security & Firewall) from this button
CageFS, you can enable/disable CageFS from this button
Immunity 360, you can enable/disable Imunify 360 from this.
ImunifyAV, you can enable/disable ImunifyAV from this.

security

Mail Settings

This feature is related to your emails.
Mail Queue, If you want to see your mail Queue(pending mails) you can see.
Email Policy Server, this feature s for Email policy.
Email Limits, this feature is for email limits
SpamAssassin, you can Install SpamAssassin through this feature.
Email Marketing, this feature is for Email Marketing
MailScanner, If you want to install or remove MailScanner you can from this feature.

mail

Manage Services

This feature is related to your server Service and application that you can install and check status.
Applications, you can install and uninstall applications from this feature.
Manage PowerDNS, PowerDNS is the service you can check this form this option
And Manage Postfix, you can check postfix service form this option
Manage FTP, you can check FTP form this option

manage

Plugins

You can install new plugin and uninstall installed plugin from this feature.

plugin

This are the main CyberPanel features list.

Here you can read How to log in to the Rainloop admin dashboard?

Read More: How to Change Upload limit On CyberPanel?

How to Change Upload limit On CyberPanel?

You can follow us on Facebook too.

How to Access Rainloop Webmail in CyberPanel?

A lot of CyberPanel user uses Rainloop to handle their email. Rainloop is an internal email solution with CyberPanel. Here in this article, we will discuss how you can access Rainloop webmail in CyberPanel?

Rainloop is an efficient memory webmail solution. it is a fast, simple, and modern web-based client email client. Rainloop is the email solution that comes with CyberPanel. It has an amazing user interface. Not only the interface also works great as any other email services.

This article is specifically about access rain loop webmail in CyberPanel.

Follow these steps Access Rainloop Webmail in CyberPanel:

Login you CyberPanel:

First of all, you need to log in to the CyberPanel dashboard. For this, you must have a username and password (admin or non-admin). Visit your the server IP or hostname with port 8090 to login to cyberpanel.

https://<ip/hostname>:8090
CyberPanel Login

2. Create and Email to Login:

Here you can read How to create email account. After creating mail keep these records so you can use to login.

3. Access WebMail:

To access webmail simple go to the Email->Access WebMail. you will be redirected to the link:

https://<IP/Hostname>:8090/rainloop/index.php

provide your email and password to login.

How to Access Rainloop Webmail in CyberPanel?
How to Access Rainloop Webmail in CyberPanel?

4. Rainloop Admin settings:

if you want to change Language, Layout, Default Text Editor, Message on Page, Notifications, etc settings. Login into rainloop admin dashboard and change there.

Here you can read How to log in to the Rainloop admin dashboard?

Read More: How to Change Upload limit On CyberPanel?

How to Change Upload limit On CyberPanel?

How to remove MailScanner from Cyberpanel?

How to remove MailScanner from Cyberpanel?

Maybe you have installed MailScanner on your server from CyberPanel, And you want to remove it for some reason. In this article, we are going to show how to remove MailScanner from CyberPanel?.

What is MailScanner?

MailScanner is an open-source email security system. it designed for a Linux-based email gateway. The purpose of MailScanner is to scans email for viruses, spam, phishing, malware, and other attacks against security vulnerabilities.

Follow the procedure to remove MailScanner form CyberPanel:

1. Download MailScanner uninstaller script form GitHub

Frist you need to download uninstaller form GitHub . Run this command on CLI it will download MailScanner uninstaller

wget https://raw.githubusercontent.com/usmannasir/cyberpanel/stable/CPScripts/mailscanneruninstaller.sh
How to remove MailScanner from Cyberpanel?
Download MailScanner uninstaller script form GitHub

2. Set the execute permission

After download uninstaller you need to set execute permission to MailScanner uninstaller by running this command on CLI

chmod +x mailscanneruninstaller.sh

3. Uninstall the MailScanner

Once you downloaded MailScanner uninstaller and set the execute permissions then run the command to uninstall Mailscanner.

./mailscanneruninstaller.sh

After this the Mail Scanner is successfully removed form CyberPanel.

Read more: How to create, delete and manage Child Domains in CyberPanel?

How to fix Fix WordPress 404 permalink OpenLiteSpeed- 404 error on OpenLiteSpeed

Best 4 Famous Travel Insurance Companies UK and Explain

4 Well-known travel insurance companies with clarifications United Kingdom is one of the main companies to provide travel coverage in United Kingdom.

Well-known travel insurance companies have a lot of experience and understanding of the risks involved when traveling to the United Kingdom.
The insurance cover collected by the renowned travel insurance company in the United Kingdom comes with a range of benefits that suit all types of trips. Renowned travel insurance companies take care of your needs, whether it is traveling to London or traveling in the Scottish Highlands.
Many peoples search on google for a term of best travel insurance UK, travelers insurance UK and travel insurance providers UK, etc. for their Travel enjoyment.

Renowned travel insurance companies United Kingdom takes care of your travel and makes sure that even if you are in an accident, you are safe. Well-known travel insurance companies can check your passport status, travel expenses, and departments of all your expenses for your trip to the United Kingdom. Well-known travel insurance companies United Kingdom can make you last without any problem by insuring you for personal responsibility and the insurance to cover delayed baggage, theft or loss or loss of baggage.
Well-known travel insurance companies in the United Kingdom offer many benefits such as cancellation coverage, travel interruption coverage, emergency assistance, flight and fire insurance, and insurance. Fire. Famous UK travel insurance companies also offer various discounts and benefits for the guests.

Best 4 Famous Travel Insurance Companies UK and Explain:
1. Stay Sure:
Well-known travel insurance companies have a variety of travel insurance policies that are designed to protect you from many unforeseen problems that may strike out while traveling abroad. These insurances can ruin your vacation plans with a sudden illness, flying, or anything from your belongings or personal property. Some well-known travel insurance companies offer you an opportunity to tailor your policy to your individual needs and requirements so that you can enjoy your vacation.

Well-known travel insurance companies also offer discounts and special offers on different types of insurance, such as British health insurance, which can help you reduce the cost of your travel insurance. If you want to take advantage of these special offers, simply visit the renowned travel insurance company in the UK and apply for your insurance today.
2. Admiral Platinum:
Admiral Platinum is a provider of travel insurance specialists for the traveler who is particularly concerned about protection against claims. In terms of specific products, Admiral Platinum offers a variety of blankets including civil liability insurance, business travel insurance, European travel insurance, and general travel insurance. Admiral Platinum also offers a wide range of specialized travel insurance policies such as Cover of Cases, Liability Insurance, Consolidated Civil Liability Insurance, European Travel Health Insurance, and Insurance of Travel and Lighters.
All of these products are designed to provide total coverage in times of financial crisis and are consistently supported by a strong network of fully insured seventy-five insurance companies in the United Kingdom. For those who need insurance for a particular trip, are unable to find insurance based on their need, well-known travel insurance companies United Kingdom can help.
3. Saga:

Saga the renowned travel insurance company in United Kingdom is known for providing travel insurance, which covers every corner of the world. This means that the famous travel insurance companies of the saga can provide a blanket for your business trips, vacations, cruises, a honeymoon, and even travel in your family. �
This means that the renowned travel insurance companies of the saga can provide you with the best coverage and service and they are committed to working with their customers to ensure that they provide the best protection for the customers. If you are ready to take the journey of life and want to know that your valuable assets will be well covered and protected, therefore well-known travel insurance companies in the UK are the insurance company you are looking for.
4. The AA Gold:
AA is very successful in helping travelers set up a tight travel plan that will allow them to enjoy their journey. AA offers discounts, newsletters, and tips on travel problems. Since trips can be expensive, it is important to obtain valuable information. Travelers who are serious about enjoying their travels may want to work with an AA special agent.
Conclusion:
Like other well-known international travel insurance companies, well-known travel insurance companies have a strong reputation with the British British financial market. With the help of financial experts, they can devise a policy that matches the exact needs of a traveler. To get optimum insurance coverage, it is strongly recommended that customers make their final decision personally. If you decide to buy a policy via the Internet, well-known travel insurance companies in the United Kingdom will provide free online quotes, which can give you a general idea of what your policy will cover and what it will cost.