首页 > 代码库 > Linux下测试SSD固态硬盘写入速度
Linux下测试SSD固态硬盘写入速度
最近买了一个256GB的SSD固态硬盘,想测试一下写入速度,于是如下操作。
部分代码:
1 gettimeofday(&start, NULL); 2 int fd = open("test1.dat", O_RDWR|O_CREAT); 3 if (fd < 0){ 4 printf("open error!\n"); 5 return 0; 6 } 7 // lseek(fd, 0, SEEK_SET); 8 write(fd, pData, DATA_LEN); 9 close(fd);10 gettimeofday(&end, NULL);11 12 // 显示占用时间, 单位是us13 diff = 1000000 * (end.tv_sec - start.tv_sec) + (end.tv_usec - start.tv_usec);14 15 printf("the data length is %d\n Byte", DATA_LEN);16 printf("the difference is %ld us\n", diff);
测试一,数据大小 288,000 byte,5次取最长的时间,则写入速度约为 288000 byte / 2058us = 133.46 MB/s
测试二,数据大小 1,440,000 byte = 1.37MB,5次取最长的时间,则 写入速度约为 1440000 byte / 9356 us = 146.78 MB/s
测试三,数据大小 14,400,000 byte = 13.7MB,5次取最长时间,则写入速度约为 14400000 byte / 100234 us = 137.01MB/s
Linux下测试SSD固态硬盘写入速度
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。