--30--
--30--
https://linuxize.com/post/how-to-set-or-change-timezone-on-ubuntu-18-04/
--30--
hostnamectlsudo hostnamectl set-hostname <newname>https://linuxize.com/post/how-to-change-hostname-on-ubuntu-18-04/
--30--
There is a command which is part of Imagemagick which included Gimp to consolidate and create images into other files, in particular PDF files.
Initially Imagemagick installed a policy file, but recent changes tightened access rules for a number of formats which are actually essentially programming languages. This is true of postscript and PDF files.
The following will enable the writing of PDF files again for use by convert. The reason to disable it is it is potentially a vector into compiling programs with file write privileges and was blocked as a precaution.
Find the line below and change "none" to "read/write"
Source of information:
https://cromwell-intl.com/open-source/pdf-not-authorized.html
/etc/ImageMagick-6/policy.xml should contain:
<policy domain="coder" rights="none" pattern="PDF" />
--30--
Looks like ubuntu has fouled up the capability to do pgp analysis on keys from repositories because on the 16.06 they have obsoleted the code to do the verification.
https://www.omgubuntu.co.uk/2017/08/fix-google-gpg-key-linux-repository-error
--30--
https://www.raspberrypi.org/forums/viewtopic.php?t=244001
Code: Select all
xset s off
xset -dpms
Code: Select all
sudo vi /etc/xdg/lxsession/LXDE-pi/autostart
--30--
Example and more details
how-to-install-mysql-database-on-raspberry-pi
--30--