I do the same. So, when I was using Vi, I may also accidentally pressed CTRL + s, which paused my terminal. Don't worry. Everything is fine. Simply press CTRL + q and the terminal will resume.
Picture: Pumpkins in Minnesota Arboretum. Oct. 2017
glut_input.c:22:35: fatal error: X11/extensions/XInput.h: No such file or directory
apt-file search X11/extensions/XInput.hThen, it will show you
libxi-dev: /usr/include/X11/extensions/XInput.hGood. Now you can type
apt-get install libxi-devto install the missing package and then keep building your program.
yum whatprovides "X11/extensions/XInput.h"to locate the missing package. Then you can move on.
sudo grep pid /var/run/libvirt/qemu/GUEST_X.xml
<domstatus state='running' reason='booted' pid='6556' >
<vcpu pid='6558'/ >
<vcpu pid='6559'/ >
<vcpu pid='6560'/ >
<vcpu pid='6561'/ >
ps aux | grep GUEST_XYou will see something like this:
root 6556 0.1 0.0 136560 3472 ? Sl 20:49 0:02 /usr/bin/kvm ...GUEST_X....(a long list of parameters)Then, you can use ls to check the directories in
/proc/6556/task/You will see directories like this
/proc/6556/task/6556/where 6558~6561 are PIDs of this guest's VCPUs.
/proc/6556/task/6558/
/proc/6556/task/6559/
/proc/6556/task/6560/
/proc/6556/task/6561/
Error: Boot loader didn’t return any dataAfter googling this, I found this pygrub seems have problems in parsing certain grub2 format.
sudo apt-get install libvirt0Then type
sudo virt-install --name testVM --ram 512 --vcpus=1 --disk ~/testVM.img,size=8 --location http://archive.ubuntu.net/ubuntu/dists/precise/main/installer-amd64/
sudo apt-get build-dep linux-image-$(uname -r)2. Install required packages
sudo apt-get install libncurses5-dev kernel-package fakeroot build-essential crash kexec-tools makedumpfile kernel-wedge libelf-dev asciidoc binutils-dev
apt-get install mdadmThen, assume that we are using sdd and sdf to create a RAID0 called md0
mdadm --create --verbose /dev/md0 --level=stripe --raid-devices=2 /dev/sdd /dev/sdf