![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Advanced & Expert Users Advanced UNIX and Linux questions go here. Expert-to-Expert. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| mkdir | big123456 | Shell Programming and Scripting | 2 | 07-22-2006 07:23 AM |
| calling mkdir from PHP | gmclean2006 | UNIX for Dummies Questions & Answers | 4 | 06-15-2006 06:23 PM |
| install vs mkdir | thmnetwork | Linux | 1 | 03-30-2005 08:25 PM |
| Can't mkdir in /home | leond | UNIX for Dummies Questions & Answers | 5 | 03-05-2003 08:04 AM |
| mkdir limitations | flignar | UNIX for Dummies Questions & Answers | 12 | 08-30-2002 11:30 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
||||
|
||||
|
mkdir
Is there ant way to increase max number of folders in the directory from the 32766:
Problem UFS: Code:
shell>mkdir mmm But there are no links, just folders. Code:
shell>ls | wc -l |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
A link can be a file too. The system call for rm is unlink(). When you see that message, among other things, it means you'll have really bad performance. Finding a file will take forever. Change the directory layout.
UNIX systems have different filesystems (software that manages files on a disk) on a single machine. /etc/fstab will tell you which filesystem you have on the disk with your problem. As a temporary fix, you'll have to start moving files off that directory to others. What OS and filesystem is it? Use df -i <directory> to see how many inodes are left in the filesystem. Just to be sure. Last edited by jim mcnamara; 02-23-2008 at 04:51 AM. |
|
#3
|
||||
|
||||
|
This is well known information...
And I wrote that this is UFS... I can not move files to another directory. Anyway there is no normal method to change this parameter, maximum 2^15 -1 -2 for "." and "..". |
|
#4
|
|||
|
|||
|
Mirusnet, you're right, there's no normal way to change this param on UFS.
From the Sun manual - Quote:
Hope this helps, -c |
|||
| Google The UNIX and Linux Forums |