Friday, February 23, 2024

Raspberry Pi cpu temp measurement and widget for desktop.

 raspberry pi temperature monitoring

add to menu bar.


also one time reading from command line w/o gui widget.

vcgencmd measure_temp



--30--

Wednesday, February 14, 2024

install apache2 on fedora


sudo dnf group install "Web Server"

alternative:

sudo dnf install httpd

sudo firewall-cmd --add-service=http --add-service=https --permanent
sudo firewall-cmd --reload
sudo firewall-cmd --add-service=http --add-service=https


 

--30--