Advertisement
teknoraver

9p speed

Feb 26th, 2020
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. ~# grep -w -e / -e /mnt/host /proc/mounts
  2. /dev/root / ext4 rw,noatime 0 0
  3. home /mnt/host 9p rw,sync,dirsync,noatime,access=client,trans=virtio 0 0
  4.  
  5. ~# time tar xf linux-5.5.6.tar.xz
  6.  
  7. real 0m13.629s
  8. user 0m9.417s
  9. sys 0m5.015s
  10.  
  11. ~# cd /mnt/host/
  12. /mnt/host# time tar xf ~/linux-5.5.6.tar.xz
  13.  
  14. real 2m59.245s
  15. user 0m11.426s
  16. sys 0m17.354s
  17.  
  18. ~# cd
  19. root@debian64:~# time rm -rf linux-5.5.6/
  20.  
  21. real 0m0.732s
  22. user 0m0.060s
  23. sys 0m0.658s
  24.  
  25. ~# cd /mnt/host/
  26. root@debian64:/mnt/host# time rm -rf linux-5.5.6/
  27.  
  28. real 0m38.672s
  29. user 0m0.212s
  30. sys 0m3.172s
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement