Difference between revisions of "How-to compile the Scull examples"

From Klaus' wiki
Jump to: navigation, search
Line 21: Line 21:
 
</source>
 
</source>
  
Now unpack the example sources if you haven't done that already.
+
Now as '''an ordinary user''' unpack the example sources if you haven't done that already.
  
 
<source lang="bash">
 
<source lang="bash">

Revision as of 11:30, 27 September 2010

As root on your virtual server execute the following commands:

$ yum install gcc kernel-xen-devel ncurses-devel
$ yum update
#
# If a new kernel came in restart the server
#
$ init 6
#
# Wait a few minutes and login once again
#

Next create the ordinary users for the system with

 $ adduser <username>

As root edit the /etc/group file and add a new group at the end. Copy the line above (one of the ordinary useres) and change the group number to bee different from any other numbers assigned in the file. Add the usernames after the last : having the file looking something like this:

klausk:x:500:
moduledev:x:501:klausk

Now as an ordinary user unpack the example sources if you haven't done that already.

#
# Provided that the examples are placed in /home/eml1 issue these commands:
#
$ cd /home/eml1
$ tar zxvf examples.tar.gz
$ chgrp -R moduledev examples
$ cd examples

Prepare the helper script as described below

When entering the example directory execute this

$ . settings.sh
#
# To make the scull module perform:
#
$ cd scull
$ make modules

Helper script called settings.sh - to be run every time you enter this directory. It sets up the environment.

#!/bin/bash
#
# Preparation for the compilation of the scull example code
#
KERNELDIR=/usr/src/kernels/2.6.18-194.11.4.el5-xen-i686/
export KERNELDIR


Remember that only root can insmod a module in the kernel.

If you add a line like this into /etc/sudoers using visudo

klausk  ALL=(ALL)       NOPASSWD: ALL