How to make changes and test CPUID application of KolibriOS

From KolibriOS wiki
Revision as of 15:27, 6 July 2016 by Mat1854 (talk | contribs) (Created page with "Environment: Windows machine + VMWare Workstation -> Ubuntu Following this guidlines: http://wiki.kolibrios.org/wiki/Compiling_application_in_Linux 1) '''Create CPUID appli...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Environment: Windows machine + VMWare Workstation -> Ubuntu

Following this guidlines: http://wiki.kolibrios.org/wiki/Compiling_application_in_Linux

1) Create CPUID application

CD to KolibriOS/Program/System/CPUID/trunk/

Run this command:

fasm CPUID.ASM CPUID

‘ls’ to check CPUID is created. Now we need to copy this to the disc.


2) Copy CPUID to disk:

sudo mkdir /media/floppy1/
sudo mount -o loop ~/kolibrios/kolibri.img /media/floppy1/
sudo mkdir /media/floppy1/my
sudo cp ~/kolibrios/programs/system/CPUID/trunk/CPUID /media/floppy1/my 
sudo umount /media/floppy1/

This should copy the CPUID to disk, to check you can check ‘my’ folder before unmounting the disk.


3) Running a program in VirtualBox

Installing Oracle VM VirtualBox:

 sudo apt-get install virtualbox

Creating virtual machine:

 vboxmanage createvm --name "kolibrios" --register
 vboxmanage storagectl "kolibrios" --name "Floppy" --add floppy
 vboxmanage storageattach "kolibrios" --storagectl "Floppy" --port 0 --device 0 --type fdd --medium ~/kolibrios/kolibri.img

Running KolibriOS:

 vboxmanage startvm "kolibrios" &


4) Open your modified CPUID application in KolibriOS Once inside kolibri, open KFAR.

In the right hand side, open up your disc image. Should look like this. Example.png

Run CPUID application. (Just double click this ). Should see your updated CPUID application.

Note: This method should work to make changes and test other applications of KolibriOS as well.