文件管理 · 2022年8月3日

bochs268配置文件|安卓上运行xp bochs的配置文件修改了内存和CPU就不能运行bochs了怎么回事我把128修

⑴ bochs不会用,急急

把硬盘c调成disk,然后选择你下载的andows.img,再然后到硬件选项里调好内存,调好之后点那个绿色的start,就开了。

⑵ bochs.apk 和配置文件SDL和镜像文件不要没解压的

bochs里没有SDL文件夹,因为文件夹里的文件是不固定的,比如配置文件和镜像文件什么的,你需要在机身自带的SD卡或者外置的SD卡里新建一个文件夹,把镜像的名字改为c.img,然后放入配置文件,如果支持,可以再做一个D盘,方法是:打开SDL文件夹,新建一个叫做“HHD”的文件夹,里面可以可以保存自己的文件或者程序。

⑶ 如何在linux上使用Bochs

安装到Bochs的主页: 上下载最新的Bochs RPM安装包。 以root的身份安装:#rpm -ivh bochs-2.2.1-1.i586.rpm其实RPM安装包给你装上了四个新程序:bochs,bochs-dlx,bximage,bxcommit, 以及相关文档。安装完毕后,你可以先试试bochs-dlx,它是DLX Linux的一个demo。$ bochs-dlx —————————————————————DLX Linux Demo, for Bochs x86 Emulator ————————————————————— Checking for bochs binary…ok Checking for DLX linux directory…ok Checking for /usr/bin/gzip…ok Checking for /home/wangcong/.bochsdlx directory…ok Entering /home/wangcong/.bochsdlx Running bochs 00000000000i[APIC?] local apic in initializing ========================================================================Bochs x86 Emulator 2.2.1Build from CVS snapshot on July 8, 2005 ======================================================================== 00000000000i[ ] LTDL_LIBRARY_PATH not set. using compile time default '/usr/lib/bochs/plugins' 00000000000i[ ] BXSHARE not set. using compile time default '/usr/share/bochs' 00000000000i[ ] reading configuration from bochsrc.txt 00000000000i[ ] lt_dlhandle is 0x8bac490 00000000000i[PLGIN] loaded plugin libbx_x.la 00000000000i[ ] installing x mole as the Bochs GUI 00000000000i[ ] using log file bochsout.txt马上,你就会看到一个X11窗口。显示的是VGA BIOS信息,然后是加载Linux的信息。以root身份登录,试试DLX Linux。安装成功。使用下面是一些重要的文件:/usr/bin/bochs Bochs启动程序/usr/bin/bximage Bochs带的制作磁盘镜像文件的工具/usr/bin/bxcommit 把redolog放进flat磁盘镜像文件中去的交互工具/usr/share/doc/bochs/bochsrc-sample.txt Bochs配置文件的例子/usr/share/bochs/BIOS-bochs-* ROM BIOS镜像文件/usr/share/bochs/VGABIOS-* 与VGA BIOS镜像文件相关的文件/usr/bin/bochs-dlx 启动Bochs中DLX linux的程序/usr/share/bochs/dlxlinux/ DLX Linux的目录,包含它的磁盘镜像文件和配置文件/usr/share/bochs/keymaps/*.map X11和SDL的keymap列表命令bohcs可以接受4个参数:-q 加载配置文件后跳过开始菜单;-f configfile 识别指定的配制文件;-n 不加载配置文件;-h 打印帮助信息;-qf configfile 相当于同时使用-q和-f两个选项。使用Bochs,你必须有一个配置文件,或者你通 过-f参数指定,或者让Bochs自己搜索。配置文件的作用是告诉Bochs到哪里寻找镜像 文件,模拟层如何工作等。Bochs搜索配置文件的顺序是:.bochsrc 在当前目录中</TT CLASS="FILENAME">bochsrc 在当前目录中bochsrc.txt 在当前目录中</TT CLASS="FILENAME">.bochsrc 在用户的主目录中bochsrc 在 /etc 目录中以dlx-linux的配置文件为例,讲一下如何定制你需要的配置文件。dlx-linux的 配置文件是/usr/share/doc/bochs目录中的bochsrc-sample.txt。它的内容 如下:############################################################### # bochsrc.txt file for DLX Linux disk image. ############################################################### # how much memory the emulated machine will have megs: 32 # filename of ROM images romimage: file=$BXSHARE/BIOS-bochs-latest, address=0xf0000 vgaromimage: file=$BXSHARE/VGABIOS-lgpl-latest # what disk images will be used floppya: 1_44=floppya.img, status=inserted floppyb: 1_44=floppyb.img, status=inserted # hard disk ata0: enabled=1, ioaddr1=0x1f0, ioaddr2=0x3f0, irq=14 ata0-master: type=disk, path="hd10meg.img", cylinders=306, heads=4, spt=17 # choose the boot disk. boot: c # default config interface is textconfig. #config_interface: textconfig #config_interface: wx #display_library: x # other choices: win32 sdl wx carbon amigaos beos macintosh nogui rfb term svga # where do we send log messages? log: bochsout.txt # disable the mouse, since DLX is text only mouse: enabled=0 # enable key mapping, using US layout as default. # # NOTE: In Bochs 1.4, keyboard mapping is only 100% implemented on X windows. # However, the key mapping tables are used in the paste function, so # in the DLX Linux example I'm enabling keyboard_mapping so that paste # will work. Cut&Paste is currently implemented on win32 and X windows only. keyboard_mapping: enabled=1, map=$BXSHARE/keymaps/x11-pc-us.map #keyboard_mapping: enabled=1, map=$BXSHARE/keymaps/x11-pc-fr.map #keyboard_mapping: enabled=1, map=$BXSHARE/keymaps/x11-pc-de.map #keyboard_mapping: enabled=1, map=$BXSHARE/keymaps/x11-pc-es.map以#开头的每一行都是注释。注释写得很明白。megs: 32指明想要模拟32M的内存。注意:后面的数字最大为2048,但是因为主机系统的限制,在 大多数系统上,Bochs甚至不能支持1024M。romimage: file=$BXSHARE/BIOS-bochs-latest, address=0xf0000指明ROM的镜像文件在哪,开机时ROM BIOS被加载到哪里。$BXSHARE是环境变量,指明 Bochs的share目录,在Linux上为/usr/share/bochs。这一般不用改动。下面的vgaromimage 指明VGA ROM的镜像文件位置。floppya: 1_44=floppya.img, status=inserted floppyb: 1_44=floppyb.img, status=insertedfloppya是第一软驱,floppyb是第二软驱。后面标明的是软驱镜像文件的位置,软盘 是否插入。可以根据你的需要做适当的修改。ata0: enabled=1, ioaddr1=0x1f0, ioaddr2=0x3f0, irq=14 ata0-master: type=disk, path="hd10meg.img", cylinders=306, heads=4, spt=17打开ata0通道,另外还有ata1,ata2,ata3。对于每一个通道,都必须指明两个IO地址和IRQ。 ata0是默认被打开的,它的ioaddr1=0x1f0, ioaddr2=0x3f0, irq=14。ata0-master 是主ata0通道,后面指明它附带的设备是硬盘,硬盘镜像文件路径,硬盘柱面数,磁头数等参数。boot: c指明启动次序,可以是cdrom,floppy,disk。不过由于历史的原因a和c也能被接受。 也可以这样来写:boot: cdrom, floppy, diskmouse: enabled=0指明鼠标是否可见。keyboard_mapping: enabled=1, map=$BXSHARE/keymaps/x11-pc-us.map打开对虚拟US键盘的重映射,keymap必须被指明。更多的配置文件选项说明见/usr/share/doc/bochs/user/bochsrc.html。 如何编写键盘的keymap列表见/usr/share/doc/bochs/user/keymap.html。制作磁盘镜像bximage是Bochs自带的制作磁盘镜像的工具,具有 良好的交互性,使用很方便。运行bximage,你会看到:========================================================================bximageDisk Image Creation Tool for Bochs$Id: bximage.c,v 1.25.2.1 2005/07/06 20:40:00 vruppert Exp $ ======================================================================== Do you want to create a floppy disk image or a hard disk image? Please type hd or fd. [hd]询问我们是建立一个软盘镜像还是硬盘镜像,默认的是硬盘。我们直接按回车,选择硬盘 镜像。What kind of image should I create? Please type flat, sparse or growing. [flat]我们想建立一个简单的镜像,选择默认的flat。回车。Enter the hard disk size in megabytes, between 1 and 32255 [10]想要多少Mbyte的大小?键入你想要的大小。I will create a 'flat' hard disk image withcyl=2heads=16sectors per track=63total sectors=2016total size=0.98 megabytes What should I name the image? [c.img]在上一步中输入“1”后,显示相关的硬盘信息。询问想要什么镜像文件名字?默认的是 c.img。输入hd.img回车。Writing: [] Done. I wrote 1032192 bytes to hd.img. The following line should appear in your bochsrc:ata0-master: type=disk, path="hd.img", mode=flat, cylinders=2, heads=16, spt=63建立完毕。然后你就可以使用这个镜像,用Bochs做实验了。

