Advertisement
tolikpunkoff

fixtcplayerr

Jul 25th, 2015
805
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.43 KB | None | 0 0
  1. #!/bin/bash
  2. #this script fix error:
  3. #device-mapper: reload ioctl on test failed: No such file or directory
  4. #table: 253:0: crypt: Error allocating crypto tfm
  5. #device-mapper: ioctl: error adding target to table
  6. #for truecrypt/tcplay
  7.  
  8. echo "Loading modules..."
  9. modprobe lrw
  10. modprobe xts
  11. modprobe cbc
  12. modprobe rmd160
  13. modprobe sha256
  14. modprobe wp512
  15. modprobe aes
  16. modprobe serpent
  17. modprobe twofish
  18. modprobe dm-crypt
  19. echo "Complete!"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement