Wednesday, July 3, 2024

raspberry pi 7 inch display notes (pimoroni version)

7 inch display notes

this cleaned up the 3" display mess

sudo apt-get update
sudo apt-get install --reinstall libraspberrypi0 libraspberrypi-{bin,dev,doc} raspberrypi-bootloader
sudo reboot

install (or use) raspi-config to set console login
apt-get raspi-config installs if missing.

--30--

Tuesday, July 2, 2024

raspberry pi camera

 
motion testing, video device test tools


libcamera-hello --list-cameras
sudo v4l2-ctl --list-devices
vcgencmd get_camera



--30--

Sunday, June 30, 2024

fix firefox display problem on Raspberry pi OS via xrdp remote

 
change the following 

Option 2)
By default Xrdp uses the /etc/ssl/private/ssl-cert-snakeoil.key file that is readable only by members of the “ssl-cert” group. Run the following command to add the xrdp user to the group :

Code: Select all

sudo adduser xrdp ssl-cert

Code: Select all

sudo nano /etc/X11/xrdp/xorg.conf
And find the line Option DRMDevice line and change it to
Option "DRMDevice" ""
reboot raspberry pi

reference

--30--

Friday, May 3, 2024

update pidp11 raspberrypi lite os to have gui / desktop

 

  apt update
  apt upgrade
  apt -y install xserver-xorg
  apt -y install raspberrypi-ui-mods
  apt -y install lightdm


--30--

Friday, April 12, 2024

firefox w/o snap ubuntu 22

Snap sucks.  Firefox under snap sucks worse.  

Blocks access via links to local storage, which might seem useful, but is poorly executed with the snap solution.  

When updates are due, locks up firefox and forces a restart at the convenience of the update.  Again seldom happens at a good time.

Rather than install a down rev of ubuntu, the build with a deb install is available, no snap.

 
--30--


Thursday, April 4, 2024

gnome vnc server enable disable, replace

 
vino-server
vnc server for older ubuntu gnome



1) Disable Vino:

       $> gconftool-2 -s /desktop/gnome/remote_access/enabled -t bool false

  2) Kill the running server:

      $> killall vino-server

  3) Run vino-server from the command line - e.g. in gdb:

       $> gdb /usr/libexec/vino-server

  4) Enable Vino again:

       $> gconftool-2 -s /desktop/gnome/remote_access/enabled -t bool true

vino documents


--30--