在HP-UX文件系统中,系统默认的是小文件系统,即不支持大于2GB的文件
查看HP-UNIX是否支持大文件系统
1)fsadm
[sst:(root)/oracle]# fsadm /ARCH_BACK
fsadm: /etc/default/fs is used for determining the file system type
largefiles
2)fstyp
[sst:(root)/]# fstyp -v /dev/vg02/lvol1
vxfs
version: 4
f_bsize: 8192
f_frsize: 8192
f_blocks: 1966080
f_bfree: 1963214
f_bavail: 1947877
f_files: 491072
f_ffree: 490784
f_favail: 490784
f_fsid: 1073872897
f_basetype: vxfs
f_namemax: 254
f_magic: a501fcf5
f_featurebits: 0
f_flag: 16
f_fsindex: 7
f_size: 1966080
+f_flag and the legend is:
16=largefiles
0=no largefiles
让系统支持大文件
1、新建文件系统时:
mkfs -F vxfs -o largefiles /dev/vg02/rlvol1
或者
newfs -F vxfs -o largefiles /dev/vg02/rlvol1
2、文件系统内有数据文件时:
fsadm -F vxfs -o largefiles /dev/vg02/rlvol1
当然,你也可以将大文件系统转换为小文件系统,不过要注意的是这个大文件系统中不能有大于2GB的文件,否则无法转换成功。示例如下:
fsadm -F vxfs -o nolargefiles /dev/vg02/rlvol1
阅读(917) | 评论(0) | 转发(0) |