Backup your CMOS from Linux
I just had to backup a remote CMOS from a remote server to a local machine. How do you do this, without going to the datacenter?
Backup
modprobe nvram
cat /dev/nvram > /etc/nvram.conf
Restore
modprobe nvram
cat /etc/nvram.conf > /dev/nvram

