Mount JFFS2 Image
Saturday, October 25, 2008
Example of how to mount a JFFS2 image using mtdblock.
Fast, fat computers breed slow, lazy programmers.
- Robert Hummel
Sync System Time With a Time Server
Saturday, July 17, 2004 by digitalpeer
If you want to sync your system and BIOS time with a time server, I often find putting something like this in a crontab file and syncing once a week or month seems to do the trick.
#!/bin/bash
if rdate -s time.nrc.ca; then
/sbin/hwclock --systohc
fi