博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ubuntu18.04下希捷移动硬盘Seagate Backup Plus读写慢
阅读量:6234 次
发布时间:2019-06-22

本文共 1850 字,大约阅读时间需要 6 分钟。

去年买的一块Seagate Backup Plus 4TB, 专门用来备份的, 之前在win7下用过几次, 但是在Ubuntu下可能只用过一两次, 今天备份的时候, 感觉写入速度不太正常, 大概只有12~15MB/s的样子, 硬盘原来出厂设置的分区是单独一个NTFS分区, 我怀疑是NTFS分区在Linux下速度有影响, 于是重新分区格式化为ext4. 但是发现速度更慢了, 读写都只有1.5MB/s, 慢到极点.

硬盘信息

$ sudo smartctl -x /dev/sdc1smartctl 6.6 2016-05-31 r4324 [x86_64-linux-4.15.0-36-generic] (local build)Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org=== START OF INFORMATION SECTION ===Vendor:               SeagateProduct:              BUP BLRevision:             0304Compliance:           SPC-4User Capacity:        4,000,787,029,504 bytes [4.00 TB]Logical block size:   512 bytesPhysical block size:  4096 bytesLogical Unit id:      0x5000000000000001Serial number:        NA9F8ZJ6Device type:          diskLocal Time is:        Thu Oct  4 20:01:57 2018 CSTSMART support is:     Available - device has SMART capability.SMART support is:     DisabledTemperature Warning:  Disabled or Not SupportedRead Cache is:        EnabledWriteback Cache is:   Enabled=== START OF READ SMART DATA SECTION ===SMART Health Status: OKCurrent Drive Temperature:     0 CDrive Trip Temperature:        0 CError Counter logging not supportedDevice does not support Self Test loggingDevice does not support Background scan results logging

 

在google中搜Seagate Backup Plus Ubuntu slow能查到不少相似的问题记录, 主要原因一是说Linux对SMR硬盘的支持, 另一是说主板BIOS, 其中有一个提供的解决办法是用gparted做成GPT分区, 按这个方法处理后, 硬盘速度就恢复正常了. 现在读写的benchmark是 66MB/s 和 20MB/s, 在大文件写入中显示的写入速度在25~40MB/s之间. 因为SMR硬盘本身性能的影响, 在连续写入大概90GB后, 写入速度会快速下降

installed 'gparted' and then created GPT partition table via "Device-> Create partition table-> GPT". Then i created desired number of partitions with formats such as ntfs, ext4 etc... Now it works fine!

SMR中文叫叠瓦式磁记录, 关于SMR硬盘的说明, 可以参考知乎的这两篇   和   . SMR硬盘的写入性能非常差, 正常就只有20~30MB/s, 不适合用于大量写的场景(例如系统盘, 以及阵列), 目前7mm的2.5硬盘基本都是SMR的, 9mm的2T只有这一款 ST2000LM003 

 

转载地址:http://inzia.baihongyu.com/

你可能感兴趣的文章
下载本 WebEnh博客 安卓APP
查看>>
iOS中常见 Crash 及解决方案
查看>>
【python】datetime获取日期,前一天日期
查看>>
Lua简易入门教程
查看>>
如果使用百度云盘同步电脑里文件夹
查看>>
linux内核栈与用户栈【转】
查看>>
一次完整的http事务
查看>>
spring事务传播机制
查看>>
freemaker
查看>>
一个leetcode解题报告类目,代码很简洁
查看>>
html字符转义
查看>>
C#编程(五十七)----------位数组
查看>>
openfireserver和jdk环境删除命令
查看>>
mysql命令
查看>>
Android之后台启动Activity
查看>>
[Python]BeautifulSoup—HTML解析包
查看>>
python中添加环境变量
查看>>
C# 多线程控制 通讯 和切换
查看>>
作为初级管理者必会的方法论和分析法
查看>>
javascript设计模式——策略模式
查看>>