Computer English lecture notes 07

I. Sign-in Result

  • Let’s take a look at the screenshot of the sign-in result.
    insert image description here
  • 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{ IntelCPU M i c r o s o f t D O  S
  • DOS - Diskette Operating System
    insert image description here
  • 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.
    insert image description here
  • 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.
  • mkdirmeansmake directory
    insert image description here
  • Task: Rename the computer directory to 计算机 directory.
  • rename <old name> <new name>
    insert image description here
  • Task: Copy the 计算机 directory to the root directory of D drive.
  • xcopy <source directory> <target directory>
    insert image description here
  • Task: Move the D:\计算机 to the root directory of E drive and rename the name to computer.
    insert image description here
  • Access has been denied. How can you solve this problem?
  • Task: Delete the D:\计算机 directory.
    insert image description here

Guess you like

Origin blog.csdn.net/howard2005/article/details/124090387