zoukankan      html  css  js  c++  java
  • 2021-日常记录


    1、windows 8 安装Net framework3.
    windows 8 安装Net framework3.5
    dism.exe /online /enable-feature /featurename:NetFX3 /Source:H:sxs
    sxs是光盘中的目录

      

    2、centos7克隆后网卡异常

    克隆后网卡异常
    # nmcli connection up ens160 
    Error: Connection activation failed: No suitable device found for this connection (device lo not available because device is strictly unmanaged).
    
    解决方法:
    dhclient ens160 
    nmcli networking on
    systemctl restart NetworkManager
    

     3、VMware Workstation添加网卡,没有配置文件

    # nmcli con show
    NAME                UUID                                  TYPE      DEVICE 
    eth0                7196bc93-c3fb-4199-849b-cfb69d9e9b09  ethernet  eth0   
    Wired connection 1  738087a9-eb2a-3736-bbbe-15c1abceeb20  ethernet  eth1   
    Wired connection 2  14fc84c1-6734-3f19-a05b-162fbdafc0b8  ethernet  eth2   
    # nmcli connection delete "Wired connection 1"  
    Connection 'Wired connection 1' (738087a9-eb2a-3736-bbbe-15c1abceeb20) successfully deleted.
    # nmcli connection add con-name eth1 type ethernet ifname eth1
    Connection 'eth1' (4931a904-7d6b-4fb4-a694-f103e48cc7cc) successfully added.
    # nmcli con show
    NAME                UUID                                  TYPE      DEVICE 
    eth0                7196bc93-c3fb-4199-849b-cfb69d9e9b09  ethernet  eth0   
    eth1                4931a904-7d6b-4fb4-a694-f103e48cc7cc  ethernet  eth1   
    Wired connection 2  14fc84c1-6734-3f19-a05b-162fbdafc0b8  ethernet  eth2   
  • 相关阅读:
    bash实现多进程运行
    Erlang实现进程池
    Apache 和nginx支持跨域访问
    thinkphp 发送邮件
    判断PC和移动端 判断移动端系统
    check 选择框checked属性读取不到
    php使用PDO,并连接SQL
    SQL2005:由于目标机器积极拒绝,无法连接
    frozenui 移动端ui
    纯jquery 滚动评论
  • 原文地址:https://www.cnblogs.com/gtms/p/14380375.html
Copyright © 2011-2022 走看看