Other

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 »

 214 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 »

 286 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  241 total views

 241 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 »

 514 total views,  3 views today

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 »

 2,371 total views,  6 views today

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,101 total views

 2,101 total views

Add Windows ISO Templates for Virtualizor KVM

Download any of client OS template to the location in Node ( /var/virtualizor/Xen or KVM according to the virtualization). http://mirror.softaculous.com/virtualizor/templates/windows-2003-x86.img.gz http://mirror.softaculous.com/virtualizor/templates/windows_2003R264.img.gz http://mirror.softaculous.com/virtualizor/templates/windows-2008r2.img.gz http://mirror.softaculous.com/virtualizor/templates/windows-2012server.img.gz http://mirror.softaculous.com/virtualizor/templates/windows-2012r2.img.gz http://mirror.softaculous.com/virtualizor/templates/windows-2016.img.gz For example: cd /var/virtualizor/kvm wget http://mirror.softaculous.com/virtualizor/templates/windows-2016.img.gz   Then to extract template run : gunzip TEMPLATE_NAME For example: gunzip windows-2016.img.gz   Then add the template using below link : http://www.virtualizor.com/wiki/Add_OS_Template  3,222 total… read more »

 3,222 total views

Mount a Disk and make partitions mount at startup?

mkfs.ext4 /dev/sda mount /dev/sda /backup sudo cp /etc/fstab /etc/fstab.old – Create a backup of the fstab file just in case something unwanted happens. If something happens, you will need a bootable (live) usb. If you do not have one, use the GUI method instead. sudo blkid – Note the UUID of the partition you want to automount…. read more »

 2,404 total views

Sidebar