FDIV-Bug

Ubuntu Core Maker (POSTINSTALL) - Alpha 2

Dec 2nd, 2014
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.59 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. echo "Initializing Keyboard configuration tool..."
  4. dpkg-reconfigure keyboard-configuration
  5.  
  6. echo "Done!!!"
  7. sleep 1
  8.  
  9. echo "Initializing Time Zone configuration tool..."
  10. dpkg-reconfigure tzdata
  11.  
  12. echo "Done!!!"
  13. sleep 1
  14.  
  15. echo "Initializing Console configuration tool..."
  16. dpkg-reconfigure console-setup
  17. # Follow the following settings to make it looks like the usual Ubuntu Console
  18. # UTF-8
  19. # Latin1 and Latin5...
  20. # VGA
  21. # 16
  22.  
  23. echo "Done!!!"
  24. sleep 1
  25.  
  26. echo "Removing install files..."
  27. cd /
  28. rm -rf INSTALL
  29.  
  30. echo "Done!!!"
  31. sleep 1
  32.  
  33. echo "Now, you are good to go!!!"
Advertisement
Add Comment
Please, Sign In to add comment