#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <linux/kd.h>
int main(int argc, char *argv[])
{
int fd;
fd = open("/dev/tty0", O_RDWR);
if (fd < 0) {
fprintf(stderr, "cannot open tty0\n");
return -1;
}
ioctl(fd, KDSETMODE, KD_GRAPHICS);
return 0;
}