Skip to content

Instantly share code, notes, and snippets.

@FilBot3
Created November 15, 2016 22:03
Show Gist options
  • Select an option

  • Save FilBot3/ecd8d04bcdee1612491f7d824cb18d94 to your computer and use it in GitHub Desktop.

Select an option

Save FilBot3/ecd8d04bcdee1612491f7d824cb18d94 to your computer and use it in GitHub Desktop.
Building CentOS 6 Virtualbox Guest Additions
#!/bin/bash
# Comment to turn off verbosity.
set -x
yum install -y kernel-devel-`uname -r`
cd /usr/src/kernels/`uname -r`/include/drm/
ln -s /usr/include/drm/drm.h drm.h
ln -s /usr/include/drm/drm_sarea.h drm_sarea.h
ln -s /usr/include/drm/drm_mode.h drm_mode.h
ln -s /usr/include/drm/drm_fourcc.h drm_fourcc.h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment