博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
http://wiki.meego.com/Image_Creation
阅读量:4139 次
发布时间:2019-05-25

本文共 1898 字,大约阅读时间需要 6 分钟。

 

This is to Create the meego image from the source code tree.

 

Currently, I use the src tree from the trunk,

 

 

 

 

 

1. Install git

sudo apt-get install git-core

 

2. Install the image-creator

http://wiki.meego.com/Image_Creation#Requirements

 

I build the image-creator src from

#git clone git://gitorious.org/meego-developer-tools/image-creator.git

#cd image-creator

#git checkout 0.17  #check Gitorious for the most recent tag

#make

#sudo make install

 

3. Create the RW Image for Meego Netbook Core

 

The kickstart file for the trunk src

http://repo.meego.com/MeeGo/builds/trunk/0.9.80.1.20100330.1/core/images/meego-preview-netbook-core/meego-preview-netbook-core.ks

 

* here we need to change .ks 's content.

@Core => @Meego Core

@Base => @Meego Base

 

And then

sudo mic-image-creator --cache=mycachedir --format=raw --config=meego-preview-netbook-core.ks

 

* Please make sure the format=raw. then it the generated object could

be executed in the QEMU environment.

 

4. Execute the RW Image in QEMU

sudo kvm -m 512 -boot c -hda meego-1.0.90-meego-preview-netbook-core-201009050731-sda.raw

(As it is only the core system, so no GUI will be output)

 

Then from another linux console, we can ssh the Meego Core system.

ssh meego@127.0.0.1 -p 6666

 

5. Create the RW Image for Meego Netbook ia32

The kickstart file for the trunk src

 

http://repo.meego.com/MeeGo/builds/trunk/1.0.90.1.20100903.1/netbook/images/meego-netbook-ia32/meego-netbook-ia32-1.0.90.1.20100903.1.ks

 

And then

sudo mic-image-creator --cache=mycachedir --format=raw --config=meego-preview-netbook-core.ks

 

It will output an error:

--debuginfo not supported.

 

That is because of the lower version image-creator.

 

We'd better

#cd image-creator

#git checkout 0.20.1  #check Gitorious for the most recent tag

#make clean

#make

#sudo make install

 

And do the mic-image-creator again.

 

6.  Execute the RW Image in QEMU

#sh ./qemugl_cmd.sh  This time the Meego GUI outputs.

 

转载地址:http://qhmvi.baihongyu.com/

你可能感兴趣的文章
Linux修改ip
查看>>
MySQL字段类型的选择与MySQL的查询效率
查看>>
Java的Properties配置文件用法【续】
查看>>
JAVA操作properties文件的代码实例
查看>>
IPS开发手记【一】
查看>>
Java通用字符处理类
查看>>
文件上传时生成“日期+随机数”式文件名前缀的Java代码
查看>>
Java代码检查工具Checkstyle常见输出结果
查看>>
北京十大情人分手圣地
查看>>
Android自动关机代码
查看>>
Android中启动其他Activity并返回结果
查看>>
2009年33所高校被暂停或被限制招生
查看>>
GlassFish 部署及应用入门
查看>>
iWatch报错: Authorization request cancled
查看>>
iWatch报错: Authorizationsession time out
查看>>
X-code7 beta error: warning: Is a directory
查看>>
Error: An App ID with identifier "*****" is not avaliable. Please enter a different string.
查看>>
X-code beta 开发iWatch项目,运行没有错误,但是某些操作一点就崩,而且找不错误的原因场景一
查看>>
Xcode 报错: Extra argument in call
查看>>
iTunes Connect 上传APP报错: Communication error. please use diagnostic mode to check connectivity.
查看>>