zoukankan      html  css  js  c++  java
  • arch优化开机

    查看开机时间

    systemd-analyze

    具体开机时间

    systemd-analyze blame

    你可以systemctl --all | grep not-found 查看有哪些服务挂掉了。然后再考虑disable它。
    ———————————————————————————

    关于这条命令,作一点补充。打开终端并执行:
    systemctl --all --no-pager | grep -i not-found
    会得到一串找不到相应文件的服务,然后对每个服务执行以下命令:(以 plymouth-start.service 为例)
    sudo systemctl mask plymouth-start.service
    输出:
    ln -s */dev/null* */etc/systemd/system/plymouth-start.service*
    则表示成功。

  • 相关阅读:
    note
    deep learning
    matlab远程调试
    faster rcnn
    十一旅行
    python生成随机数
    python 读取mat文件
    opencv anaconda
    python文件操作
    python换行
  • 原文地址:https://www.cnblogs.com/reddusty/p/5098162.html
Copyright © 2011-2022 走看看