赞
踩
sudo badblocks -s -v -c 32 /dev/
#分区工具:
fdisk -l:列出所有硬盘
Usage:
fdisk [options] change partition table
fdisk [options] -l [] list partition table(s)
Display or manipulate a disk partition table.
Options:
-b, --sector-size physical and logical sector size#物理和逻辑块的大小
-B, --protect-boot don’t erase bootbits when create a new label
-c, --compatibility[=] mode is ‘dos’ or ‘nondos’ (default)
-L, --color[=] colorize output (auto, always or never)
colors are enabled by default
-l, --list display partitions end exit
-o, --output output columns
-t, --type recognize specified partition table type only
-u, --units[=] display units: ‘cylinders’ or ‘sectors’ (default)
-s, --getsz display device size in 512-byte sectors [DEPRECATED]
–bytes print SIZE in bytes rather than in human readable format
-C, --cylinders specify the number of cylinders
-H, --heads specify the number of heads
-S, --sectors specify the number of sectors per track
-h, --help display this help and exit
-V, --version output version information and exit
Available columns (for -o):
gpt: Device Start End Sectors Size Type Type-UUID Attrs Name UUID
dos: Device Start End Sectors Cylinders Size Type Id Attrs Boot End-C/H/S Start-C/H/S
bsd: Slice Start End Sectors Cylinders Size Type Bsize Cpg Fsize
sgi: Device Start End Sectors Cylinders Size Type Id Attrs
sun: Device Start End Sectors Cylinders Size Type Id Flags
ls -l /dev/disk/by-uuid/
找到对应UUID
vim /etc/fstab
配置模板:UUID=************* /xxxxx ext4 defaults 1 1
第一列是UUID
第二列是挂载点。
挂载点必须为当前已经存在的目录,为了兼容起见,最好在创建需要挂载的目标目录后,将其权限设置为777,以开放所有权限。
第三列为此分区的文件系统类型。
Linux可以使用ext2、ext3等类型,此字段须与分区格式化时使用的类型相同。也可以使用 auto 这一特殊的语法,使系统自动侦测目标分区的分区类型。auto通常用于可移动设备的挂载。
第四列是挂载的选项,用于设置挂载的参数。
常见参数如下:
auto: 系统自动挂载,fstab默认就是这个选项
defaults: rw, suid, dev, exec, auto, nouser, and async.
noauto 开机不自动挂载
nouser 只有超级用户可以挂载
ro 按只读权限挂载
rw 按可读可写权限挂载
user 任何用户都可以挂载
请注意光驱和软驱只有在装有介质时才可以进行挂载,因此它是noauto
第五列是dump备份设置。
当其值设置为1时,将允许dump备份程序备份;设置为0时,忽略备份操作;
第六列是fsck磁盘检查设置。
其值是一个顺序。当其值为0时,永远不检查;而 / 根目录分区永远都为1。其它分区从2开始,数字越小越先检查,如果两个分区的数字相同,则同时检查。
当修改完此文件并保存后,重启服务器生效。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。