On attempted installation of Webmin on Ubuntu 18.04 server, receiving the following: webmin: Depends: libauthen-pam-perl but it is not installableDepends: apt-show-versions but it is not installableE: Unable to correct problems, you have held broken packages. Resolution: On ubuntu 18.04.1 the universe and multiverse repositories are disabled by default to enable do:sudo add-apt-repository universesudo add-apt-repository multiverse Now you …
Month: May 2019
Stop windows 10 update from restarting computer
In the run dialog box (winkey + R) type “gpedit.msc” (without quotations), hit enter Navigate to Computer Configuration/Administrative Templates/Windows Components/Windows Update Double click on “No auto-restart with logged on users for scheduled automatic updates installations” Enable it and click apply
mysql – Select distinct pairs
mysql does not support multiple columns for select distinct(), so this works with a table I have that has width and height columns: SELECT width,height FROM orders GROUP BY CONCAT(width, height)