计算机英语讲课笔记07

I. Sign-in Result

  • Let’s take a look at the screenshot of the sign-in result.
    在这里插入图片描述
  • There are thirty nine students in our class. This time thirty five student have signed in and four students have not. Three students asked for leave because they are preparing for the coming competition. Only one student is not here and did not ask for leave, so he is absent.

II. Operating System

1. The Concept of Operating System

  • The Operating System is a kind of system software that manages hardware and software resources of a computer and provides a user interface to operate on the computer.
  • User interfaces fall into two categories: CUI (Character User Interface) and GUI (Graphical User Interface)
  • CUI operating systems require users to remember quite a few commands to operate on the computer and are not very friendly to ordinary users. Many ordinary users like to use GUI operating systems because it’s very easy and convenient for them to operate on the computer by using a mouse and need not remember any commands.

2. Common Operating Systems

(1) DOS

  • 1981 – The Wintel era began.
    I B M − P C { I n t e l   C P U M i c r o s o f t   D O S \mathrm{IBM-PC}\begin{cases} \mathrm{Intel\ CPU}\\ \mathrm{Microsoft\ DOS}\\ \end{cases} IBMPC{ Intel CPUMicrosoft DOS
  • DOS - Diskette Operating System
    在这里插入图片描述
  • We can use dir command to display the information of directories.
  • Look at the above screenshot. The current directory is C:\Users\Administrator>. If we want to know what subdirectories and files this directory contains, we can use the dir command to get the information.
    在这里插入图片描述
  • We know that there are four files and thirty subdirectories in the current directory.
  • Task: Create a new directory named computer in the current directory.
  • mkdir means make directory
    在这里插入图片描述
  • Task: Rename the computer directory to 计算机 directory.
  • rename <old name> <new name>
    在这里插入图片描述
  • Task: Copy the 计算机 directory to the root directory of D drive.
  • xcopy <source directory> <target directory>
    在这里插入图片描述
  • Task: Move the D:\计算机 to the root directory of E drive and rename the name to computer.
    在这里插入图片描述
  • Access has been denied. How can you solve this problem?
  • Task: Delete the D:\计算机 directory.
    在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/howard2005/article/details/124090387