Blog Forum Wiki Links Contact Us NetbookUser
RunCore Pro IV SSD Transforms your ASUS EEE PC by increasing 
performance 5-40X. Your satistfaction guaranteed RunCore Pro 70mm SATA Mini PCI-e SSD
RunCore Pro IV 70mm SATA II Mini PCI-e SSD
RunCore Pro IV 2.5 Inch SATA II SSD

You are not logged in.

#26 2007-12-25 3:25:27 pm

vofiwg
Senior Member
From: Germany
Registered: 2007-11-10
Posts: 322
Website

Re: EeePC in QEMU

It's not to hard to build such an image on your own. Just look at the posts before.

Here is my eeepc.vmx

Code:

#!/usr/bin/vmware
config.version = "8"
virtualHW.version = "4"
scsi0.present = "TRUE"
memsize = "512"
scsi0:0.present = "FALSE"
scsi0:0.fileName = "eeepc.vmdk"
scsi0:0.writeThrough = "TRUE"
floppy0.startConnected = "FALSE"
floppy0.fileName = "/dev/fd0"
Ethernet0.present = "TRUE"
Ethernet0.connectionType = "nat"
displayName = "EeePC"
guestOS = "otherlinux"
priority.grabbed = "normal"
priority.ungrabbed = "normal"
powerType.powerOff = "hard"
powerType.powerOn = "hard"
powerType.suspend = "hard"
powerType.reset = "hard"

sound.present = "TRUE"
sound.fileName = "-1"
sound.autodetect = "TRUE"

It's for vmware-server. I'm not sure, but i think it should work on vmware-player too. You just have to modify the file to your needs.

vofiwg

Last edited by vofiwg (2007-12-25 4:47:27 pm)

Offline

 

#27 2007-12-28 3:45:11 pm

PhantomsDad
Member
Registered: 2007-12-17
Posts: 39

Re: EeePC in QEMU

Running VirtualBox on my regular debian system and running Xubuntu as guest OS, I am able to get 800x480 screen size.  Just install the VirtualBox Guest Additions.  Among other things, this substitutes the vbox video driver for vesa in the xorg.conf file.  Then add the following ModeLine to the Monitor section of xorg.conf

Code:

        Modeline        "800x480" 44.32 800 832 1000 1032 480 489 496 505

and add the following to the Screen section

Code:

        SubSection      "Display"
                Depth   24
#                Modes   "1024x768" "800x600" "800x480" "640x480"
                Modes "800x480"
        EndSubSection

Uncomment the first Modes line if you want to default to 1024x768.  Then you can switch to 800x480 for testing using

xrandr -s 800x480

Should be possible to combine this with running eee system as guest OS to come pretty close to simulating eeePC in Virtual Box.

Thanks to this for the info.

http://angel-de-vicente.blogspot.com/


ASUS 4G 701 (7B) black, 2GB ram, BIOS v0910, DebianEeePC v5.0 (Lenny) from image 20081207 installed to SSD, with xfce4 v4.4.2.  Lean and mean!

Offline

 

#28 2008-01-31 1:54:34 pm

stpaddy81
New member
Registered: 2008-01-31
Posts: 4

Re: EeePC in QEMU

I am having a problem with installing on Virtual PC 2007.  Some of the instructions on the French website just don't work for me for some reason.  Could someone who's done it compile a step by step in English?  That would be great.  I'm trying to decide if I want one of these little guys, and being able to test out the environment would be awesome.

Offline

 

#29 2008-02-07 5:12:38 am

manatlan
Member
Registered: 2008-01-30
Posts: 31

Re: EeePC in QEMU

Interesting topic ... will try tonight ...

But do you know if it's possible to create a "qemu image disk" from my real SSD sda of my asus eee pc ?
Can i create a qemu image with dd tool ?

Offline

 

#30 2008-02-07 6:08:49 am

Nik_Doof
Member
From: Widnes, UK
Registered: 2008-01-24
Posts: 53
Website

Re: EeePC in QEMU

manatlan wrote:

