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

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

发布了174 篇原创文章 · 获赞 55 · 访问量 16万+

猜你喜欢

转载自blog.csdn.net/weixin_41619143/article/details/103908237
今日推荐