雑多 のバックアップ(No.4)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- 雑多 へ行く。
- 1 (2016-04-09 (土) 00:57:44)
- 2 (2016-04-11 (月) 20:57:27)
- 3 (2016-04-13 (水) 00:03:25)
- 4 (2016-04-23 (土) 22:44:36)
- 5 (2016-04-25 (月) 01:12:19)
- 6 (2016-04-25 (月) 22:53:41)
- 7 (2016-04-28 (木) 21:02:52)
- 8 (2016-05-01 (日) 19:07:24)
- 9 (2016-05-03 (火) 20:27:57)
- 10 (2016-05-04 (水) 23:39:11)
- 11 (2016-05-07 (土) 18:56:03)
- 12 (2016-05-08 (日) 20:50:43)
- 13 (2016-05-09 (月) 00:51:50)
- 14 (2016-05-09 (月) 12:28:23)
- 15 (2016-05-23 (月) 23:33:34)
- 16 (2016-05-26 (木) 22:59:04)
- 17 (2016-05-31 (火) 23:34:26)
- 18 (2016-06-13 (月) 18:58:29)
- 19 (2016-06-14 (火) 23:25:10)
- 20 (2016-06-30 (木) 23:19:48)
- 21 (2016-08-17 (水) 17:40:55)
- 22 (2016-09-01 (木) 00:31:23)
- 23 (2016-10-13 (木) 18:29:36)
- 24 (2016-12-06 (火) 23:54:47)
- 25 (2016-12-15 (木) 13:59:04)
- 26 (2017-02-07 (火) 18:34:25)
- 27 (2017-07-12 (水) 18:47:11)
- 28 (2017-07-18 (火) 23:17:51)
S.M.A.R.T.関係
Self-Monitoring, Analysis and Reporting Technology - Wikipedia
https://ja.wikipedia.org/wiki/Self-Monitoring,_Analysis_and_Reporting_Technology
S.M.A.R.T. - Wikipedia, the free encyclopedia
https://en.wikipedia.org/wiki/S.M.A.R.T.
UserBenchmark
http://ssd.userbenchmark.com/
多数のSSDのベンチマーク結果と共にSMART値が公開されている。
但し項目名は汎用的なものが割り当てられているだけ。
ATA規格等
Information technology - AT Attachment 8 - ATA/ATAPI Command Set (ATA8-ACS)
http://www.t13.org/documents/uploadeddocuments/docs2006/d1699r3f-ata8-acs.pdf
書き込み耐久テスト等
BotchyWorld
http://bto-pc.jp/botchyworld/
SSD比較専門サイト | SSD比較レビューサイト
http://ssd比較.com/
SSDにデータを書込みまくり再起不能に追い込む耐久試験で分かった信頼性に関する真実とは?
http://gigazine.net/news/20150316-ssd-endurance-experiment-4th/
「高温環境下でSSDのデータが数日で消える」という騒動は正しいのか?
http://gigazine.net/news/20150514-ssd-temp-endurance/
SSD関連
福田昭のストレージ通信 - EE Times Japan
http://eetimes.jp/ee/series/746/
SMART温度を60秒間隔で90分記録.bat
@echo off rem 動作環境: CrystalDiskInfo Ver5.6.0 以降と Windows Vista 以降 rem 使用方法: CrystalDiskInfo のディレクトリにこの bat ファイルを置き管理者権限で実行 rem 結果は TemperatureLog.csv に出力 rem 注意: CrystalDiskInfo が起動していると値が更新されない setlocal EnableDelayedExpansion set interval=60 set count=90 set cdi_dir=%~dp0 set cdi_dir=%cdi_dir:~0,-1% set output_file=%cdi_dir%\TemperatureLog.csv echo 時間,カウント,温度>"%output_file%" for /L %%I in (0, 1, %count%) do ( start "" /MIN "%cdi_dir%\DiskInfo.exe" /copyexit set line=!DATE! !TIME!, %%I timeout /T %interval% for /F "tokens=1,2,3" %%J in ('find /I "Temperature" "%cdi_dir%\DiskInfo.txt"') do ( if %%J==Temperature set line=!line!,%%L ) echo !line! echo !line!>>"%output_file%" ) echo ... echo "%output_file%" type "%output_file%" echo 終了... pause
任意ファイルの断片化数を調べる方法
Sysinternals Contig の /A オプションで断片化数を表示できる。
断片化数は多くの場合 fsutil file queryextents 又は fsutil volume filelayout で得られるエクステント数と同じなので、簡易的にそちらを使う事もできる(Windows 8 以降?)。
C:\>"C:\Program Files\Sysinternals\Contig.exe" /A "C:\Windows\SoftwareDistribution\DataStore\DataStore.edb" ... C:\Windows\SoftwareDistribution\DataStore\DataStore.edb is in 2 fragments Summary: Number of files processed : 1 Average fragmentation : 2 frags/file C:\>fsutil file queryextents "C:\Windows\SoftwareDistribution\DataStore\DataStore.edb" VCN: 0x0 クラスター: 0x5100 LCN: 0x8a4cdd VCN: 0x5100 クラスター: 0x2080 LCN: 0x3f5fd1 C:\>fsutil volume filelayout "C:\Windows\SoftwareDistribution\DataStore\DataStore.edb" ... ストリーム : ::$DATA 属性 : 0x00000000: *なし* フラグ : 0x00000000: *なし* サイズ : 119,013,376 割り当てられたサイズ : 119,013,376 エクステント : 2 個のエクステント : 1: VCN: 0 クラスター: 20,736 LCN: 9,063,645 : 2: VCN: 20,736 クラスター: 8,320 LCN: 4,153,297