1,修改时区

tzselect
执行tzselect命令-->选择Asia-->选择China-->选择east China - Beijing, Guangdong, Shanghai, etc-->然后输入1

选择(5)Asia时区
Please identify a location so that time zone rules can be set correctly.
Please select a continent or ocean.
 1) Africa
 2) Americas
 3) Antarctica
 4) Arctic Ocean
 5) Asia
 6) Atlantic Ocean
 7) Australia
 8) Europe
 9) Indian Ocean
10) Pacific Ocean
11) none - I want to specify the time zone using the Posix TZ format.
#? 5

选择国家(9)China
Please select a country.
 1) Afghanistan          18) Israel            35) Palestine
 2) Armenia          19) Japan            36) Philippines
 3) Azerbaijan          20) Jordan            37) Qatar
 4) Bahrain          21) Kazakhstan        38) Russia
 5) Bangladesh          22) Korea (North)        39) Saudi Arabia
 6) Bhutan          23) Korea (South)        40) Singapore
 7) Brunei          24) Kuwait            41) Sri Lanka
 8) Cambodia          25) Kyrgyzstan        42) Syria
 9) China          26) Laos            43) Taiwan
10) Cyprus          27) Lebanon            44) Tajikistan
11) East Timor          28) Macau            45) Thailand
12) Georgia          29) Malaysia            46) Turkmenistan
13) Hong Kong          30) Mongolia            47) United Arab Emirates
14) India          31) Myanmar (Burma)        48) Uzbekistan
15) Indonesia          32) Nepal            49) Vietnam
16) Iran          33) Oman            50) Yemen
17) Iraq          34) Pakistan
#? 9

选择(1)Shanghai当前时区
Please select one of the following time zone regions.
1) east China - Beijing, Guangdong, Shanghai, etc.
2) Heilongjiang (except Mohe), Jilin
3) central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc.
4) most of Tibet & Xinjiang
5) west Tibet & Xinjiang
#? 1

保存(1)Yes 时区
The following information has been given:

China
    east China - Beijing, Guangdong, Shanghai, etc.

Therefore TZ='Asia/Shanghai' will be used.
Local time is now:    Wed May  4 14:29:25 CST 2016.
Universal Time is now:    Wed May  4 06:29:25 UTC 2016.
Is the above information OK?
1) Yes
2) No
#? 1

执行完tzselect命令选择时区后,时区并没有更改,只是在命令最后提示你可以执行
TZ='Asia/Shanghai'; export TZ

修改时区配置文件
vi /etc/sysconfig/clock
ZONE="Asia/Shanghai"

链接到上海时区
rm -rf /etc/localtime
ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
/usr/share/zoneinfo/Europe/London

查看时区已经更改
cat /etc/sysconfig/clock
The time zone of the system is defined by the contents of /etc/localtime.
This file is only for evaluation by system-config-date, do not rely on its
contents elsewhere.
ZONE="Asia/Shanghai"

ntp服务器联网同步

美国时间同步服务器   ntpdate time.nist.gov

中国国家授时中心       ntpdate 210.72.145.44

NTP服务器(上海)         ntpdate ntp.api.bz

复旦                                ntpdate ntp.fudan.edu.cn

微软公司授时主机(美国)   ntpdate time.windows.com

台警大授时中心(台湾)       ntpdate asia.pool.ntp.org

如果提示报错no server suitable for synchronization found

解决方法添加-u参数可以越过防火墙与主机同步

比如 ntpdate -u 210.72.145.44

date  时间查看

重启服务器测试更改结果
reboot 或者 init6

2, 部署samba

查看是否安装samba
rpm -qa | grep samba
+++++++++++++++++++++++++++++++++++++++++++++
samba-3.6.23-35.el6_8.x86_64
samba-winbind-clients-3.6.23-35.el6_8.x86_64
samba-client-3.6.23-35.el6_8.x86_64
samba4-libs-4.0.0-58.el6.rc4.x86_64
samba-common-3.6.23-35.el6_8.x86_64
samba-winbind-3.6.23-35.el6_8.x86_64
+++++++++++++++++++++++++++++++++++++++++++++

没有安装 yum install samba -y

创建共享目录
mkdir /home/share

赋予目录权限
chmod 777 /home/share

配置访问
 vi /etc/samba/smb.conf

# near line 58: add follows
unix charset = UTF-8

# line 75: change (Windows' default)
workgroup = WORKGROUP

# line 81: uncomment and change IP address you allow
hosts allow = 127. 10.0.0.

# line 102: change (no auth)
security = share

# add follows to the end

[Share]
# any name you like
   path = /home/share

# shared directory
   writable = yes

# writable
   guest ok = yes

# guest OK
   guest only = yes
# guest only

create mode = 0777
# fully accessed

directory mode = 0777
# fully accessed
   share modes = yes
启动samba
service smb start
service nmb start

