码迷,mamicode.com
首页 > 其他好文 > 详细

虚拟化课程--命令总结

时间:2019-05-15 00:20:48      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:probe   ifconf   内容   scsi   find   没有   type   sda   work   

find
    【范围】 如果不加,指定当前目录为查找范围
    -name "xxxx"    #名字可以支持文件符号匹配             
        *(表示任意长度的任意字符)
    -type d f s c b l p
    -mtime
    -size
    -nouser    没有属主
    -nogroup  没有属组
    -prome    #指定权限过滤
    !
    |xargs / -ok / -exec
    例子:find -name "xen-netfront.ko" -exec mv {} xen.ko \;

stat
    查看三个时间
    atime ctime mtime(ll)

touch
    创建新文件
    如果文件已存在,就更新mtime为当前

top
    动态查看当前系统的资源使用情况
    xl top <domname/domid>


setenforce 0
    临时关闭selinux
getenforce
    查看selinux的当前状态
    /etc/selinux/config #永久修改

ifconfig
    查看网卡(都是up的)
    ifconfig -a (所有的网卡,包括down的)
    ifconfig br0 up
    ifup eno16777736
    ifconfig <dev> IP/MASK [up|down]

fdisk
    -l    查看本地磁盘分区情况
    fdisk [磁盘文件]    #对该磁盘做分区
        n p 1    +200M
        n p 2    +1024M
        w q p t L

Base-T-1000 -- e1000

磁盘Linux下命名:
    sd    iscsi sata scsi
        sda
            sda1
            sda2
        sdb
    hd    IDE接口
        hda
            hda1
            hda2
        hdb

rpm
    红帽的包管理工具
    -ivh    #数据包的安装
    -qa        #查看这个包是否安装
    -ql        #查看这个包到底安装了那些内容

sync
partprobe(5)、partx(6) -- CPU内存识别硬盘设备的变更
kpartx、sync

esc + .    #直接调用上一条命令的最后一个内容
    cd /etc/sysconf/network-scripts/
    ~]#cd

ss -tnl    #显示系统监听的套接字端口

虚拟化课程--命令总结

标签:probe   ifconf   内容   scsi   find   没有   type   sda   work   

原文地址:https://www.cnblogs.com/BurnovBlog/p/10865455.html

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