| number of sub-directories much be |
|
| Written by Administrator | |
| Monday, 14 April 2008 | |
|
An interesting fact about Linux File system is that you cannot have more than 32,000 sub-directories in Linux file system , try it yourself with this shell script $mkdir temp1 $cd temp1 $let i=0 ; while test true ; do mkdir $i; let i=i+1; done still you can have more than 32,000 sub-directories in Linux file system by changing the #define value in Linux kernel and recompiling it .This is the power of Linux My next test is to test the maximum depth allowed in Linux file system , try this thing also with this shell script $mkdir temp2 $cd temp2 $let i=0 ; while test true ; do mkdir $i ; cd $i ; let i=i+1 ; done
|
|
| Last Updated ( Wednesday, 21 January 2009 ) |
| < Prev | Next > |
|---|
