码迷,mamicode.com
首页 > 系统相关 > 详细

达内 10.26linux基础学习笔记

时间:2017-10-26 22:55:27      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:linux初级命令学习


------------------------------------------------------------------------------------------------------------------------------------------------

 0.真机远程管理虚拟机

    telnet 明文传输   tcp 23

    ssh    加密传输   tcp 22

      ssh -X root@172.25.0.11    //真机远程管理 server0虚拟机

      ssh -X root@172.25.0.10

  

     查看虚拟机版本及内核

     cat  /etc/redhat-release          //查看版本

     uname -r                       //查看内核

     cat /proc/meminfo               //查看内存

-------------------------------------------------------------------------------------------------------------------------------------

  1. 永久配置别名文件:

    alias n=‘ls -l‘                      //临时配置别名,在重启后会消失

    所以对于一些常用而且比较复杂的命令,可以采用永久配置别名文件

    例如: ssh -X root@172.25.0.11

           ssh -X root@172.25.0.10

    vim /root/.bashrc                    //修改root下的.bashrc文件(.xx代表隐藏文件)

    # .bashrc
    alias s=‘ssh -X root@172.25.0.11‘
    alias d=‘ssh -X root@172.25.0.10‘
          //设置别名为 d

    # User specific aliases and functions

    alias rm=‘rm -i‘
    alias cp=‘cp -i‘
    alias mv=‘mv -i‘
    alias zh=‘convmv -r -f GB2312 -t utf8 --notest‘

    # Source global definitions
    if [ -f /etc/bashrc ]; then
        . /etc/bashrc
    fi
    [root@room8pc205 /]# alias           //查看别名
    alias cp=‘cp -i‘ 
    alias d=‘ssh -X root@172.25.0.10‘
    alias egrep=‘egrep --color=auto‘
    alias fgrep=‘fgrep --color=auto‘
    alias grep=‘grep --color=auto‘
    alias l.=‘ls -d .* --color=auto‘
    alias ll=‘ls -l --color=auto‘
    alias ls=‘ls --color=auto‘
    alias mv=‘mv -i‘
    alias rm=‘rm -i‘
    alias s=‘ssh -X root@172.25.0.11‘    //设置成功
    alias which=‘alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde‘
    alias zh=‘convmv -r -f GB2312 -t utf8 --notest‘

    -----------------------------------------------------------------------------------------------------------------------------------

  2. 固定保存主机名:

    hostname  WW        //设置的主机名在关机或重启后会消失

    [root@iiid ~]# vim /etc/hostname      //修改etc下hostname文件

    desktop00.cn                        //修改主机名
    [root@iiid ~]# cat /etc/hostname      //查看hostname文件
    desktop00.cn
    [root@desktop00 ~]#                   //修改成功
    --------------------------------------------------------------------------------
    -------------------------------------------------------

  3. 配置IP地址,子网掩码,网关地址

    (1)修改etc下ifcfg-eth0文件,

     vim /etc/sysconfig/network-scripts/ifcfg-eth0

    DEVICE=eth0
    BOOTPROTO=dhcp      //
    ONBOOT=yes
    TYPE=Ethernet
    USERCTL=yes
    PEERDNS=yes
    IPV6INIT=no
    PERSISTENT_DHCLIENT=1

    (2)

    [root@desktop00 ~]# nmcli connection show       //查看网卡名称
    名称         UUID                                  类型            设备
    System eth0  5fb06bd0-0bb0-7ffb-45f1-d6edd65f3e03  802-3-ethernet       eth0
    [root@desktop00 ~]# nmcli connection modify ‘System eth0‘ ipv4.method manual ipv4.addresses ‘172.25.0.22/24 172.25.0.254‘ connection.autoconnect yes  //修改eth0的ip地址为172.25.0.10

                                                                    /24,网关为172.0.254

                                                connection.autoconnect yes // 开机自动启动

    [root@desktop00 ~]# nmcli connection up ‘System eth0‘   //激活网络配置

    [root@desktop00 ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0   //查看网卡配置
    DEVICE=eth0          //设备名
    BOOTPROTO=none     //手动配置
    ONBOOT=yes          //每次开机自动启动

    TYPE=Ethernet
    USERCTL=yes
    IPV6INIT=no
    PERSISTENT_DHCLIENT=1
    IPADDR0=172.25.0.10      //ip地址
    PREFIX0=24               //子网掩码
    GATEWAY0=172.25.0.254  //网关

    DEFROUTE=yes
    IPV4_FAILURE_FATAL=no
    NAME="System eth0"
    UUID=5fb06bd0-0bb0-7ffb-45f1-d6edd65f3e03

    ------------------------------------------------------------------------------------------------------------------------------------------

  4. 软件包管理:

    挂载:

    mkdir /rhel7
    mount /dev/cdrom /rhel7
    ls /rhel7
    ls /rhell7/Packages

    rpm -q firefox                     //查询软件包是否安装
    rpm -ivh /rhel7/Package/firefox..    //安装软件包
    rpm -e firefox                      //卸载软件包


    -------------------------------------------------------------------------------------------------------------------------------------------

  5. yum软件包管理/自动解决依赖关系

    *服务端与客户端在一块

    (1)服务端。 挂载光驱设备,让系统出现光盘内容即可

    (2)本地客户端,修改配置文件,指定本地为服务端

    vim /etc/yum.repos.d/ww.repo             //修改ect下,ww.repo文件
    [ww]                   //指定仓库名称
    name=ww               //仓库信息描述
    baseurl=file///rhel7          //指定本地为服务端,rhel7目录
    enabled=1                //开启本文件
    gpgcheck=0              //不开启签名认证

    yum clean all            //清除yum缓存

    yum repolist             //列仓库

    yum -y install firefox       //安装软件
    yum -y remove  firefox     //卸载软件


    *服务端与客户端分离

    (1)服务端已经完成。classroom搭建web服务,光盘所有内容

    (2)在server上指定yum仓库服务端


    vim /etc/yum/repos.d/ww.repo
    [ww]
    name=ww
    baseurl=http://172.25.254.254/content/rhel7.0/x86_64/dvd/
    enabled=1
    gpgcheck=0

------------------------------------------------------------------------------------------------------------------------------------------------

 6.使用wget下载工具

    ------wget 软件包的URL网址

    ------wget 软件包的URL网址 -O /目标路径/新文件名 *.rpm

    [root@server00 ~]# firefox 172.25.254.254

    [root@server00 ~]# wget http://172.25.254.254/content/rhel7.0/x86_64/errata/Packages/kernel-3.10.0-123.1.2.el7.x86_64.rpm -O /opt/ker.rpm

    [root@server00 ~]# ls /opt
    kernel-new.rpm  ker.rpm  rh  ww.txt

-----------------------------------------------------------------------------------------------------------------------------------------------

 7.配置永久dns服务器

   vim /etc/resolv.conf(tab)    //进入etc下res(tab)文件o

   nameserver 172.25.254.254


本文出自 “13392236” 博客,请务必保留此出处http://13402236.blog.51cto.com/13392236/1976561

达内 10.26linux基础学习笔记

标签:linux初级命令学习

原文地址:http://13402236.blog.51cto.com/13392236/1976561

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!