Advertisement
sandervanvugt

trouble aug23

Aug 11th, 2023
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. 17 find /etc -type f -size -1000c -exec ls -l {} \;
  2. 18 find /etc -size -1000c -exec ls -l {} \;
  3. 19 find /etc -name "dimm-error-trigger" -exec ls -l {} \;
  4. 20 find /etc -name "dimm-error-trigger" -exec file {} \;
  5. 21 find /etc -type f -size -1000c | grep dimm
  6. 22 find /etc -size -1000c | grep dimm
  7. 23 man find
  8. 24 which mount
  9. 25 mv /bin/mount /bin/tnuom
  10. 26 reboot
  11. 27 vim /etc/default/grub
  12. 28 grub2-mkconfig -o /boot/grub2/grub.cfg
  13. 29 vim next
  14. 30 dnf install -y git
  15. 31 git clone https://github.com/sandervanvugt/trouble
  16. 32 cd trouble/
  17. 33 ls
  18. 34 ./countdown 12
  19. 35 cd
  20. 36 xs
  21. 37 xd
  22. 38 xxd -l 512 /dev/sda
  23. 39 dd if=/dev/zero of=/dev/sda bs=512 count=1
  24. 40 xxd -l 512 /dev/sda
  25. 41 reboot
  26. 42 find /etc -size -1000c
  27. 43 find /etc -size -1000c -exec ls -l {} \;
  28. 44 cd newfiles
  29. 45 mkdir newfiles
  30. 46 cd newfiles/
  31. 47 dd if=/dev/zero of=small1 bs=1 count=500
  32. 48 dd if=/dev/zero of=small2 bs=1 count=600
  33. 49 dd if=/dev/zero of=big2 bs=1 count=6000
  34. 50 dd if=/dev/zero of=big1 bs=1 count=5000
  35. 51 find . -size -1000c
  36. 52 find . -size +1000c
  37. 53 find /etc -type f -size -1000c -exec ls -l {} \;
  38. 54 #dd if=/dev/urandom of=/dev/sda
  39. 55 cd
  40. 56 cd trouble/
  41. 57 history
  42. 58 reboot
  43. 59 exit
  44. 60 history
  45.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement