Recent update in Kali linux is having one problem with the auto suspend operation. Even the power settings are perfect (Automatic suspend = Off), the computer sleeps every 20 minutes. Steps to perform to disable auto sleep: Search for below parameters, uncomment if commented. Set the value to 0. Once done, run below command to… Continue reading Prevent GNOME auto sleep
Category: Unix & Linux
The post under this category will be related to unix and linux operating system.
AWK commands equivalent to SQL query – Data manipulation
Introduction Data Warehouse and Business Intelligence involves all about data handling for business insights, we often very much rely on the SQL query to do data analysis and analytics. We can achieve the same through some BI tools as well. But if we are comfortable with SQL then I am sure that you will prefer… Continue reading AWK commands equivalent to SQL query – Data manipulation
Class mysqli not found error after upgrading to php 7.3
The problem seems to be related to the fact that after PHP 7.2 or PHP 7.3 is installed, the version of PHP 7.0 still continues to be used. And in spite of the fact that extensions, for example such as php7.0-mysql, do not disappear from the system, but they cease to be picked up by the PHP… Continue reading Class mysqli not found error after upgrading to php 7.3
Activate remote desktop in linux
Install xrdp by below command: apt-get install xrdp once done, start xrdp service by below command: service xrdp start Connect to the RDP. if you want to run xrdp service at startup, please enter below command: update-rc.d xrdp enable Please comment if you face any difficulties.