For ham radio field day, I have a GPS dongle that I want to use to set my Linux laptop’s system time when I’m in the outback, where there’s no Internet access.
How do you set the system clock time in Rust?
PS: I checked crates.io but nothing stood out to me as a solution.
Since this looks less of a "I want to write a solid library" and more like a "hack it together" kind of thing, a few options, some hacky:
You could just shell out to coreutils'
date
:Playground
(See comments about accuracy!)
You could run
date
withstrace
and see that it uses theclock_settime
syscall. Usually, you can find a safe and nicely typed wrapped version of that syscall in thenix
crate. If you can't find it, checklibc
.There is a rust reimplementation of coreutils (turns up in a search too), you could check what that does.
All of these of course require the appropriate permission, of course, either being root or having a capability set.
Side note: I wholeheartedly agree with @n0rd's comment. I don't know how you're reading from your gps dongle, but if it's already gpsd there's no point, and if it's some lower-level method, I assume you'll run into fun problems (Week number rollover comes to mind).