So to reset the root password, you still start mySQL with --skip-grant-tables options and update the user table, but how you do it has changed. 1. Stop mysql: systemctl stop mysqld 2. Set the mySQL environment option systemctl set-environment MYSQLD_OPTS="--skip-grant-tables" 3. Start mysql usig the options you just set systemctl start mysqld 4. Login as...
You have multiple forms to reconnect to the same session through xrdp. I have explained two of them. 1. Is based on implementing a custom installation and uses the X11VNC software. This one is working well but requires a little bit more effort. 2. Use the xrdp package from tweak...
As of Ubuntu 11, there is no longer a ia32-libs ensemble. Because of this, old x64 packages will stop to be available on their site. TeamViewer has since removed the x64-only download, and they only offer the i386 version. To install TeamViewer now, it's as simple as visiting the official download...
On a debug site I would recommend uncommenting the following lines in theĀ fileĀ settings.php. nano sites/default/settings.php if (file_exists(__DIR__ . '/settings.local.php')) { include __DIR__ . '/settings.local.php'; } In addition to adding the next setting: $config = 'verbose'; It also adds a few other settings which will help you in debugging and making development easier. If you don't want...