Posts

Reset Rearm maximum limit hit

HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/WindowsNT/CurrentVersion/SoftwareProtectionPlatform 2:  Click on the arrow mark present along with “ HKEY_LOCAL_MACHINE ”. 3:  Click on the arrow mark present along with “ SOFTWARE ”. 4:  Click on the arrow mark present along with “ Microsoft ”. 5:  Click on the arrow mark present along with “ Windows NT ”. 6:  Click on the arrow mark present along with “ CurrentVersion ”. 7:  After it, you have to click on the word “ SoftwareProtectionPlatform ” 8:  Now, right-click on the “ SkipRearm ” present in the right window. 9:  Click on the “ Modify ” and here change the “ Value Data ” to “ 1 ”. 10:  At last, reboot your computer.

Install PhpVirtualbox with virtualbox 6.1 on Ubuntu Desktop 20.04

Image
sudo -i Install Virtualbox wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add - wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add - apt-get update apt-get install virtualbox Optional extension pack for virtual box wget https://download.virtualbox.org/virtualbox/6.1.12/Oracle_VM_VirtualBox_Extension_Pack-6.1.12.vbox-extpack VBoxManage extpack install Oracle_VM_VirtualBox_Extension_Pack-6.1.12.vbox-extpack Install  vboxweb-service  cd /etc/init.d/ services=(vboxautostart-service vboxweb-service vboxballoonctrl-service) base_url="https://www.virtualbox.org/svn/vbox/trunk/src/VBox/Installer/linux" for service in "${services[@]}"     do       wget "${base_url}/${service}".sh -O "${service}" \       && chmod +x "$service"  \       && update-rc.d "$service" defaults 90 10     done Install  Apache and PHP sudo apt install apac...