Uninstall Snap Packages from Ubuntu and Other Linux Distros
To remove a snap package, use the command in the following fashion: sudo snap remove package_name But what if you don’t like Snap and want to delete not just the…
To remove a snap package, use the command in the following fashion: sudo snap remove package_name But what if you don’t like Snap and want to delete not just the…
who -u that give you the PID Then you can kill the user session. kill "pid"
To install RDP (Remote Desktop Protocol) on Linux, you’ll typically install xrdp, an open-source implementation of the RDP server, and configure it with a desktop environment. After installation, you’ll need…
Message: The each() function is deprecated. This message will be suppressed on further calls Since php version 7.2 the each() function is deprecated Find all while loop with each() function…
Edit file config.php in Application-Config-config.php, change function __autoload_register** to <?php if ( ! defined(‘BASEPATH’)) exit(‘No direct script access allowed’); // untuk auto load folder library spl_autoload_register(function($classname) { if (strpos($classname, ‘CI_’)…
Change WordPress URL MySQL To change a WordPress URL in a MySQL database using phpMyAdmin, you can use SQL queries to update the relevant fields. The most common approach is…
mply change or reset your MySQL root password by doing the following: Stop the MySQL server sudo service mysql stop Start mysqld sudo mysqld --skip-grant-tables & Login to MySQL as…
To see list of saved connections, use (<SavedWiFiConn>) nmcli c To see list of available WiFi hotspots (<WiFiSSID>) nmcli d wifi list or: sudo iwlist <WifiInterface> scanning To see list…
The error message “Cannot connect to the Docker daemon at unix:/var/run/docker.sock. Is the docker daemon running?” typically occurs when the Docker client is unable to connect to the Docker daemon,…
To disable automatic suspend when closing the laptop lid in Linux, you’ll need to modify the /etc/systemd/logind.conf file. Specifically, you’ll change the HandleLidSwitch setting from suspend to either ignore (for…