- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: root directory full
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2006 01:13 AM
03-03-2006 01:13 AM
root directory full
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2006 01:15 AM
03-03-2006 01:15 AM
Re: root directory full
can you access on the command line and deleting any files under root manually?
Good luck.
Best regards,
Fabio
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2006 01:25 AM
03-03-2006 01:25 AM
Re: root directory full
find / -xdev -exec ls -l {} \; |sort +4 -nrb |head -10
du -kx / | sort -rn | head -10
To identify the directory/files that uses more space on /.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2006 01:30 AM
03-03-2006 01:30 AM
Re: root directory full
Donald,
Is there an option on the trash to "empty" it?
Can you get to the command line and delete file that way?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2006 01:32 AM
03-03-2006 01:32 AM
Re: root directory full
right click your mouse, select Folders, Empty Trash Can.
or
# cd /.dt/Trash
# ls -la
# rm files
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2006 01:49 AM
03-03-2006 01:49 AM
Re: root directory full
1) find / -xdev -size +10000 -exec ls -l {} \;
Use
2) du -sk * | sort -n from / to find out which all folders use more space on the file system
3) find / -xdev -name core
To find out any core files. Removing the /temp files might have created issues to the running applications temp files.
Find the files and move to some other filesystem which has got space.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2006 02:26 AM
03-03-2006 02:26 AM
Re: root directory full
Your answer was right on the money, I didn't realize that exceed didn't actually delete the files. When I try to delete *.* from the Trash directory it returns 'non-existant' and I had to delete each file seperately. Do you by chance know the difference between putting files in 'trash' and putting them in 'workspace'??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2006 04:23 AM
03-06-2006 04:23 AM
Re: root directory full
Please remember that you are deleting files on a UNIX machine. When you try to delete *.*, you are only deleting files that have a '.' in them somewhere, surrounded by any other chatacter(s). From the UNIX command line, you would delete all files by typing:
$ rm *
This will delete all files in the directory (except 'hidden' files; file that begin with '.').
Do keep in mind that rm * is a very dangerous command. Check twice, then check again to make sure this is what you want to do.
Regards,
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2006 04:50 AM
03-06-2006 04:50 AM
Re: root directory full
find / -xdev -size +1000000c
This will list all files on the device (xdev) starting in / that are greater than 1 meg in size.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2006 10:04 PM
03-06-2006 10:04 PM
Re: root directory full
If you drag files into your workspace they will stay in the original directory (its just a link to your desktop), if you put files into your Trash they will be moved to the $HOME/.dt/Trash directory.
Best regards,
Robert-Jan