开机启动samba
chkconfig smb on
chkconfig nmb on

3, install VMware

VM环境依赖包
yum install gcc gcc-c++ kernel-headers libXtst-devel libXrender-devel xinetd ncurses ncurses-devel bison libgcrypt perl -y
yum install kernel* -y
reboot

查看module路径
# locate libpk-gtk-module.so
/usr/lib64/gtk-2.0/modules/libpk-gtk-module.so
# locate libcanberra-gtk-module.so
/usr/lib64/gtk-2.0/modules/libcanberra-gtk-module.so

添加系统加载modules的路径。
vim /etc/ld.so.conf.d/gtk-2.0.conf
添加
/usr/lib64/gtk-2.0/modules

重新加载。
ldconfig

赋予VM安装包执行权限
chmod -R 777 VMware-Workstation-Full-9.0.4-1945795.x86_64.bundle

安装VM--然后一路Next就可以了。
./VMware-Workstation-Full-9.0.4-1945795.x86_64.bundle

查看已经安装的虚拟机
vmware-installer -l

卸载VM
vmware-installer -u vmware-player

远程可以直接打开图形
vmware-player

启动vmware-player
service vmware-player start

开机启动
chkconfig vmware-player on

4, XFS 安装配置

安装xfs
yum install xfsprogs xfsdump -y

创建新分区
fdisk /dev/sdb1
Command (m for help): n           创建新分区
 
  Command action
   e   extended
   p   primary partition (1-4)
p                             创建主分区

Partition number (1-4): 1          新建的主分区序号
First cylinder (1-10402, default 1):
Using default value 1
Last cylinder or +size or +sizeM or +sizeK (1-10402, default 10402):     创建主分区大小
 
Command (m for help): w       保存创建的主分区
                                 
格式化分区
mkfs.xfs -f /dev/sdb1

创建挂载目录
mkdir -p /home/xfs

挂载硬盘到目录
mount /dev/sdb1 /home/xfs

查看硬盘号
blkid /dev/sdb1
/dev/sdb1: UUID="493b0f40-093c-47e0-8d48-3f169191ad9d" TYPE="xfs"

配置开机自动挂载
vi /etc/fstab
添加开机挂载目录
UUID=493b0f40-093c-47e0-8d48-3f169191ad9d /home/xfs xfs defaults 0 1

重启服务器
reboot

查看挂载目录
df -TH

写性能测试
time dd if=/dev/zero of=/home/xfs/ceshi.txt bs=1M count=100
100+0 records in
100+0 records out
104857600 bytes (105 MB) copied, 0.0377968 s, 2.8 GB/s
real    0m0.040s
user    0m0.000s
sys    0m0.040s

读性能测试
time dd if=/home/xfs/ceshi.txt  of=/dev/null  bs=1M count=100
100+0 records in
100+0 records out
104857600 bytes (105 MB) copied, 0.0146221 s, 7.2 GB/s
real    0m0.015s
user    0m0.000s
sys    0m0.015s

5, install XFS--parted

安装xfs
yum install xfsprogs xfsdump -y

创建新分区
fdisk /dev/sdb1
Command (m for help): n           创建新分区
 
  Command action
   e   extended
   p   primary partition (1-4)
p                             创建主分区

Partition number (1-4): 1          新建的主分区序号
First cylinder (1-10402, default 1):
Using default value 1
Last cylinder or +size or +sizeM or +sizeK (1-10402, default 10402):     创建主分区大小
 
Command (m for help): w       保存创建的主分区
                                 
格式化分区
mkfs.xfs -f /dev/sdb1

创建挂载目录
mkdir -p /home/xfs

挂载硬盘到目录
mount /dev/sdb1 /home/xfs

查看硬盘号
blkid /dev/sdb1
/dev/sdb1: UUID="493b0f40-093c-47e0-8d48-3f169191ad9d" TYPE="xfs"

配置开机自动挂载
vi /etc/fstab
添加开机挂载目录
UUID=493b0f40-093c-47e0-8d48-3f169191ad9d /home/xfs xfs defaults 0 1

重启服务器
reboot

查看挂载目录
df -TH

写性能测试
time dd if=/dev/zero of=/home/xfs/ceshi.txt bs=1M count=100
100+0 records in
100+0 records out
104857600 bytes (105 MB) copied, 0.0377968 s, 2.8 GB/s
real    0m0.040s
user    0m0.000s
sys    0m0.040s

读性能测试
time dd if=/home/xfs/ceshi.txt  of=/dev/null  bs=1M count=100
100+0 records in
100+0 records out
104857600 bytes (105 MB) copied, 0.0146221 s, 7.2 GB/s
real    0m0.015s
user    0m0.000s
sys    0m0.015s