⑷ 安卓上运行xp bochs的配置文件修改了内存和CPU就不能运行bochs了怎么回事我把128修

内存可以改8848

⑸ bochs配置文件中的bochsre.txt中的megs是什么意思

首先要明白我们为什么要配置Bochs——配置的目的是什么。原因很简单,因为Bochs能够模拟多种硬件平台,所以它需要知道你想模拟一个什么样的平台。配置的方法:配置的方法有2种(应该是,我没有仔细考证)1.运行Bochs后会自动让你选择进行配置;2.通过配置文件配置。第一种方法我觉得比较麻烦,没有仔细研究,我选择的是第二种通过配置文件配置的方法。Bochs为我们提供了一个配置文件的模版,这个模版为bochsrc-sample.txt,可以在 bochs的安装目录中找到。稍微看一下,你就会知道:在配置文件中”#”为注释符号,表明后面#后面的全部是注释的内容(类似于C / C++ 中的行注释“//”)

⑹ 问个bochs虚拟机的问题

删除了 $BXSHARE/ ,dos.bxrc 文件内容:# how much memory the emulated machine will havemegs: 32# filename of ROM imagesromimage: file=BIOS-bochs-latestvgaromimage: file = VGABIOS-lgpl-latest# what disk images will be used floppya: 1_44=last.img, status=inserted# choose the boot disk.boot: floppy# where do we send log messages?log: bochsout# disable the mouse, since DLX is text onlymouse: enabled=0keyboard_mapping: enabled=1, map=keymaps/x11-pc-us.map

