*다*
Bronze개인
팔로워0 팔로우
소개
등록된 소개글이 없습니다.
전문분야 등록된 전문분야가 없습니다.
판매자 정보
학교정보
입력된 정보가 없습니다.
직장정보
입력된 정보가 없습니다.
자격증
  • 입력된 정보가 없습니다.
판매지수
전체자료 1
검색어 입력폼
  • Operation System concepts with java 2 장 summary
    An operating system is software that manages the computer hardware, as well as providing an environment for application programs to run.Perhaps the most visible aspect of an operating system is the interface to the computer system it provides to the human user.For a computer to do its job of executing programs, the programs must be in main memory.Main memory is only large storage area that the processor can access directly.It is an array of words or bytes, ranging in size from millions to billions.Each word in memory has its own address.The main memory is usually a volatile storage device that loses its contents when power is turned off or lost.Most computer systems provide secondary storage as an extension of main memory.Secondary storage provides a from of nonvolatile storage that is capable of holding large quantities of data permanently.The most common secondary-storage device is a magnetic disk, which provides storage of both programs and data.The wide variety of storage systems in a computer system can be organized in a hierarchy according to speed and cost.The higher levels are expensive, but they are fast.As we move down the hierarchy, the cost per bit generally decreases, whereas the access time generally increases.There are several different strategies for designing a computer system.Uniprocessor systems have only a single processor, while multiprocessor systems contain two or more processors that share physical memory and peripheral devices.The most common multiprocessor design is symmetric multiprocessing (or SMP), Where all processor are considered peers and run independently of one another.Clustered systems are a specialized form of multiprocessor systems and consist of multiple computer systems connected by a local area network.To best utilize the CPU, modern operating systems employ multiprogramming, which allows several jobs to be in memory at the same time, thus ensuring that the CPU always has a job to execute.Time-Sharing systems are an exten-sion of multiprogramming wherein CPU scheduling algorithms rapidly switch between jobs, thus providing the illusion that each job is running concurrently.The operating system must ensure correct operation of the computer system.To prevent ser programs from interfering with the proper operation of the system, the hardware has two modes: user mode and kernel mode.Various instructions (such as I/O instructions and halt instructions) are privileged and can be executed only in kernel mode.The memory in which the operating system resides must also be protected from modification by the user.A timer prevents infinite loops.These facilities (dual mode, privileged instructions, memory protection, and timer interrupt) are basic building blocks used by operating systems to achieved correct operations.A process (or job) is the fundamental unit of work in an operating system.Process management includes creating and deleting processes and providing mechanisms for processes to communicate and synchronize with each other.An operating system manages memory by keeping track of what parts of memory are being used and by whom.The operating system is also responsible for dynamically allocating and freeing memory space.Storage space is also managed by the operating system;this includes providing file system for representing files and directories and managing space on mass-storage devices.Operating systems must also be concerned with protecting and securing the operating system and users.Protection measures are mechanisms that control the access of processes or users to the resources made available by the computer system.운영 체제는 컴퓨터 하드웨어를 관리하는 소프트웨어뿐만 아니라 실행하는 응용 프로그램에 대한 환경도 제공합니다.아마 운영 체제의 가장 눈에 띄는 면은 인간 사용자에게 제공하는 컴퓨터 시스템의 인터페이스입니다.실행 프로그램의 작업을 하기 위해 컴퓨터 프로그램은 메인 메모리에 있어야합니다.메인 메모리는 프로세서가 직접 접근 할 수있는 큰 저장 공간입니다.그것은 수백만에서 수십억까지 다양한 크기의 워드 또는 바이트 배열입니다.메모리의 각 워드는 자신의 주소를 가지고 있습니다.메인 메모리는 일반적으로 전원이 꺼져 있거나 손실 된 경우 그 내용을 잃는 휘발성 저장 장치입니다.대부분의 컴퓨터 시스템은 메인 메모리의 확장으로, 보조 스토리지를 제공합니다.보조 저장 장치는 영구적으로 대량의 데이터를 저장할 수있는 비 휘발성 스토리지에서 제공하고 있습니다.가장 일반적인 보조 저장 장치는 두 프로그램의 데이터 스토리지를 제공하는 자기 디스크입니다.컴퓨터 시스템의 스토리지 시스템의 다양한 속도와 비용에 따라 계층 구조로 구성 할 수 있습니다.높은 수준은 비싸지만 빠르다.우리는 계층 아래로 갈수록 액세스 시간은 일반적으로 증가 한편, 비트 당 비용은 일반적으로 감소했다컴퓨터 시스템 설계를위한 몇 가지 전략이 있습니다.멀티 프로세서 시스템에서는 실제 메모리와 주변 장치를 공유하는 두 개 이상의 프로세서를 포함하는데 반해 단일 프로세서 시스템에서는 단일 프로세서를 가지고 있습니다.가장 일반적인 멀티 프로세서 설계는 모든 프로세서가 peers가 서로 독립적으로 실행되는 대칭형 멀티 프로세싱 (또는 SMP)입니다.클러스터 시스템은 멀티프로세서 시스템의 특수 형태이며, 로컬영역 네트워크로 연결된 여러 컴퓨터 시스템으로 구성되어 있습니다.가장 CPU를 활용하기 위해 현대적인 운영 체제는 여러 작업이 CPU에 항상 실행할일이 있도록 메모리에 동시에 할수있는 멀티프로그래밍을 사용한다.시분할시스템은 어떤점에서 멀티프로그래밍의 확장이다 CPU 일정 알고리즘을 각작업이 빠르고 동시에 실행되는 착각을 제공한다.운영 체제는 컴퓨터 시스템의 올바른 작동을 확인해야합니다.시스템의 적절한 작동을 방해 버리는 프로그램을 방지하기 위해 하드웨어는 두 가지 모드가 있습니다 : 사용자 모드와 커널 모드.다양한 방법 (입출력 방법 및 중단 지시 등) 특권이며 커널 모드에서 실행 할 수 있습니다.운영 체제가 포함되어있는 메모리는 사용자가 수으로부터 보호해야한다.타이머는 무한루프를 방지한다.이러한 시설 (듀얼 모드 , 권한지시 메모리 보호 , 타이머 인터럽트)가 올바른 작업을 달성하기 위해 운영 체제에서 사용되는 기본 building blocks입니다.
    공학/기술| 2013.03.31| 2페이지| 1,000원| 조회(118)
    미리보기
전체보기
해캠 AI 챗봇과 대화하기
챗봇으로 간편하게 상담해보세요.
2026년 04월 21일 화요일
AI 챗봇
안녕하세요. 해피캠퍼스 AI 챗봇입니다. 무엇이 궁금하신가요?
9:48 오후
문서 초안을 생성해주는 EasyAI
안녕하세요 해피캠퍼스의 20년의 운영 노하우를 이용하여 당신만의 초안을 만들어주는 EasyAI 입니다.
저는 아래와 같이 작업을 도와드립니다.
- 주제만 입력하면 AI가 방대한 정보를 재가공하여, 최적의 목차와 내용을 자동으로 만들어 드립니다.
- 장문의 콘텐츠를 쉽고 빠르게 작성해 드립니다.
- 스토어에서 무료 이용권를 계정별로 1회 발급 받을 수 있습니다. 지금 바로 체험해 보세요!
이런 주제들을 입력해 보세요.
- 유아에게 적합한 문학작품의 기준과 특성
- 한국인의 가치관 중에서 정신적 가치관을 이루는 것들을 문화적 문법으로 정리하고, 현대한국사회에서 일어나는 사건과 사고를 비교하여 자신의 의견으로 기술하세요
- 작별인사 독후감