hexo/source/_posts/CentOS系统时间和时区查看以及修改的方法.md

53 lines
1.2 KiB
Markdown
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: CentOS系统时间和时区查看以及修改的方法
tags:
- centos
- VPS
excerpt: >-
ai:
这篇文章介绍了如何在远程或直接登录到CentOS系统时修改系统的时间和时区。首先文章指导如何查看当前系统时间并展示了通过命令行设置特定日期和时间的步骤。接着文章解释了如何查看和修改系统的时区包括将时区设置为Asia/Shanghai并确认修改。最后文章说明了如何查看更新后的时区和时间设置。
categories: 分享
abbrlink: 8952
date: 2016-11-14 13:38:48
---
一、时间修改 远程连接到centos 或者直接登录系统
```
date 
```
查看系统时间
```
date -s 
```
修改时间 看下面的例子
```
date -s  03/04/2013
```
将系统日期设定为2013年03月04日
```
date -s  110:38
```
将系统时间设定为上午 10:38
二、时区修改
先查看时区
```
date -R  
```
修改时区: 将Asia/shanghai-上海时区写入当前时区)
```
cp -f /usr/share/zoneinfo/Asia/Shanghai     /etc/localtime
```
提示是否覆盖,输入Y回车, 然后
```
date
```
查看时区和时间CST,中国时区)