Advertisement
sandervanvugt

Untitled

Jun 10th, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. 1 poweroff
  2. 2 lsmod
  3. 3 lsmod | less
  4. 4 lsmod | grep ext
  5. 5 modprobe ext3
  6. 6 lsmod | grep ext
  7. 7 lsmod | grep vfat
  8. 8 modprobe vfat
  9. 9 lsmod | grep vfat
  10. 10 modprobe -r vfat
  11. 11 vim /etc/dracut.conf
  12. 12 man dracut.conf
  13. 13 dracut
  14. 14 dracut --force
  15. 15 reboot
  16. 16 lsmod | grep vfat
  17. 17 systemctl status systemd-udevd
  18. 18 udevadm monitor
  19. 19 cd /dev
  20. 20 ls sd*
  21. 21 ls -l sd*
  22. 22 lsblk
  23. 23 cd /proc
  24. 24 less devices
  25. 25 cd /dev
  26. 26 rm /dev/sdb
  27. 27 ls -l sd*
  28. 28 fdisk /dev/sdb
  29. 29 ls -l sd*
  30. 30 mknod --help
  31. 31 mknod /dev/sdb b 8 16
  32. 32 ls -l sd*
  33. 33 ps aux | grep firefox
  34. 34 ps aux | grep fire
  35. 35 cd /proc/3603
  36. 36 ls
  37. 37 cd fd
  38. 38 ls
  39. 39 ls -l
  40. 40 cd
  41. 41 cd luth/
  42. 42 ./countdown 12
  43. 43 mount | grep ext
  44. 44 cd /boot
  45. 45 ls -il
  46. 46 debugfs /dev/sda1
  47. 47 ls -il
  48. 48 debugfs /dev/sda1
  49. 49 cp /etc/hosts .
  50. 50 sync
  51. 51 ls -il
  52. 52 rm hosts
  53. 53 umount /boot
  54. 54 cd /
  55. 55 umount /boot
  56. 56 debugs /dev/sda1
  57. 57 debugfs /dev/sda1
  58. 58 ls
  59. 59 cat newhosts
  60. 60 cd
  61. 61 git clone git://git.sv.gnu.org/coreutils
  62. 62 cd coreutils/
  63. 63 ls
  64. 64 cd src
  65. 65 ls
  66. 66 less cp.c
  67. 67 cd ..
  68. 68 ls
  69. 69 cd
  70. 70 strace ls
  71. 71 strace -c ls
  72. 72 strace -x echo *
  73. 73 strace -c echo *
  74. 74 man man
  75. 75 man 2 intro
  76. 76 lspci
  77. 77 lspci -k
  78. 78 modinfo vmwgfx
  79. 79 vim /etc/modprobe.d/mlx4.conf
  80. 80 echo options vmwgfx enable_fbdev=0 > /etc/modprobe.d/vmwgfx.conf
  81. 81 history
  82. 82 cd /lib/udev/rules.d/
  83. 83 ls
  84. 84 vim 60-persistent-storage.rules
  85. 85 cd
  86. 86 cd luth/
  87. 87 ls
  88. 88 vim 50-custom.rules `
  89. 89 vim 50-custom.rules
  90. 90 cp 50-custom.rules /etc/udev/rules.d/
  91. 91 systemctl restart systemd-udevd
  92. 92 ls -l /dev/usb
  93. 93 journalctl | grep CUSTOMUDEV
  94. 94 ls -l /dev/usb
  95. 95 udevadm info --query=all --name=/dev/sdb
  96. 96 udevadm info --attribute-walk --name=/dev/sdb
  97. 97 history
  98. 98 exit
  99. 99 history
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement