linux 虚拟机无法修改时间解决方法

1. 当在linux下虚拟机修改时间无效时,我们就强制让他生效!
 
cd   /proc/sys/xen
echo 1 > independent_wallclock
[root@sh232-xen xen]# cat independent_wallclock
1
[root@sh232-xen xen]#
然后再用 date -s进行修改即可!
2. 如果linux时区出现错误 按照以下修改
[root@sh232-xen ~]# cp -r /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
进行硬件同步
hwclock -systohc  或 hwclock -w
然后再 date -s 即可!
另外需要注意这里时区要正确:
[root@sh232-xen bin]# cat /etc/sysconfig/clock
# The ZONE parameter is only evaluated by system-config-date.
# The timezone of the system is defined by the contents of /etc/localtime.
ZONE="Asia/Shanghai"
UTC=true
ARC=false
[root@sh232-xen bin]#

你可能感兴趣的:(linux 虚拟机无法修改时间解决方法)