/bin/rm: Argument list too long
If you have too many files to remove, try this trick: find . -name ‘*’ | xargs rm -v
If you have too many files to remove, try this trick: find . -name ‘*’ | xargs rm -v
Essential IT Support Commands Every Beginner Should Know: – Starting out in IT Support can feel like you’re suddenly responsible for saving the entire planet… one slow PC and one angry “why is the WiFi down?” employee at a time. But here’s the good news: most of the daily chaos and problems can be handled…
The warning “Unable to determine the TCP port number used by Microsoft SQL server ‘.\MSSQLSERVER2016′” indicates that the SQL Server instance is either not configured to use TCP/IP, or it is configured to use dynamic TCP ports. To resolve this and enable automatic firewall configuration for remote access, the SQL Server instance needs to be…
Retrieving the current Plesk administrator password depends on the operating system and Plesk version. For Windows servers: Connect to the server via Remote Desktop. Open Command Prompt: From the Start menu, select “Run…” and type cmd. Navigate to the Plesk bin directory: Code cd “C:\Program Files (x86)\Plesk\admin\bin” (Note: The path might vary slightly depending on…
Symptoms After removing emails from the email accounts, the disk usage for the email accounts in the “Email Accounts” section is not updated or accurate. Description The Email address shows incorrect disk space usage due to the maildirsize file for the email accounts not being updated. Workaround Please note that “CPUSER” in the following examples…
yum install ea-php81-php-common-8.1.31-2.2.1.cpanel.x86_64 yum install ea-php82-php-fileinfo-8.2.27-1.1.3.cpanel.x86_64
DELETE FROM wp_posts WHERE post_status = ‘trash’; # delete all posts in trash, draft posts and post revisions wp post delete $(wp post list –post_status=trash –format=ids) wp post delete $(wp post list –post_status=draft –format=ids) wp post delete $(wp post list –post_type=’revision’ –format=ids) wp post delete $(wp post list –post_type=post –cat=8 –format=ids –year=2016) Purging Cache In…
Way to the Web Ltd and Configserver.com has closed down permanently on 31 August 2025. ConfigServer Security & Firewall (CSF) is an iptables-based firewall that provides high-level security to the Linux system. CSF includes a wide range of features, such as IP blocking, port blocking, and DoS protection. It also supports advanced security measures, such as rate…
Find and replace text within a file using sed command The procedure to change the text in files under Linux/Unix using sed: Use Stream EDitor (sed) as follows: sed -i ‘s/old-text/new-text/g’ input.txt It tells sed to find all occurrences of ‘old-text‘ and replace with ‘new-text‘ in a file named input.txt The s is the substitute…
Introduction When testing your Node.js application, it is useful to be able to start the application from the command-line. By default, cPanel does not add Node.js to your $PATH. The following will walk you through adding it You may receive the following output when attempting to use Node after installation, or after you install a…