Project

General

Profile

Support #943

Updated by Daniel Curtis over 5 years ago

I recently lost access to one of my servers and managed to finally get access, and when I did I found an errors stating "out of disk space" dis spce" and "out of inodes". Running a @`df -h`@ showed that I still had plenty of space left. This is how I managed to work around this error. 

 * Display the free inode space: 
 <pre> 
 df -hi 
 </pre> 

 * Remove the ports tree: 
 <pre> 
 rm -rf /usr/ports/* 
 </pre> 

 Freeing up any other additional space will help as well, but removing the ports tree was enough to get to where I can keep my users happy. 

 h2. Resources 

 * http://www.freebsddiary.org/inodes.php 
 * http://wiki.stocksy.co.uk/wiki/FreeBSD_run_out_of_inodes

Back