What's new

How to check Merlin installed version?

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

Bieniu

Occasional Visitor
How can I check with nvram get (or otherwise from a shell/script) which version of Merlin is installed? I mean a string like 386.7_2.
 
How can I check with nvram get (or otherwise from a shell/script) which version of Merlin is installed? I mean a string like 386.7_2.
I use

Bash:
BUILDNO=$(nvram get buildno)    # Major
BUILDNO=${BUILDNO}_$(nvram get extendno)   # Minor
 
Or look at the top of the web gui
1667506966534.png
 
hmpf, for me is:
Code:
nvram get buildno
386.9 and
Code:
nvram get extendno
is the output 0.
 

Latest threads

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top