Linux系列基础版认识Linux,以及安装登录CentOS

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux系列基础版认识Linux,以及安装登录CentOS相关的知识,希望对你有一定的参考价值。

1. 认识Linux,以及安装登录CentOS
1.1 学习方法及工具介绍
    1.1.1 定位
        1.1.1.1 工作的地点选择,优先选择一线城市,机会多,学习的空间大;
        1.1.1.2 目标选择,第一份工作拿多少?两年后呢?
        1.1.1.3 合理安排时间
        1.1.1.4 学习方法:
                1.1.1.4.1 预习 preview
                1.1.1.4.2 今日事,今日毕 things of today, done today
                1.1.1.4.3 记笔记 notes
                1.1.1.4.4 及时复习 revise in time
                1.1.1.4.5 合理利用身边的资源 ultilize resource around
                1.1.1.4.6 问题排查 troubleshooting
                1.1.1.4.7 注释 annotation
        1.1.1.5 安装包
                1.1.1.5.1 操作系统:CentOS 7.3
                1.1.1.5.2 虚拟机软件:VMware workstation 10
                1.1.1.5.3 远程登录终端软件:putty 和 Xshell
        1.1.1.6 一些小工具
                1.1.1.6.1 印象笔记:app.yinxiang.com
                1.1.1.6.2 博客:blog.51cto.com
                1.1.1.6.3 密码容器:keepass, keepass.info
                1.1.1.6.4 网盘:pan.baidu.com
                1.1.1.6.5 软件版本修改地址:update in r.aminglinux.com  coding.net
                1.1.1.6.6 代码和命令:centos7.aminglinux.com
1.2 Linux的发行版
     1.2.1 Linux的历史概要
         1.2.1.1 Unix
         1.2.1.2 Minix(Unix-like)
         1.2.1.3 linux kernel develped by linux torvalds 
         1.2.1.4 GNU(GNU is not unix), gpl protocol
     1.2.2 Linux的发行版本
         1.2.2.1 Debian(1993) -> Ubuntu(2004)
         1.2.2.2 Slackware(1993) -> SUSE(1994)
         1.2.2.3 RedHat(1994) -> CentOS(2003)
         1.2.2.4 RedHat -> RedFlag(1999)
         1.2.2.5 RedHat -> Fedora -> RHCL(2002)   
         
1.3 创建虚拟机
    1.3.1 虚拟机的安装以及配置
        1.3.1 安装虚拟机
            1.3.1.1 typical -> linux CentOS 64 -> 20G single file -> Memory 1G, CPU 1 pcs -> NAT mode;
        1.3.2 安装CentOS7
            1.3.1.2 Partition -> 标准分区 -> /boot 200M, swap 2048M, / otherM -> CD/DVD(IDE) ISO file roll in -> open VMware -> install resource of local, select mini0install -> install location -> I need setting partition -> root password settings; 

1.4 配置ip
    1.4.1 dhclient //自动获取网卡的动态ip地址
    1.4.2 ip addr/ ip add / ifconfig //获取网卡名以及ip地址
    1.4.3 Edit -> 虚拟网络编辑器
        1.4.3.1 lo 回环地址
        1.4.3.2 ens* 网卡地址
        1.4.3.3 子网 <-> 网段
        1.4.3.4 网关 <-> 路由
    1.4.4 ls /etc/sysconfig/network-scripts/ifcfg-ens*
    1.4.5 vi /etc/sysconfig/network-scripts/ifcfg-ens*
    1.4.6 修改动态ip为静态
        1.4.6.1 BootProto=static
        1.4.6.2 OnBoot=yes
        1.4.6.3 IP ADDR=192.168.180.130
        1.4.6.4 NETMASK=255.255.255.0
        1.4.6.5 GATEWAY=192.168.180.2
        1.4.6.6 DNS1=119.29.29.29
    1.4.7 CTRL+l  //clear the screen;
    1.4.8 systemctl restart network.service //重启网络服务,用于CentOS7中,CentOS6中不需要写restart;    
    1.4.9 ping  //ping网络
    1.4.10 dhclient -r //kill dhclient
    1.4.11 route -n //read gateway
    1.4.12 修改虚拟机的网址:
        1.4.12.1 将NAT模式 -> 桥接模式 -> 删除桥接,restore NAT模式;
    1.4.13 yum install -y net-tools //安装net-tools;
    1.4.14 yum provides "/*/vim" //查询安装vim的命令;

1.5 用putty和XShell远程连接并访问主机
    1.5.1 远程连接
        1.5.1.1 快照 (右键 -> 拍摄快照);
        1.5.1.2 Session:
            1.5.1.2.1 hostname: 192.168.133.130
            1.5.1.2.2 port: 22
        1.5.1.3 用户身份验证:
            1.5.1.3.1 方法: password/public key/keyboard Interactive/GSSAPI
            1.5.1.3.2 用户名:root
            1.5.1.3.3 密码:***

以上是关于Linux系列基础版认识Linux,以及安装登录CentOS的主要内容,如果未能解决你的问题,请参考以下文章

linux基础版本及开源协议

1Linux基础认识

第一篇:Linux系统的安装以及服务控制

linux系统认识

Linux系列Centos 7安装以及网络配置

linux基础-认识系统1-登录与注销