比如下载了一个Oracle 8i Enterprise Edtion 8.1.7.0.1 with OPS.它是一个.tar文件。用 tar vxf linux81701.tar 揭开后,在系统中生成了一个./Disk1的目录。 接下来用 mkisofs -r -J -V O8iEE81701 -o O8iEE81701.iso ./Disk1 生成一个名为O8iEE81701.iso的光盘镜像文件。 传到windows系统中用一个刻录软件制作成CD就行了。 或者用cdrecord在unix系统中直接烧。 如果用cdrecord,先执行 cdrecord -scanbus 得到SCSI设备的ID号,再用...
by bigluo - Linux文档专区 - 2005-07-06 00:38:50 阅读(648) 回复(0)
有谁弄过QEMU没有,我现在正在研究,遇到了一个问题。 我的QEMU是自己下载源码,然后编译完成后。使用如下命令: ./qemu-system-arm -kernel arm-test/zImage.integrator -initrd arm-test/arm_root.img 发现kernel是可以正常启动的,但是这个arm-test里面的东西都是从官网上下载的。 如果要跑我自己编译的kernel 源代码,这个initrd和kernel image该如何制作,请教了。
ENV: SUSE 11.1 1. use command "fdisk -l" to see disk info, it can print the partition info of all hard disk( if you have more than one disk ), it does not include the un-partitioned partition linux-me6t:~ # fdisk -lDisk /dev/sda: 320.0 GB, 320072933376 bytes255 heads, 63 sectors/track, 38913 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytesDisk identifier: 0x487f487e Device Boot ...
when create linux device file =================================================================================== from: http://www.ibm.com/developerworks/linux/library/l-devfs.html developerWorks > linux > Using DEVFS How device programmers can write code for the devfs environment developerWorks Help us improve this content Level: Intermediate Alessandro Rubini (rubini@gnu.org), Li...
How to create and use a patch in linux Updated March 17, 2003 created November 19, 2001摘自http://www.cpqlinux.com/patch.html Creating a Patch File: diff -Naur olddir newdir > new-patch - or - diff -Naur oldfile newfile >new-patch A Note concerning Patch and the number of Directory Levels used: Try to make sure when creating a patchfile that you have the same number of directories levels for both...
主线程pthread_create创建一堆线程序,正常执行,收到reset命令后,执行pthread_cancel停止开始启动的线程,重新读参数,再次pthread_create,但是这次pthread_create函数就block在那里了. 请高人指教. 是否跟thead tls有关系.
Creating a Patch File:diff -Naur olddir newdir > new-patch - or - diff -Naur oldfile newfile >new-patch A Note concerning Patch and the number of Directory Levels used:Try to make sure when creating a patchfile that you have the same number of directories levels for both the olddir path and newdir path. For Ex: --- old/modules/pcitable Mon Sep 27 11:03:56 1999 +++ new/modules/pcitable Tue Dec 19 2...
How to create and use a patch in linux Updated March 17, 2003 created November 19, 2001 Creating a Patch File:diff -Naur olddir newdir > new-patch - or - diff -Naur oldfile newfile >new-patch A Note concerning Patch and the number of Directory Levels used:Try to make sure when creating a patchfile that you have the same number of directories levels for both the olddir path and newdir path. For Ex...
最近在ubuntu网站上下载了MID版本的img文件,想要制作一个启动U盘,用ubuntu网站上提供的工具直接写入U盘后,发现syslinux并不能正常启动,发生了找不到linux内核错误。初步判断是USB启动方式的错误,可能是img默认的启动方式与我的Menlow平台USB启动方式冲突(查看BIOS,usb只支持HDD模式)。 想了一个办法,先用usb-imagewriter工具将img写入到U盘中,然后呢又用mkisofs -r -o ubuntu-mid.iso /dev/cdrom得到一个MID的iso文件...
通过GRUB(包括WINGRUB)命令行模式引导linux的安装 在开机的时候,等GRUB画面出来,按c键进入命令行模式;如果您用的是WINGRUB,也有这样的模式,也按c键,道理是一样的; 在linux和Windows中的GRUB,都有命令行的功能,这个功能极为有用,它不仅仅能引导系统,有时也能进行修复系统之用;再者就是引导安装linux; 在安装系统的时候最好把linux iso 解压到一个空的fat分区.并解压出 vmlinuz initrd.img 两个文件.安装好grub for...