Advertisement
Guest User

Untitled

a guest
Sep 10th, 2017
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. [root@Sailfish nemo]# df -h /
  2. Filesystem Size Used Avail Use% Mounted on
  3. /dev/mmcblk0p39 4.6G 1.7G 2.9G 37% /
  4. [root@Sailfish nemo]# dd if=/dev/zero bs=1M count=300 of=tmp
  5. 300+0 records in
  6. 300+0 records out
  7. 314572800 bytes (315 MB) copied, 47.9239 s, 6.6 MB/s
  8. [root@Sailfish nemo]# ls -alh tmp
  9. -rw-r--r-- 1 root root 300M Sep 10 15:14 tmp
  10. [root@Sailfish nemo]# df -h /
  11. Filesystem Size Used Avail Use% Mounted on
  12. /dev/mmcblk0p39 4.6G 2.0G 2.6G 44% /
  13. [root@Sailfish nemo]# rm tmp
  14. rm: remove regular file `tmp'? y
  15. [root@Sailfish nemo]# sync
  16. [root@Sailfish nemo]# df -h /
  17. Filesystem Size Used Avail Use% Mounted on
  18. /dev/mmcblk0p39 4.6G 2.0G 2.6G 44% /
  19. [root@Sailfish nemo]# ls -alh tmp
  20. ls: cannot access tmp: No such file or directory
  21. [root@Sailfish nemo]# dd if=/dev/zero bs=1M count=1000 of=tmp
  22. 1000+0 records in
  23. 1000+0 records out
  24. 1048576000 bytes (1.0 GB) copied, 169.093 s, 6.2 MB/s
  25. [root@Sailfish nemo]# ls -alh tmp
  26. -rw-r--r-- 1 root root 1000M Sep 10 15:18 tmp
  27. [root@Sailfish nemo]# df -h /
  28. Filesystem Size Used Avail Use% Mounted on
  29. /dev/mmcblk0p39 4.6G 3.0G 1.7G 65% /
  30. [root@Sailfish nemo]# rm tmp
  31. rm: remove regular file `tmp'? y
  32. [root@Sailfish nemo]# df -h /
  33. Filesystem Size Used Avail Use% Mounted on
  34. /dev/mmcblk0p39 4.6G 3.0G 1.7G 65% /
  35. [root@Sailfish nemo]#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement