If I understand your question correctly then I would say it depends. An Inode typically can link to 12 data blocks, from wikipedia article:
In the past, the structure may have consisted of eleven or thirteen
pointers, but most modern file systems use fifteen pointers. These
pointers consist of (assuming 15 pointers in the inode):
- Twelve pointers that directly point to blocks of the file's data
(direct pointers)
- One singly indirect pointer (a pointer that points to a block of
pointers that then point to blocks of the file's data)
- One doubly indirect pointer (a pointer that points to a block of
pointers that point to other blocks of pointers that then point to
blocks of the file's data)
- One triply indirect pointer (a pointer that points to a block of
pointers that point to other blocks of pointers that point to other
blocks of pointers that then point to blocks of the file's data)
So as long as the file is < 12 data blocks * (the block size) then the Inode directly links to the data blocks. If the file is > 12 blocks then it will be using a combination of indirect blocks and double indirect blocks.

You can see how many blocks a file is consuming using the stat
command:
sample stat command #1
% stat /bin/ls
File: `/bin/ls'
Size: 117144 Blocks: 232 IO Block: 4096 regular file
Device: fd00h/64768d Inode: 2496176 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root)
Access: 2013-04-17 16:24:20.593606056 -0400
Modify: 2010-11-03 07:43:02.000000000 -0400
Change: 2011-09-09 20:25:22.133239242 -0400
sample stat command #2
% stat /etc/httpd/conf/httpd.conf
File: `/etc/httpd/conf/httpd.conf'
Size: 34417 Blocks: 72 IO Block: 4096 regular file
Device: fd00h/64768d Inode: 3147109 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 0/ root) Gid: ( 0/ root)
Access: 2012-09-26 21:04:47.303641015 -0400
Modify: 2010-10-27 06:01:44.000000000 -0400
Change: 2010-12-18 19:30:00.719999998 -0500
chmod question
As to your problem with chmod
, I believe you need to separate your symbolic permissions (u+r g+r) with a comma, not a space, like so:
% chmod u+rw,g+r filename.txt
references
Here are some additional resources regarding inodes that you may want to read to gain a better understanding about inodes.