美文网首页
Ubuntu使用过程出现的问题

Ubuntu使用过程出现的问题

作者: gb_QA_log | 来源:发表于2018-03-27 17:44 被阅读0次
    • 1 访问网站很慢
      更换DNS无效,chrome-f12发现是google*资源问题,
      解决:屏蔽google相关字体库/更改hosts指向国内镜像ip

    • 2 查看硬件信息

    #内存
    top -u xugb
    #中央处理器
    more /proc/cpuinfo
    #lscpu
    #以太网
    lspci | grep -i 'eth'
    ipconfig
    ethtool ens2f0ee
    #硬盘
    sudo fdisk -l
    lsblk
    
    • 3 创建用户
    adduser username
    passwd
    userdel username
    
    • 4 XX-net
    sudo service miredo status
    sudo vim /etc/miredo/miredo.conf
    ps -ef | grep miredo
    kill -9 1234
    sudo service miredo restart
    sudo ./app/XX-Net/xx_net.sh start
    
    • 5 linux下chrome 打不开有脚本的部分网页
      带以下参数打开chrome即可
     google-chrome --args --allow-scripts
    
    • 6 ibus输入中文有问题
    ibus restart
    

    相关文章

      网友评论

          本文标题:Ubuntu使用过程出现的问题

          本文链接:https://www.haomeiwen.com/subject/fsmscftx.html