This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Thanks to https://gist.github.com/wenzhixin/43cf3ce909c24948c6e7 | |
| # Execute this script in your home directory. Lines 17 and 21 will prompt you for a y/n | |
| # Install Oracle JDK 8 | |
| # add-apt-repository ppa:webupd8team/java | |
| add-apt-repository ppa:ts.sch.gr/ppa | |
| apt-get update | |
| apt-get install -y oracle-java8-installer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set timeout=3 | |
| menuentry 'Linux diskless' --class os { | |
| insmod efi_gop | |
| insmod efi_uga | |
| # set server from option 66 (tftp-server-name) if not exist, use next_server | |
| if ! net_get_dhcp_option net_default_server ${net_default_interface} 66 string; then | |
| echo ' using next_server option instead.' |