在linux系统中,查看内存型号信息,可以使用命令dmidecode。
例如:
# dmidecode -t memory
# dmidecode 2.9
SMBIOS 2.4 present.
Handle 0x1000, DMI type 16, 15 bytes
Physical Memory Array
Location: System Board Or Motherboard
Use: System Memory
Error Correction Type: Multi-bit ECC
Maximum Capacity: 32 GB 《最大支持的内存数》
Error Information Handle: Not Provided
Number Of Devices: 8 《插槽数》
Handle 0x1100, DMI type 17, 28 bytes
Memory Device
Array Handle: 0x1000
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 1024 MB 《已有的1G》
Form Factor: FB-DIMM
Set: 1
Locator: DIMM1
Bank Locator: Not Specified
Type: DDR2 FB-DIMM 《型号》
Type Detail: Synchronous
Speed: 667 MHz (1.5 ns) 《频率》
Manufacturer: 855185518551
Serial Number: 02036124
Asset Tag: 450728
Part Number: 72T128420HFA3SB
Handle 0x1101, DMI type 17, 28 bytes
Memory Device
Array Handle: 0x1000
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 1024 MB 《已有的1G》
Form Factor: FB-DIMM
Set: 1
Locator: DIMM2
Bank Locator: Not Specified
Type: DDR2 FB-DIMM 《型号》
Type Detail: Synchronous
Speed: 667 MHz (1.5 ns) 《频率》
Manufacturer: 80AD808980AD
Serial Number: 47714406
Asset Tag: 010736
Part Number: HYMP512F72CP8N3-Y5
Handle 0x1102, DMI type 17, 28 bytes
Memory Device
Array Handle: 0x1000
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 1024 MB 《已有的1G》
Form Factor: FB-DIMM
Set: 2
Locator: DIMM3
Bank Locator: Not Specified
Type: DDR2 FB-DIMM 《型号》
Type Detail: Synchronous
Speed: 667 MHz (1.5 ns) 《频率》
Manufacturer: 855185518551
Serial Number: 02034615
Asset Tag: 450728
Part Number: 72T128420HFA3SB
Handle 0x1103, DMI type 17, 28 bytes
Memory Device
Array Handle: 0x1000
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 1024 MB 《已有的1G》
Form Factor: FB-DIMM
Set: 2
Locator: DIMM4
Bank Locator: Not Specified
Type: DDR2 FB-DIMM 《型号》
Type Detail: Synchronous
Speed: 667 MHz (1.5 ns) 《频率》
Manufacturer: 855185518551
Serial Number: 02035C12
Asset Tag: 450728
Part Number: 72T128420HFA3SB
Handle 0x1104, DMI type 17, 28 bytes
Memory Device
Array Handle: 0x1000
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: No Module Installed
Form Factor: FB-DIMM
Set: 3
Locator: DIMM5
Bank Locator: Not Specified
Type: DDR2 FB-DIMM
Type Detail: Synchronous
Speed: Unknown
Manufacturer:
Serial Number:
Asset Tag:
Part Number:
Handle 0x1105, DMI type 17, 28 bytes
Memory Device
Array Handle: 0x1000
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: No Module Installed
Form Factor: FB-DIMM
Set: 3
Locator: DIMM6
Bank Locator: Not Specified
Type: DDR2 FB-DIMM
Type Detail: Synchronous
Speed: Unknown
Manufacturer:
Serial Number:
Asset Tag:
Part Number:
Handle 0x1106, DMI type 17, 28 bytes
Memory Device
Array Handle: 0x1000
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: No Module Installed
Form Factor: FB-DIMM
Set: 4
Locator: DIMM7
Bank Locator: Not Specified
Type: DDR2 FB-DIMM
Type Detail: Synchronous
Speed: Unknown
Manufacturer:
Serial Number:
Asset Tag:
Part Number:
Handle 0x1107, DMI type 17, 28 bytes
Memory Device
Array Handle: 0x1000
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: No Module Installed
Form Factor: FB-DIMM
Set: 4
Locator: DIMM8
Bank Locator: Not Specified
Type: DDR2 FB-DIMM
Type Detail: Synchronous
Speed: Unknown
Manufacturer:
Serial Number:
Asset Tag:
Part Number:
从以上输出信息,我们得知:这台服务器是4个单根1G的内存,最大支持32G,8个插槽,单根支持4G。
附,查看内存条数、内存最大容量、内存频率的命令。
1,内存条数:
2,内存最大容量:
3,内存频率:
当在linux系统下频繁存取文件后,物理内存会很快被用光,当程序结束后,内存不会被正常释放,而是一直作为caching。
对于这个问题,可以通过手工释放内存的方法来解决。
注意:不建议在数据库之类的服务器上手动释放内存,有可能造成数据丢失。
1,查看内存使用情况
free -m
2,释放内存
/bin/echo "1">/proc/sys/vm/drop_caches
3,查看内存使用情况
free -m
有兴趣的朋友,可以写个shell脚本,定时检查当前内存使用情况,然后清除即可。
首先,来看在linux中调整时区的方法:
linux提供是依据/etc/localtime文件内容知道目前系统的时区信息,该文件一般是从/usr/share/zone/里选择适当的时区复制过来即可使用。
以上命令同步中国科学院的时间,并保存到bios中去。
vi /etc/crontab
加上一句:
00 0 1 * * root rdate -s time.nist.gov
或
i.e.:
# ntpdate remote_server
or
# rdate -s remote_server
Also, sync the remote server periodically is a good idea!
# crontab -e
# auto sync with time server at 0:00 everyday
0 0 * * * rdate -t 60 -s time.nist.gov
time.nist.gov 是一个时间服务器.
可用的NTP服务器
stdtime.gov.hk
Date :查看系统时间
hwclock:查看bios时间
把系统时间写入bios时间:hwclock -w
加入计划任务,每天和NTP时间服务器同步:
10 6* * * ntpdate stdtime.gov.hk;hwclock -w
附,Linux date 命令使用
date命令
date命令的功能是显示和设置系统日期和时间。
该命令的一般格式为: date [选项] 显示时间格式(以+开头,后面接格式)
date 设置时间格式
命令中各选项的含义分别为:
-s datestr, --set datestr 设置datestr 描述的日期
-u, --universal 显示或设置通用时间
时间域
% H 小时(00..23)
% I 小时(01..12)
% k 小时(0..23)
% l 小时(1..12)
% M 分(00..59)
% p 显示出AM或PM
% r 时间(hh:mm:ss AM或PM),12小时
% s 从1970年1月1日00:00:00到目前经历的秒数
% S 秒(00..59)
% T 时间(24小时制)(hh:mm:ss)
% X 显示时间的格式(%H:%M:%S)
% Z 时区 日期域
% a 星期几的简称( Sun..Sat)
% A 星期几的全称( Sunday..Saturday)
% b 月的简称(Jan..Dec)
% B 月的全称(January..December)
% c 日期和时间( Mon Nov 8 14:12:46 CST 1999)
% d 一个月的第几天(01..31)
% D 日期(mm/dd/yy)
% h 和%b选项相同
% j 一年的第几天(001..366)
% m 月(01..12)
% w 一个星期的第几天(0代表星期天)
% W 一年的第几个星期(00..53,星期一为第一天)
% x 显示日期的格式(mm/dd/yy)
% y 年的最后两个数字( 1999则是99)
% Y 年(例如:1970,1996等)
需要特别说明的是,只有超级用户才能用date命令设置时间,一般用户只能用date命令显示时间。
例1:用指定的格式显示时间。
This date now is =>11/12/99 ,time is now =>17:53:01 ,thank you !
例2:用预定的格式显示当前的时间。
Fri Nov 26 15:20:18 CST 1999
例3:设置时间为下午14点36分。
Fri Nov 26 14:15:00 CST 1999
例4:设置时间为1999年11月28号。
Sun Nov 28 00:00:00 CST 1999
例5:设置一天前
一、在AIX设置时间主服务器
设置NTP 服务器(MASTER) , 其它NTP客户服务器以此服务器的时间为准,与其进行时间同步.
1. 编辑/etc/ntp.conf 文件, 内容如下:
#broadcastclient
server 127.127.1.0
driftfile /etc/ntp.drift
tracefile /etc/ntp.trace
----------------------------
注意:文件中的server 127.127.1.0 这一行, 此处的127.127.1.0 是一特殊的地址,表示NTP主服务器是与自身的系统时钟同步。
2. 编辑好/etc/ntp.conf后, 启动xntpd守护进程
3. xntpd 状态查询, 使用#lssrc -ls xntpd
刚启动xntpd时, sys peer 为'insane', 表明xntpd还没有完成同步, .
Program name: /usr/sbin/xntpd
Version: 3
Leap indicator: 11 (Leap indicator is insane.)
Sys peer: no peer, system is insane
...
等待6 - 10 分钟后, sys peer 就不再是'insane' 了.
#lssrc -ls xntpd
Program name: /usr/sbin/xntpd
Version: 3
Leap indicator: 00 (No leap second today.)
Sys peer: 127.127.1.0
...