We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There were two cases we met:
Find and remove large files that are open but have been deleted on Linux or Unix:
## Works on Linux/Unix/OSX/BSD etc ## lsof -nP | grep '(deleted)' ## Only works on Linux ## find /proc/*/fd -ls | grep '(deleted)'
To truncate it:
## works on Linux/Unix/BSD/OSX etc all ## > "/path/to/the/deleted/file.name" ## works on Linux only ## > "/proc/PID-HERE/fd/FD-HERE"
http://www.cyberciti.biz/datacenter/linux-unix-bsd-osx-cannot-write-to-hard-disk/
The text was updated successfully, but these errors were encountered:
darrenfu
No branches or pull requests
There were two cases we met:
Find and remove large files that are open but have been deleted on Linux or Unix:
To truncate it:
http://www.cyberciti.biz/datacenter/linux-unix-bsd-osx-cannot-write-to-hard-disk/
The text was updated successfully, but these errors were encountered: