<p dir="ltr"><br>
El 13/05/2013 10:07, &quot;shampavman&quot; &lt;<a href="mailto:shampavman.cg@gmail.com">shampavman.cg@gmail.com</a>&gt; va escriure:<br>
&gt;<br>
&gt; Hi all,<br>
&gt;<br>
&gt; Supposing i create a file of size 10K, it will occupy 2 blocks (4K each).<br>
&gt; Now if i want to read only 1 block from it how can i do it?<br>
&gt;<br>
&gt; read(fd, buf, 4096) ;<br>
&gt; would this mean i would read the first block and all its contents?</p>
<p dir="ltr">You actually might even read more, depending on your file system. The dentrys and inodes are stored in blocks on the disk as well. You can try to access your disk through /dev/sdX directly, but beware that when writing you will most probably destroy your data on that disk.</p>

<p dir="ltr">Regards,<br>
Matthias</p>
<p dir="ltr">&gt;<br>
&gt; Thanks<br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; Kernelnewbies mailing list<br>
&gt; <a href="mailto:Kernelnewbies@kernelnewbies.org">Kernelnewbies@kernelnewbies.org</a><br>
&gt; <a href="http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies">http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies</a><br>
</p>