- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: file system 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
Discussions
Discussions
Discussions
Forums
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
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
тАО07-27-2004 07:44 PM
тАО07-27-2004 07:44 PM
but /usr remains full.
how could it be? /usr allocated total 3.8GB
[root@ecfarm3 /]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/ida/c0d0p1 1.9G 408M 1.4G 22% /
/dev/ida/c0d0p5 26G 19G 5.7G 77% /data5
/dev/ida/c0d0p6 3.8G 3.8G 0 100% /usr
/dev/ida/c0d0p7 984M 246M 688M 27% /var
what is the problem?
Dose linux has bugs?
can you explain above that.?
give me the solution to resolve the problem..
except rebooting linux box.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-27-2004 07:55 PM
тАО07-27-2004 07:55 PM
Re: file system full
then umount it and run fsck on it.
unfet that mount it back and see it it's still full.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-27-2004 08:39 PM
тАО07-27-2004 08:39 PM
Re: file system full
still using.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-27-2004 08:41 PM
тАО07-27-2004 08:41 PM
Re: file system full
Cause if you can't
there is
umount -l /dev/ida/c0d0p6
or you can use the fuser command to see who is using the partition.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-27-2004 08:53 PM
тАО07-27-2004 08:53 PM
SolutionIf you know that there are one or more program that were using that file, close them.
Ciao
Claudio
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-28-2004 12:11 AM
тАО07-28-2004 12:11 AM
Re: file system full
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-28-2004 12:39 PM
тАО07-28-2004 12:39 PM
Re: file system full
first I could get the process used the file
fuser -v /dir
then,
I could kill the process, file system
remains normal capacity as it removed file.
as you tell me that
the disk space used by that file will not be
freed until the processes stop using it.
thanks all