三章:CentOS6.5 更改时区设置、安装samba、install VMware、install XFS 、install XFS --parted相关推荐

  1. 一篇文章解决所有的 #如何下载安装xshell链接VMware虚拟机liunx系统(如SentOS,ubuntu等等)# 等问题

    目录 一.下载xshell,linux和VMware虚拟机 1.下载xshell 1)xshell官方下载 2)蓝奏云xshell下载 2.下载linux 1) ubantu官网下载 2) sento ...

  2. mysql gmt格式_将MySQL数据库时区设置为GMT

    小编典典 不,不可能更改MySQL实例中单个数据库的时区. 我们可以time_zone通过查询来检索服务器和客户端设置,如下所示: SELECT @@global.time_zone, @@sessi ...

  3. 第三章 败家可是个技术活

    第三章 败家可是个技术活 设置字体大小:大中小 听了洪大力的话,唐慕馨先是一喜,随后便气的俏脸煞白.虽然她一开始就打定主意到时候再退婚,可是被洪大力这么当面说就算想嫁他都未必乐意娶,这叫在周围人眼中一 ...

  4. centos7安装samba文件服务器,Centos7.7部署文件共享服务Samba

    关闭selinux服务 临时关闭 setenforce 0(只对当前有效,重启后,该服务又会重新启动.) 永久关闭 [root@CenTos7 ~]# vi /etc/sysconfig/selinu ...

  5. ubuntu系统samba服务器安装,Ubuntu 20.04.1安装Samba服务器及配置

    Ubuntu 20.04.1安装Samba服务器及配置 1查看Ubuntu的版本 agold@ubuntu:~$ cat /etc/issue 2更新软件 agold@ubuntu:~$ sudo a ...

  6. Linux安装samba

    samba详解 Samba是在Linux和UNIX系统上实现SMB协议的一个免费软件,由服务器及客户端程序构成.SMB(Server Messages Block,信息服务块)是一种在局域网上共享文件 ...

  7. 树莓派使用STEP5:安装samba文件共享服务器

    samba服务器可以在多平台多操作系统搭建文件服务器,用于共享文件.为了方便windows和树莓派交换文件,将samba服务器的搭建过程记录如下. 1.安装samba服务器. sudo apt-get ...

  8. 191_Ubuntu 18.04安装Samba服务器及配置

    局域网下使用samba服务在Linux系统与Windows系统直接共享文件是一项很方便的操作.以Ubuntu为例配置samba服务,Linux服务器的版本是Ubuntu 18.04.1 LTS. 在终 ...

  9. Elasticsearch6.8开发指南-第三章-设置Elasticsearch

    Elasticsearch6.8开发指南-第三章-设置Elasticsearch 本章简介 安装Elasticsearch 使用.zip或安装Elasticsearch.tar.gz 在Windows ...

最新文章

  1. FreeMarker中的list集合前后台代码
  2. 人工智能与健康社会系列调研(一):人脸识别与公共卫生
  3. sqlplus环境配置(login.sql)
  4. SAP CRM One Order 根据联系人姓名搜索的实现原理
  5. 兼容IE和FF的JS HTMLEncode和HTMLDecode的完整实例[转]
  6. JSTL分割字符 fn:split()
  7. .Net 中的继承知识点
  8. iphone个系列尺寸_最值得入手的4款iPhone,都是内行人的最爱,拿出去有面子
  9. 微信小程序 自动解决分包大小问题_一个小小的优化,能让你的小程序瘦身10%...
  10. 虚拟机上的linux里安装ngnix,虚拟机(linux)下安装nginx的步骤教程
  11. n 中选 m —— 随机采样的艺术
  12. ccfcsp化学方程式java_化学方程式-ccf
  13. 小说Symbian的签名
  14. linux lightdm启动阶段黑屏,Ubuntu卡logo、卡住、黑屏无法正常启动、屏幕和键盘背光无法调节等一系列问题的罪恢祸首:NVIDIA显卡驱动...
  15. 嵌入式linux学习笔记--gitlab学习笔记-gitlab-runnner简单的使用介绍
  16. 5种常见的服务器种类是哪些
  17. 冰蝎软件的配置与应用
  18. 小米手机计算机软件,手机计算器
  19. win7关闭程序兼容性助手和windows Defender
  20. 每天只需15分钟!情感励志视频剪辑一天200多,不用真人出镜

热门文章

  1. 浅显易懂讲讲网关和DNS的概念—Vecloud微云
  2. C++string 类常用函数
  3. 通过注册表修改IE的Internet选项
  4. SQL SERVER大话存储结构:数据库数据文件
  5. 快点啊,大工程禁用Visual Assist,禁用符号加载
  6. 累加求和 Accumulate.java
  7. System.Windows.Forms命名空间的MessageBox.show()用法大全
  8. 微软向马斯克的人工智能项目OpenAI投资10亿美元
  9. 人大经济论坛:统计学的一些经典教材
  10. 揭密 extern C