Compile Bochs 2.6 on Debian 6.0.5

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
User avatar
jzef
Posts: 18
Joined: Wed Mar 02, 2016 10:23 am

Compile Bochs 2.6 on Debian 6.0.5

Post by jzef »

I compile in such a way:

Code: Select all

cd bochs-2.6
./configure
make
make install
bochs_debian.png
Compile and install succeeds but after run Bochs - devices ne2k & e1000 not available in configuration :?

How to configure and build Bochs 2.6 so that they are all devices as the installation of the repository apt-get install bochs ?

I installed these packages:
  • apt-get install xfce4
  • apt-get install build-essential
  • apt-get install libx11-dev
  • apt-get install xorg-dev
Do I need yet another package?
User avatar
BrightLight
Member
Member
Posts: 901
Joined: Sat Dec 27, 2014 9:11 am
Location: Maadi, Cairo, Egypt
Contact:

Re: Compile Bochs 2.6 on Debian 6.0.5

Post by BrightLight »

:roll: :roll:

Code: Select all

cd bochs-2.6
./configure --enable-ne2000 --enable-e1000
make
make install
You know your OS is advanced when you stop using the Intel programming guide as a reference.
User avatar
jzef
Posts: 18
Joined: Wed Mar 02, 2016 10:23 am

Re: Compile Bochs 2.6 on Debian 6.0.5

Post by jzef »

I tried like this:

Code: Select all

./configure --enable-plugins --enable-pci --enable-ne2000 --enable-e1000
but still not help :x
gerryg400
Member
Member
Posts: 1801
Joined: Thu Mar 25, 2010 11:26 pm
Location: Melbourne, Australia

Re: Compile Bochs 2.6 on Debian 6.0.5

Post by gerryg400 »

jzef wrote:I tried like this:

Code: Select all

./configure --enable-plugins --enable-pci --enable-ne2000 --enable-e1000
but still not help :x
Did you 'clean' before the configure and 'make' again afterwards ?
If a trainstation is where trains stop, what is a workstation ?
User avatar
jzef
Posts: 18
Joined: Wed Mar 02, 2016 10:23 am

Re: Compile Bochs 2.6 on Debian 6.0.5

Post by jzef »

OK, work :lol:
I found it: How to compile bochs ?

add package:

Code: Select all

apt-get install libgtk2.0-dev
but I do not know if it is needed because I compiled in such a way:

Code: Select all

./configure --enable-pci --enable-ne2000 --enable-e1000
and no need to use --enable-plugins
User avatar
Combuster
Member
Member
Posts: 9301
Joined: Wed Oct 18, 2006 3:45 am
Libera.chat IRC: [com]buster
Location: On the balcony, where I can actually keep 1½m distance
Contact:

Re: Compile Bochs 2.6 on Debian 6.0.5

Post by Combuster »

The proper way is rather to run

Code: Select all

./configure --help
and then choose all the options you want. Right now you might want a network interface, but for your next step you want something else and then you might forget the network interface again and things "break".
"Certainly avoid yourself. He is a newbie and might not realize it. You'll hate his code deeply a few years down the road." - Sortie
[ My OS ] [ VDisk/SFS ]
Post Reply