Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- echo "Initializing Keyboard configuration tool..."
- dpkg-reconfigure keyboard-configuration
- echo "Done!!!"
- sleep 1
- echo "Initializing Time Zone configuration tool..."
- dpkg-reconfigure tzdata
- echo "Done!!!"
- sleep 1
- echo "Initializing Console configuration tool..."
- dpkg-reconfigure console-setup
- # Follow the following settings to make it looks like the usual Ubuntu Console
- # UTF-8
- # Latin1 and Latin5...
- # VGA
- # 16
- echo "Done!!!"
- sleep 1
- echo "Removing install files..."
- cd /
- rm -rf INSTALL
- echo "Done!!!"
- sleep 1
- echo "Now, you are good to go!!!"
Advertisement
Add Comment
Please, Sign In to add comment