Advertisement
Guest User

Untitled

a guest
Mar 12th, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1.  
  2. #stopped the tar and you can see the disk space.
  3. # df
  4. Filesystem 1K-blocks Used Available Use% Mounted on
  5. /dev/md0 287972720 261500468 17691312 94% /
  6.  
  7.  
  8. # nohup tar -cpjvf --ignore-command-error /mnt/mntpoint/longfilesname.tar.bz2 /media/drive1
  9. nohup: ignoring input and appending output to ‘nohup.out’
  10. ^C
  11.  
  12. #then after starting it for a second or two and stopping it I get my space back.
  13.  
  14.  
  15. # df
  16. Filesystem 1K-blocks Used Available Use% Mounted on
  17. /dev/md0 287972720 260682408 18509372 94% /
  18.  
  19. #started it again.
  20.  
  21. df
  22. Filesystem 1K-blocks Used Available Use% Mounted on
  23. /dev/md0 287972720 263300048 15891732 95% /
  24.  
  25. #as you can see I have lost 2 gigs+ of space and /tmp is only 300MB.
  26. du -csh /tmp
  27. 336M /tmp
  28. 336M total
  29.  
  30. #now I will stop it.
  31. #see this diskspace taken up.
  32. df
  33. Filesystem 1K-blocks Used Available Use% Mounted on
  34. /dev/md0 287972720 263448232 15743548 95% /
  35. #and if I start it again let it run for 3 seconds and stop it all the space comes back.
  36. df
  37. Filesystem 1K-blocks Used Available Use% Mounted on
  38. /dev/md0 287972720 260904568 18287212 94% /
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement