利用HD/IDE layer的ioctl函数接口获取HD/IDE的磁盘容量。HDIO_DRIVE_TASK 能发出访问LBA地址的命令,但不能读写数据。
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include...
分类:
其他好文 时间:
2014-10-28 10:27:17
阅读次数:
265
总体概述:(1)W25X16/32/64:256-bytes/页(Page),4K-bytes/扇区(Sector),64K-bytes/块(block)W25X16:16M-bit(2M-byte) | W25X32:32M-bit(4M-byte) | W25X64:64M-bit(8M-b.....
分类:
其他好文 时间:
2014-10-13 14:10:39
阅读次数:
172
一、inode是什么? 理解inode,要从文件储存说起。 文件储存在硬盘上,硬盘的最小存储单位叫做"扇区"(Sector)。每个扇区储存512字节(相当于0.5KB)。 ? 操作系统读取硬盘的时候,不会一个个扇区地读取,这样效...
分类:
系统相关 时间:
2014-09-28 15:07:32
阅读次数:
271
根据前面的MBR中包含的4个分区表中的一个分区表的信息,对应的结构体为:
struct MBRpartition {
unsigned char boot_ind; /* 0x80 - active */
unsigned char head; /* starting head */
unsigned char sector;...
分类:
其他好文 时间:
2014-08-27 16:44:38
阅读次数:
241
void CReadSectorDlg::OnReadButton() { UpdateData (TRUE) ; CFile m_Sector_file ; char * buffer ; if ( m_FileName_str == "") { MessageBox ("Please enter a file to which the read sector contents are...
转自:http://www.ruanyifeng.com/blog/2011/12/inode.htmlhttp://blog.s135.com/post/295/http://hi.baidu.com/leejun_2005/blog/item/d9aa13a53b3af6e99152ee7e.html一、inode是什么?理解inode,要从文件储存说起。文件储存在硬盘上,硬盘的最小存储单位叫做"扇区"(Sector..
分类:
系统相关 时间:
2014-08-20 14:25:33
阅读次数:
297
一、boot sector 与 super block的关系: 1、boot sector用于存放引导装载程序,占用1024个字节。 2、super block的大小也为1024字节。 3、若block大小为1k,则boot sector和super block各占一个block。 4、若b...
分类:
系统相关 时间:
2014-08-19 23:48:45
阅读次数:
224
TIOBE的那个榜单太假了
我帮大家搜集了一下
IEEE Spectrum’s 2014 Ranking
This app ranks the popularity of dozens of programming languages. You can filter them by listing only those most relevant to particular sector...
分类:
其他好文 时间:
2014-08-12 17:29:24
阅读次数:
260
首先,查看系统的磁盘代号:
fdisk -l
Disk /dev/sda: 120.0 GB, 120034123776 bytes
255 heads, 63 sectors/track, 14593 cylinders, total 234441648 sectors
Units = 扇区 of 1 * 512 = 512 bytes
Sector size (logical/physic...
分类:
其他好文 时间:
2014-08-03 20:40:35
阅读次数:
264
一、Flash文件系统设计思路为flash 设计的文件系统要求异地更新(out-of-place update)。这是因为flash 在写之前必须要先擦除,且再次擦除之前只能写一次。如果擦除块(eraseblocks)很小且可以快速擦除,那么可以将它们看作磁盘扇区(disk sector),但是实际...
分类:
其他好文 时间:
2014-08-01 10:32:41
阅读次数:
344