Operating System
文章平均质量分 80
HashCodeWithJava
这个作者很懒,什么都没留下…
展开
-
Write Your Own Operating System Tutorial(1)
Lesson 1: The Boot SectorIn this lesson we’ll learn about the contents of the boot sector so that we can learn to write our own boot program.When the computer boots from a floppy, BIOS (Basic Inpu原创 2003-01-20 09:43:00 · 2531 阅读 · 0 评论 -
windbg the easy way
windbg the easy way (part1)Updated: 16.02.2006 Introduction Setup and configuration Setup Symbol server path CDB command line basics转载 2007-06-19 19:56:00 · 4236 阅读 · 0 评论 -
Unix-center.net用户空间提升到100M
Unix-Center.Net的存储服务器自2007年7 月22日起正式投入使用。存储服务器投入使用后,本站所有服务器均使用统一的存储系统,用户无需将同一份数据重复上载到不同的服务器上。在2007年7 月22日之前单独存放在T1000/Solaris系统上的用户数据,在此次系统升级中统一迁移到用户家目录的t1000子目录下。此外,所有注册用户的磁盘配额统一调整为100 MB(在此之前所有注册用户的转载 2007-07-24 11:32:00 · 1555 阅读 · 0 评论 -
嵌入式操作系统课程作业之Write OS
嵌入式操作系统课程作业之Write OS姓名:唐良 学号: 024304xxxx 一. 编译器的下载1. Djgpp在Windows开发环境下,没有直接提供gcc编译器,所以需要从自己去下载WINDOWS版本的gcc编译器.Windows下有cygwin, devcpp, djgpp等工具都带有gcc编译器.但是djgpp最小,而且可以产生最单纯的bi原创 2006-01-23 22:46:00 · 3247 阅读 · 0 评论 -
WinceJava移植
WinceJava移植Windows CE, I have decided, is worse than Windows, but on a smaller scale. That is because it contains the same amount of *functionality* and horrible APIs, but on a smaller scale. So if we原创 2005-12-01 09:16:00 · 3258 阅读 · 2 评论 -
转贴: 我来谈谈毕业设计(准备篇)
发信人: zyzyis (小菜∑十年一觉扬州梦), 信区: SCU_CS标 题: 我来谈谈毕业设计(准备篇)发信站: 四川大学蓝色星空站 (Sat Jan 15 11:15:53 2005), 转信很早就想写篇帖子来讲述自己做了近半年研究工作的心得,这次趁着2001级的各位准备本科毕业设计的机会,来讲一下自己对于如何做研究的经验, 也希望各位抛砖引玉, 不要再走前人的弯路.1)如何开始----始转载 2005-01-25 00:13:00 · 3108 阅读 · 2 评论 -
操作系统实验进程同步--读者优先
实习1:进程同步--读者优先实习要求在Windows 2000 环境下,创建一个包含n 个线程的控制台进程。用这n 个线程来表示n个读者或写者。每个线程按相应测试数据文件的要求,进行读写操作。请用信号量机制分别实现读者优先和写者优先的读者-写者问题。读者-写者问题的读写操作限制:1)写-写互斥;2)读-写互斥;3)读-读允许;读者优先的附加限制:如果一个读者申请进行读操作时已有另一读者正在进行读操原创 2004-12-11 22:59:00 · 4503 阅读 · 1 评论 -
操作系统实验进程同步--写者优先
实习1:进程同步 -- 写者优先实习要求在Windows 2000 环境下,创建一个包含n 个线程的控制台进程。用这n 个线程来表示n个读者或写者。每个线程按相应测试数据文件的要求,进行读写操作。请用信号量机制分别实现读者优先和写者优先的读者-写者问题。读者-写者问题的读写操作限制:1)写-写互斥;2)读-写互斥;3)读-读允许;读者优先的附加限制:如果一个读者申请进行读操作时已有另一读者正在进行原创 2004-12-11 23:05:00 · 3963 阅读 · 6 评论 -
操作系统实验--同步互斥
实习1:进程同步实习要求在Windows 2000 环境下,创建一个包含n 个线程的控制台进程。用这n 个线程来表示n个读者或写者。每个线程按相应测试数据文件的要求,进行读写操作。请用信号量机制分别实现读者优先和写者优先的读者-写者问题。读者-写者问题的读写操作限制:1)写-写互斥;2)读-写互斥;3)读-读允许;读者优先的附加限制:如果一个读者申请进行读操作时原创 2004-11-26 13:39:00 · 4664 阅读 · 3 评论 -
关于16位的OS尝试(2)
上次的文章结束的时候把一大段我的Boot Loader贴出来了,可能会让人迷惑.这里我又写了个小小的微缩版的16位实模式下的Boot Loader,大家看看吧.这里我再次说明一下,这个文章只是记录我自己做16位OS的经验,绝不是什么标准的教程.但是我也不会像其它的文章讲个boot loader就结束了.后面我还会做到kernel以及文件系统等很多东西BITS 16org 0x7c00ent原创 2003-03-05 09:06:00 · 2602 阅读 · 2 评论 -
Write Your Own Operating System Tutorial(5)
Lesson 5: Let’s Make It InteractiveAll of this printing stuff to the screen is fun, but no operating system would be any good at all if it did not provide any interactivity. Let’s make it read inpu原创 2003-01-21 09:06:00 · 1658 阅读 · 0 评论 -
Write Your Own Operating System Tutorial(4)
Lesson 4: Hello, WorldNow is the time you’ve all been waiting for. Finally we get to the classic “first” program. Every decent programming book has a “Hello, World” program, and now we know enough原创 2003-01-21 09:06:00 · 1902 阅读 · 1 评论 -
Write Your Own Operating System Tutorial(2)
Lesson 2: Making Our First Bootable DiskIn this lesson, we will learn how to create a boot program on a floppy disk. We will start by modifying the Microsoft DOS Boot Record.For our purposes, we原创 2003-01-20 09:50:00 · 1936 阅读 · 0 评论 -
关于16位的OS尝试(1)
首先我要申明的是我并不是个OS专家,关于OS的研究仅仅是出于自己的兴趣.但是我认为仅仅是为了自己,也应该把这段时间自己在写OS的经验写出来.我第一次做的这个OS是个16为实式模式下的OS.因为它比起保护模式要简单,而且容易上手.首先要找到一张1.44MB的软盘.我的OS就是写到软盘上的.当然你也可以写到硬盘上,不过你得要有两个或更多的硬盘才行.否则硬盘数据被破坏,计算机就无法启动了.在这里原创 2003-03-02 12:14:00 · 2711 阅读 · 1 评论 -
Write Your Own Operating System Tutorial(3)
Lesson 3: NASMIn this lesson we will learn to use an assembler to write our programs. In previous lessons we have assembled them using DEBUG. After playing around with this for a while, you will q原创 2003-01-21 09:06:00 · 2376 阅读 · 0 评论 -
Write Your Own Operating System Tutorial(7)
Lesson 7: Start Saying Goodbye To BIOSNow that we have a boot loader that will load our operating system, and thus can make our operating system larger than one sector, we can now begin to add some原创 2003-01-21 09:05:00 · 2190 阅读 · 0 评论 -
Write Your Own Operating System Tutorial(6)
Lesson 6: Boot LoaderEverything we’ve done so far has been placed entirely inside the boot sector. We can’t make our operating system very big at all if it is to fit in one sector. We need a way o原创 2003-01-21 09:06:00 · 2504 阅读 · 0 评论 -
cygwin 1.7升级之后,外部直接访问gcc返回Access is denied
最近一直在弄一些Linux下的环境开发。不过还是一样被抓狂。因为自己的电脑都是Windows系统,所以还是尽量想让工作都在Windows平台下完成。于是我又开始鼓捣cygwin这个东西。不过这次下了最新版本的cygwin1.7,gcc就出现问题了。首先是我的Eclipse的toolchain无法识别cygwin gcc,只能识别到的mingwgcc。然后是直接从cmd.exe原创 2010-01-17 04:35:00 · 5349 阅读 · 1 评论