Advertisement
unclemusclez

Untitled

Jun 27th, 2015
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. root@lubuntu:/# mount | nc termbin.com 9999
  2. http://termbin.com/mnvv
  3. root@lubuntu:/# unmount /boot/efi
  4. No command 'unmount' found, did you mean:
  5. Command 'umount' from package 'mount' (main)
  6. unmount: command not found
  7. root@lubuntu:/# umount /boot/efi
  8. root@lubuntu:/# mount -a
  9. mount: mounting UUID=4da5596e-fd8b-4738-bbf5-56d2c2705ef1 on /boot failed: No such file or directory
  10. mount: mounting UUID=DEE2-1CC0 on /boot/efi failed: No such file or directory
  11. root@lubuntu:/# rm -r /boot
  12. root@lubuntu:/# mkdir -p /boot/efi
  13. root@lubuntu:/# type rm -r /boot/efi
  14. rm is hashed (/bin/rm)
  15. bash: type: -r: not found
  16. bash: type: /boot/efi: not found
  17. root@lubuntu:/# type rm -r /boot/efi
  18. rm is hashed (/bin/rm)
  19. bash: type: -r: not found
  20. bash: type: /boot/efi: not found
  21. root@lubuntu:/# umount /boot/efi /boot
  22. umount: /boot/efi: not mounted
  23. umount: /boot: not mounted
  24. root@lubuntu:/# rm -r /boot/
  25. root@lubuntu:/# mount -a
  26. mount: mounting UUID=4da5596e-fd8b-4738-bbf5-56d2c2705ef1 on /boot failed: No such file or directory
  27. mount: mounting UUID=DEE2-1CC0 on /boot/efi failed: No such file or directory
  28. root@lubuntu:/# mkdir /boot
  29. root@lubuntu:/# mount -a
  30. mount: mounting UUID=4da5596e-fd8b-4738-bbf5-56d2c2705ef1 on /boot failed: No such file or directory
  31. mount: mounting UUID=DEE2-1CC0 on /boot/efi failed: No such file or directory
  32. root@lubuntu:/# mount /dev/sda /boot
  33. mount: mounting /dev/sda on /boot failed: Device or resource busy
  34. root@lubuntu:/# mount /boot
  35. mount: mounting UUID=4da5596e-fd8b-4738-bbf5-56d2c2705ef1 on /boot failed: No such file or directory
  36. root@lubuntu:/# mount /boot/efi
  37. mount: mounting UUID=DEE2-1CC0 on /boot/efi failed: No such file or directory
  38. root@lubuntu:/#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement