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
| check /etc/defaul/grub | |
| . . . | |
| GRUB_DEFAULT=saved | |
| GRUB_SAVEDEFAULT=true | |
| GRUB_DISABLE_SUBMENU=y | |
| . . . | |
| sudo update-grub | |
| export GRUB_CONFIG=`sudo find /boot -name "grub.cfg"` | |
| ... list of kernels |
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
| #include <string> | |
| #include <iostream> | |
| #include <boost/asio.hpp> | |
| #include <boost/bind.hpp> | |
| using boost::asio::ip::udp; | |
| namespace { | |
| class HelloWorldServer { |