When a large block of memory (> pagesize = 4096 bytes) is first allocated on Linux it uses special "null" memory pages in the pagetable that aren't backed by anything, so when a thread is started it will allocate ~1 MB of these zero pages for a thread stack. As the stack grows the pages are then converted into real memory backed pages. Because of this "null" page backing it is generally okay to have liberally large stacks.
Threads and processes are both created with the same underlying syscall called clone(2). It has lots of options and does lots of stuff. see man clone for a detailed explanation.
http://linux.die.net/man/2/clone
Large blocks of memory are allocated with an anonymous mmap(2) call.
You may also be interested in doing a web search for "linux overcommit bit"
(If you want to refine your question, I can be more specific.)