-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A few remarks for gnuplot in SSH #16
Comments
thank you for suggestions. yes maybe i remove the gnuplot option entirely or comment out its installation, because if you use the lite version of RaspiOS the installation of the full gnuplot installes alot X stuff you normally don't want on a lite version. is gnuplot-nox much more lightweight ? |
Thanks for your reply. It's a totally viable option IMHO. Here's the install transcript. Sorry it's in French... I would suggest to leave gnuplot, it is a very nice and lightweight option and matches very well with the rest of your code.
|
- added alternative for console / non-desktop, suggested by @Lefuneste83 in #16
I wanted to thank you for this excellent recipe. It is very well packaged and it performs very well. I have tried a good dozen of such tutorials and this is the best one I have found.
Just a few remarks concerning gnuplot. As this Chrony server is mostly intended to run on a headless machine, you may find yourself struggling a bit to run gnuplot. At least this is what I had to do to run it on my Rpi 4.
apt install gnuplot-nox --> This will install required fonts for terminal rendering of the graph. You may add it to your list of packages in the installation script.
Then when running the gnuplot command you must tell it what terminal to use in the absence of any Desktop environment. I have managed to do the following :
gnuplot -e "set terminal dumb" /path/to/script/99-calibrate-offset-gps0.gnuplot
Note that there may be other options available in terminal mode, I haven't been digging the subject enough....
Then it all works with beautiful retrogaming graphs !!
The text was updated successfully, but these errors were encountered: