Software installation (1) - detailed tutorial on installing Linux (Red Hat 6) operating system on VM16Pro under win10

  1. This blog post introduces a detailed tutorial of the Linux (Red Hat 6) operating system under VM16Pro, mainly including: the detailed process of Linux operating system installation, Linux operating system initialization process and Linux operating system VM Tools installation process.
    Required software download link:
    VM16Pro software:
    link: https://pan.baidu.com/s/1C2tp7c_FXpJnxJYU1hV4aQ
    extraction code: sl8u
    Red Hat 6 mirror:
    link: https://pan.baidu.com/s/1mc6joGAonruIAigj9EevJg
    extraction code : Rtso


  1. For the detailed installation process of the Linux operating system,
    select the typical installation, the next step;
    1
    choose to install the operating system later, the next step;
    2
    select the Linux operating system, RHEL6, the next step;
    3
    edit the virtual machine name and select the storage location, the next step;
    4
    allocate 20G of memory, remove Divide into multiple files, next step ;
    5
    finish;
    6
    edit virtual machine settings, select the system image, confirm;
    7
    turn on the virtual machine;
    8
    install the operating system, press Enter;
    9
    select skip, press enter;
    10
    next step;
    11
    select simplified Chinese, next step;
    12
    Choose American English keyboard, next step;
    13
    choose basic storage device, next step;
    14
    choose "Yes, clear all data";
    15
    edit host name, next step;
    16
    choose Shanghai, next step;
    17
    set password, next step;
    18
    custom partition, next One step;
    19
    20
    21
    22
    23
    24
    25
    26
    27
    select "write changes to disk";
    28
    29
    select "minimal"-"customize now", the next step;
    30
    check the following options;
    31
    32
    33
    installation process, wait a few minutes;
    34
    35


  1. After the Linux operating system is
    restarted during the initialization process , the system displays the following figure, click "forward":
    36
    click "forward";
    37
    select "register later", click "forward";
    38
    39
    click "forward";
    40
    users can be created or not (not created here, According to each person's needs), click "forward";
    41
    click "forward";
    42
    click "finish";
    43
    installation is complete.
    44
    45
    46
    47


  1. During the VM Tools installation process of the Linux operating system,
    select "Install VM Tools" in the drop-down menu of the virtual machine, and the "VM Tools" file will appear on the Linux desktop;
    1
    2
    open the terminal;
    3
    enter the commands shown in the figure below (the required commands will also be attached at the end of the blog post ), press Enter;
    4
    when the installation is started, the option “Enter” appears (ie keep the default settings); the
    5
    installation is complete, restart the system;
    6
    copy the files from the physical machine to check whether the "VM Tools" installation is successful.
    7
    The above is the whole process of installing the Red Hat 6 virtual machine. If the virtual machine login password is forgotten, please refer to the following link: Forgot login password solution .


  1. appendix
与VM Tools安装过程相关命令:
注意:
复制命令即可,不是复制全部内容,即只需要复制umount等命令,
用ls命令查看当前文件夹内容,而/vmware-tools-distrib/等内容,
输入/vmw后用Tab键自动补全

ls                        #查看当前目录下内容
umount /dev/sr0           #卸载VM Tools
mount /dev/sr0 /media     #挂载到media
cd /media/                #切换到media下
tar zxvf VMwareTools~.tar.gz -C /root/ #解压VMwareTools.tar.gz
cd /root/                 #切换到root下
cd /vmware-tools-distrib/ #切换到vmware-tools-distrib下
./vmware-install.pl       #./开始安装VMTools
reboot                    #重启系统

Guess you like

Origin blog.csdn.net/qq_39032096/article/details/113247040