⑺ Bochs添加网卡的方法

首先你安装在磁盘镜像中的系统就有要求。win95,win98是不支持wifi的,精简版的Windows如果删除了网络软件也不行。然后需要在bochs的配置文件中(存放在SDL文件夹中)配置一下虚拟网卡的。网卡这样配置:*********网上流传的各种给Bochs添加网卡的方法,都只是提到了使用Niclist程序获取信息然后在bxrc配置文件里面添加一行ne2k: ioaddr=0x240, irq=11, mac=b0:c4:20:00:00:01, ethmod=win32, ethdev=\Device\NPF_{AAAAAAAA-BBBB-CCCC-DDDD-EEEEEEEEEEEE}这样的配置,但是添加之后运行在bochs上的虚拟操作系统仍然无法找到网卡,为什么?实际上,除了上面一行,还要添加一行到bxrc配置文件里面:i440fxsupport: enabled=1, slot1=ne2k这样才能真正“插上”这块虚拟网卡!!!! *********对于磁盘镜像的问题你参考一篇帖子:“【TANK.SEX】还在用BOCHS模拟不能上网的XP? 你OUT了!最新可上网的WINDOWS 2000!”网络就行了连接发不了。如果满意请采纳

⑻ bochs配置文件在哪下载

1.解压模拟器,安装里面Bochs apk在手机上,然后把里面的SDL目录放在SD卡根目录下。2.不管是XP还是98、95镜像都必须改名为andows.img,不然bochs进不去3.最后把HDD文件夹移到sd卡根目录,然后打开Bochs就可以进入Xp了,打开我的电脑,是不是多了一个磁盘E了,以后我们只需要把下载的东西放到HDD文件夹里面,打开我的电脑E盘就可以找到了打开在SDL下文件名为bochsrc.txt的配置文件用文本编辑打开,具体修改如下#how much memorythe emulated machine will have megs 64cpu: count—I,ips =9000000,reset_on triple_fault=l,ignore bad msrs=l megs:64这里表示为XP提供多大运行内存,本人手机运行内存512所以我内存设置了256,大家可以根据手机本身剩馀运行内存进行填写!(注意设置的运行内存不能高于你剩下的运行内存,不然b。chs会强制退出的)cpu:count=l ips =4500000,这里前面的count表示机将提供几个cpu来运行XP根据己手机情况填写,几核的就填几,ips这悝就是一个频率,可以说很关键,还是根据己手机性能选择,我的mt6588的cpu设首为count :4,ips为99000000还不错(注:IMIPS =10000001PS我的建议是50一55MIPS)通过上下左右滑动触屏可以控制鼠标移动;按音量上键=单击鼠标,音量下键=右击鼠标;菜单键:回车键,返回键:Esc键,按屏幕左下角,久违的输入法就调用出来了。在手机XP里怎么实现双击操作呢?很简单啦,先移动鼠标到指定位首后按音量上键(单击),再按菜单键(回车)不就行喽?哈哈,有木有很简单!.如何退出手机XP系统,这个更简单呢。按手机“主页键“,再重新打HBOCHS,点”Yes“后..你懂得。

⑼ bochs的配置文件在哪里下载的,有的朋友可以发过来给我吗

不知道你的配置是什么样的,只能给你个模版,自己去改吧http://wenku..com/link?url=QtQDU0JgTHl63-asd0R3AEexYoMc2UOOD53vxiUKjBf_

⑽ 急,Ubuntu中运行Bochs时出问题,关于配置文件的

################################################################ Configuration file for Bochs################################################################ how much memory the emulated machine will havemegs: 32# filename of ROM imagesromimage: file=/你bochs-2.4.6的路径/bios/BIOS-bochs-latestvgaromimage: file=你bochs-2.4.6的路径/bios/VGABIOS-lgpl-latest# what disk images will be used floppya: 1_44=pm.img, status=inserted# choose the boot disk.boot: floppy# where do we send log messages?log: bochsout.txt# disable the mousemouse: enabled=0# enable key mapping, using US layout as default.keyboard_mapping: enabled=1, map=你bochs-2.4.6的路径/gui/keymaps/x11-pc-us.map保存到 你bochs-2.4.6的路径 名字是 bochsrc 终端 输入 bochs -f bochsrc 以配置bochsrc启动