But do you know if it's possible to create a "qemu image disk" from my real SSD sda of my asus eee pc ?
Can i create a qemu image with dd tool ?

Code:

dd if=/dev/sda of=/mnt/<samba?>/eee.raw bs=1024

From there it should be a RAW image that qemu-img can understand, so then convert it to the format you need:

Code:

qemu-img convert -f raw eee.raw -O vmdk eee.vmdk

This'll need about 12gb space in total, so be prepared.


eeePC 4G 701 (7B) | 512mb | 2gb SD | Debian Lenny + GNOME

Offline

 

#31 2008-02-08 1:47:24 am

tbharber
New member
Registered: 2008-02-07
Posts: 7

Re: EeePC in QEMU

I had issues with this as well.  Can someone link a vmware, parallels, etc... image to make it easy on us non linux super users  ;-)

Offline

 

#32 2008-03-08 11:17:26 am

eFfeM
Senior Member
Registered: 2007-10-21
Posts: 861
Website

Re: EeePC in QEMU

Not sure what happened to my previous post.

I've added the info in this thread in a wiki page http://wiki.eeeuser.com/howto:virtualeeepc
of course giving credit to TundraMan (I hope you don't mind I copied your text).

Feel free to update/adapt


All opinions, information etc in this forum post is copyrighted by me (eFfeM) unless indicated otherwise.
You are free to reuse whatever you want to, provided that:
1) you give credit to me and eeeuser.com whenever you reuse anything for all things you reused.
2) you do not pretend or create the illusion that your modifications are mine. I'll be responsible for my junk, you for yours smile

Offline

 

#33 2008-03-10 12:12:14 pm

funkaster
New member
Registered: 2008-03-10
Posts: 1

Re: EeePC in QEMU

eFfeM wrote:

Not sure what happened to my previous post.

I've added the info in this thread in a wiki page http://wiki.eeeuser.com/howto:virtualeeepc
of course giving credit to TundraMan (I hope you don't mind I copied your text).

Feel free to update/adapt

I've updated the wiki with info to have it working under Parallels. ;-)

Offline

 

#34 2008-03-10 6:19:45 pm

vofiwg
Senior Member
From: Germany
Registered: 2007-11-10
Posts: 322
Website

Re: EeePC in QEMU

Creating a Virtual Machine is quiet easier. No need to use loop-device. That should work under Windows too.

Look here: http://forum.eeeuser.com/viewtopic.php? … 52#p159152

vofiwg

Last edited by vofiwg (2008-03-10 6:20:23 pm)

Offline

 

#35 2008-03-28 10:50:09 am

arjenpdevries
New member
Registered: 2008-03-28
Posts: 2

Re: EeePC in QEMU

Hi all,

I wondered whether it would be useful to try and get the bios files from Asus instead of the ones found in the bochs downloads;
did anyone try that, or is it complicated?

Arjen

Offline

 

#36 2008-03-28 12:55:22 pm

vofiwg
Senior Member
From: Germany
Registered: 2007-11-10
Posts: 322
Website

Re: EeePC in QEMU

qemu cannot use the asus-bios in any way. Try installing (better not!) a bios from an lenovo-notebook on a dell. That will not work.

vofiwg

Offline

 

#37 2008-03-30 7:37:45 pm

SteveLawUK
ExtrEmE User
From: UK
Registered: 2008-03-11
Posts: 3637

Re: EeePC in QEMU

I'm trying to get this working on VirtualBox (to test reported problems with Asus Updates on the 4G (I have a 2G so can't use mine)) but I'm not getting any network, therefore no Internet, therefore no updates (the whole point of the thing!).  (Everything else is working fine)

