zoukankan      html  css  js  c++  java
  • smartctl 检测磁盘信息

    smartctl 
    -i 指定设备
    -d 指定设备类型,例如:ata, scsi, marvell, sat, 3ware,N
    -a 或A 显示所有信息
    -l 指定日志的类型,例如:TYPE: error, selftest, selective, directory,background, scttemp[sts,hist]
    -H 查看硬盘健康状态
    -t short 后台检测硬盘,消耗时间短
    -t long 后台检测硬盘,消耗时间长
    -C -t short 前台检测硬盘,消耗时间短
    -C -t long 前台检测硬盘,消耗时间长
    -X 中断后台检测硬盘
    -l selftest 显示硬盘检测日志
     
     
    #smartctl -A   /dev/sda  查看硬盘的详细信息 
    #smartctl -s on  /dev/sda  如果没有打开SMART技术,使用该命令打开SMART技术。 
    #smartctl -t short  /dev/sda  后台检测硬盘,消耗时间短; 
    #smartctl -t long  /dev/sda   后台检测硬盘,消耗时间长; 
    #smartctl -C -t  /dev/sda   short前台检测硬盘,消耗时间短; 
    #smartctl -C -t  /dev/sda   long前台检测硬盘,消耗时间长。其实就是利用硬盘SMART的自检程序。 
    #smartctl -X   /dev/sda      中断后台检测硬盘。 
    #smartctl -l selftest  /dev/sda  显示硬盘检测日志。 
    #smartctl -l error   /dev/sda    显示硬盘错误汇总。
  • 相关阅读:
    vb笔记
    linux学习笔记
    linnux--shell
    # 用类来封装动态数组:分文件编写
    面向对象
    c++2
    c++1
    答疑:指针数组字符串
    文件操作
    用函数封装实现对一个数组增删改查
  • 原文地址:https://www.cnblogs.com/wozuilang-mdzz/p/9579277.html
Copyright © 2011-2022 走看看