How to set date/time permanently on Centos/RH/Fedora

First you need to ssh to the server and be root and then do these step by step:

1. Set the date/time following instructions at http://www.cyberciti.biz/faq/howto-set-date-time-from-linux-command-prompt/
# date -s "2 OCT 2006 18:00:00"

2. Set the proper Timezone for your area, see http://www.cyberciti.biz/faq/howto-linux-unix-change-setup-timezone-tz-variable/
# cd /etc
ln -sf /usr/share/zoneinfo/EST localtime

3. Set it to the BIOS for permanent stamp, see http://linux.about.com/library/cmd/blcmdl8_hwclock.htm
# /sbin/hwclock --systohc

Cette réponse était-elle pertinente?

 Imprimer cet article

Consultez aussi

Why my drive is slow

First, check to make sure write cache is enabled. On Centos, you type hdparm -I /dev/sda Then...

How to update cpanel license key

First, ssh to your server as root and just type /usr/local/cpanel/cpkeyclt

How to create KVM template

Creating KVM Templates Overview From version 1.13.00 a script is supplied on...

How to restore all data from old drive to a new drive on a cpanel server

You basically ssh to server as root and look for your old/original drive via command fdisk -l...

How to change hostname of a server

Simply ssh as root and type hostname s1.boxintense.com Then to make it permanent, modify this...