(I used the "tulip" network module from kibobo (the original French site) which I suspect is the problem as that was for Virtual PC - where do I get one suitable for VirtualBox?  (Or is it something else?)

I'm sure others have got this working on VirtualBox, what do I need to do? 

Thanks.

Last edited by SteveLawUK (2008-03-30 7:39:05 pm)


2G Surf - "A cracking little machine."

If it ain't broke, don't fix it.

Offline

 

#38 2008-03-31 10:17:30 am

vofiwg
Senior Member
From: Germany
Registered: 2007-11-10
Posts: 322
Website

Re: EeePC in QEMU

This is the module for networking in Virtualbox:
http://www.freefilehosting.net/download/3edlb
Copy it to /lib/modules/2.6.21.4-eeepc/kernel/drivers/net/
After that do a sudo depmod -a
If it's not loading automaticly after reboot add a line with pcnet32 in /etc/modules.

Here is the module for sound:
http://www.freefilehosting.net/download/3edle
Copy it to /lib/modules/2.6.21.4-eeepc/kernel/sound/pci/

For getting sound working, you need to configure it with:

sudo alsaconf

vofiwg

Offline

 

#39 2008-03-31 10:38:27 am

SteveLawUK
ExtrEmE User
From: UK
Registered: 2008-03-11
Posts: 3637

Re: EeePC in QEMU

That's great vofiwg thanks.


2G Surf - "A cracking little machine."

If it ain't broke, don't fix it.

Offline

 

#40 2008-04-01 3:53:22 pm

pistooli
Senior Member
From: Budapest/Hungary
Registered: 2008-02-10
Posts: 292
Website

Re: EeePC in QEMU

There was a nice tutorial on sourceforge, how to run the EeePC virtually in the provided EeePC SDK... smile

You can test Eee PC softwares without a real Eee PC.
Create the Eee PC VMWare image by the procedures:

* Download and install Eee PC SDK. Remember to
  install the Eee PC development tools.

* Download the Eee PC 701 ISO files. (Choose your preferred language)
  Put it into the SDK host.

  Or, if you have an Eee PC restore DVD, you can generate
  an iso file by

    dd if=/dev/cdrom of=L701.iso

* There is a script vmware-convert that can convert the ISO file
  into a VMWare image:

    /usr/bin/vmware-convert L701_XX-1.0.X.XX.iso

  The image will be generated to /tmp/asus.vmdk.
  Move it to a directory you like.

* Download the VMWare config EeePC-701.vmx,
  put it into the same directory as asus.vmdk.

* Open the config file by VMWare Player. In the SDK, run it from
  the main menu -> Applications -> System -> VMWare Player.

* Enjoy it!


EeePC 901 20 GB Black, Xandros 1.7 Easy Mode (4GB), OSX 10.6.1 (32GB RunCore)
EeePC 900 20 GB White, Haiku Alpha 1 - working wifi and acpi battery info (4GB), OSX 10.5.6 (16GB)
(previously owned but sold: 701 4G, 1000H, S101 16GB)

Offline

 

#41 2008-04-01 5:06:15 pm

kenjiru
New member
Registered: 2008-02-15
Posts: 3

Re: EeePC in QEMU

ok, but if you don't want to install the SDK?

Offline

 

#42 2008-04-02 10:36:01 am

pistooli
Senior Member
From: Budapest/Hungary
Registered: 2008-02-10
Posts: 292
Website

Re: EeePC in QEMU

kenjiru wrote:

ok, but if you don't want to install the SDK?

you can still follow the tutorial... the only benefit of the SDK image is that it has the vmware player installed by default...


EeePC 901 20 GB Black, Xandros 1.7 Easy Mode (4GB), OSX 10.6.1 (32GB RunCore)
EeePC 900 20 GB White, Haiku Alpha 1 - working wifi and acpi battery info (4GB), OSX 10.5.6 (16GB)
(previously owned but sold: 701 4G, 1000H, S101 16GB)

Offline

 

#43 2008-04-02 3:16:13 pm

kenjiru
New member
Registered: 2008-02-15
Posts: 3

Re: EeePC in QEMU

I've mounted the iso image and tried to copy the P701L.gz file, but I'm getting an error.

Code:

radu@akira:/media/cdrom$ ls
2008.03.04_22.42.bld  blockcount.dat  boot  P701L.gz  user_start.dat
radu@akira:/media/cdrom$ cp P701L.gz /media/sda2/
cp: reading `P701L.gz': Input/output error

Is it normal? Should I download the iso file again?

Offline

 

#44 2008-04-28 4:19:18 pm

atcq
Member
From: BC - Germany
Registered: 2008-02-11
Posts: 72

Re: EeePC in QEMU

PhantomsDad wrote:

Running VirtualBox on my regular debian system and running Xubuntu as guest OS, I am able to get 800x480 screen size.  Just install the VirtualBox Guest Additions.  Among other things, this substitutes the vbox video driver for vesa in the xorg.conf file.  Then add the following ModeLine to the Monitor section of xorg.conf

Code:

        Modeline        "800x480" 44.32 800 832 1000 1032 480 489 496 505

and add the following to the Screen section

Code:

        SubSection      "Display"
                Depth   24
#                Modes   "1024x768" "800x600" "800x480" "640x480"
                Modes "800x480"
        EndSubSection

Uncomment the first Modes line if you want to default to 1024x768.  Then you can switch to 800x480 for testing using

xrandr -s 800x480

Should be possible to combine this with running eee system as guest OS to come pretty close to simulating eeePC in Virtual Box.

Thanks to this for the info.

http://angel-de-vicente.blogspot.com/

the problem is you need to have make, kernel-headers, etc. ... installed on your EeePC VirtualMachine ... has anybody an idea how to do that?


White Eee @ 630MHz - 1GB RAM - 4GB SSD - 8 GB SDHC - Debian testing/lenny (1.5GB GNOME install wink )
Desktop - Intel Core 2 Duo @ 2.6 GHz - 4GB RAM - 1.25TB HDD - NVIDIA GeForce 8800 GTS (512MB) - Ubuntu Hardy / Vista
----------------------------
so long and thanks for all the fish!

Offline

 

#45 2008-04-28 4:31:35 pm

eFfeM
Senior Member
Registered: 2007-10-21
Posts: 861
Website

Re: EeePC in QEMU

from the debian feed ?
See the wiki!


All opinions, information etc in this forum post is copyrighted by me (eFfeM) unless indicated otherwise.
You are free to reuse whatever you want to, provided that:
1) you give credit to me and eeeuser.com whenever you reuse anything for all things you reused.
2) you do not pretend or create the illusion that your modifications are mine. I'll be responsible for my junk, you for yours smile

Offline

 

#46 2008-05-27 5:15:32 am

pfr
New member
Registered: 2008-05-27
Posts: 1

Re: EeePC in QEMU

vofiwg wrote:

This is the module for networking in Virtualbox:
http://www.freefilehosting.net/download/3edlb
Copy it to /lib/modules/2.6.21.4-eeepc/kernel/drivers/net/
After that do a sudo depmod -a
If it's not loading automaticly after reboot add a line with pcnet32 in /etc/modules.

Here is the module for sound:
http://www.freefilehosting.net/download/3edle
Copy it to /lib/modules/2.6.21.4-eeepc/kernel/sound/pci/

These links aren't working anymore. Could someone please reupload them somewhere?

Offline

 

#47 2008-08-07 11:12:52 am

KernelJackal
New member
Registered: 2008-08-07
Posts: 4

Re: EeePC in QEMU

Here's a copy of the pcnet32.ko for 2.6.21.4-eeepc:
http://devel.teratechnologies.net/steve … pcnet32.ko

I found it on this German site: http://www.mindfactory.de/forum/netbook … chine.html

I also packaged it in an ISO9660 cd image so you can mount it from your virtual machine (don't worry, it's only 300k):
http://devel.teratechnologies.net/steve … t32_cd.iso

These files probably won't stay here forever, so maybe we can post them somewhere else?  Is there a central file repository for eeeuser.com?

I've also made a new initramfs (initrd) for the EeePC that allows you to go straight to a root shell instead of Xwindows.  Email me if you want it.

Offline

 

#48 2009-09-21 4:11:05 am

Von Floppy
Senior Member
Registered: 2008-02-20
Posts: 284

Re: EeePC in QEMU

*bump*

Anyone have the sound module listed above?

Offline

 

Board footer

Powered by PunBB 1.2.15
© Copyright 2002–2005 Rickard Andersson