Welcome to W3Space Blog

Step-by-Step Tutorials

Apache vs. Nginx vs. LiteSpeed: Unraveling the Differences

In the world of web servers, Apache, Nginx, and LiteSpeed stand out as three of the most popular and widely used options. Each has its unique features, performance characteristics, and configuration options, making the choice between them a critical decision for web developers and administrators. This article delves into the nuances of these web servers,… read more »

 121 total views

Configuring CentOS 7 Boot Order: Managing System Startup Preferences

To ensure your CentOS 7 system boots up with the desired configuration, you can manipulate the boot order settings using the following steps: Check the Current Boot Order: To determine the current boot order configuration, execute the command: grub2-editenv list The output will display the saved_entry value, which represents the default boot entry. For example:… read more »

 1,282 total views

Install a Specific or older Version of cPanel & WHM

Introduction: In certain cases, you may need to install a specific version of cPanel & WHM on your server. While it is generally recommended to have the most up-to-date version, there are situations where installing a particular version is necessary. Please note that we advise installing only the cPanel versions listed in the provided tiers…. read more »

 2,263 total views

Benchmark VPS/Dedicated Server with a single command – VPS performance test ssh

Run either command on your VPS. Script 1 curl -sL yabs.sh | bash Or wget -qO- yabs.sh | bash Script 2 wget -qO- bench.sh | bash Or curl -Lso- bench.sh | bash Script 3 wget freevps.us/downloads/bench.sh && bash bench.sh -io && rm -f bench.sh* VPS CPU BenchMark test wget https://vhwinfo.com/vhwinfo.sh & sh vhwinfo.sh  1,213 total views

 1,213 total views

Convert Excel Files to CSV – Windows Script

Instructions Copy both files into the directory containing the files you want converted Run excel-to-csv.bat Note: This script requires Excel to be installed. excel-to-csv.bat FOR /f “delims=“ %%i IN (‘DIR *.xls* /b’) DO to-csv.vbs “%%i“ “%%i.csv“ to-csv.vbs if WScript.Arguments.Count < 2 Then WScript.Echo “Please specify the source and the destination files. Usage: ExcelToCsv <xls/xlsx source file>… read more »

 1,351 total views

How to Search for Files and Folders Recursively via SSH

You need to use the following command to search for a file called FileName.txt under the current folder including all subfolders find ./ -type f -exec grep -l “text to find” {} \; find . -name FileName.txt If you are unclear about the file name or want to match a part of the file name,… read more »

 3,469 total views

XRDP – Install XRDP RDP on Ubuntu – Easiest way

sudo apt-get install xrdp sudo apt-get update sudo apt-get install mate-core mate-desktop-environment mate-notification-daemon sudo sed -i.bak ‘/fi/a #xrdp multiple users configuration \n mate-session \n’ /etc/xrdp/startwm.sh  2,770 total views

 2,770 total views

Sidebar