AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / unix / 问题 / 760461
Accepted
AngryHacker
AngryHacker
Asked: 2023-11-03 02:05:35 +0800 CST2023-11-03 02:05:35 +0800 CST 2023-11-03 02:05:35 +0800 CST

如何从命令行查看所有启动任务?

  • 772

我试图找出为什么某个应用程序在我的 Raspberry Pi 上运行,结果发现有六种方法可以在启动时执行应用程序。这是我找到的。

  • /etc/rc.local
  • /home/pi/.bashrc
  • 将脚本复制到 /etc/init.d/
  • 系统控制
  • 通过 crontab 进行安排

有没有办法从命令行识别启动时运行(或计划运行)的所有内容?

raspberry-pi
  • 1 1 个回答
  • 29 Views

1 个回答

  • Voted
  1. Best Answer
    Marcus Müller
    2023-11-03T04:27:55+08:002023-11-03T04:27:55+08:00

    由于 debian 是一个基于 systemd 的发行版,因此您可以获得所有不错的工具!

    因此,我不仅为您提供了系统处于“我已完成启动!”状态所需启动的所有事项的列表,而且还提供了一些其他工具的示例,您可以使用这些工具来获得更深入的了解上次启动期间发生的情况。

    # Gives you a text-art tree of all the units that get started for
    # your default boot target:
    
    sudo systemctl list-dependencies default.target
    
    
    # Takes the log from the last boot, and analyzes the critical chain, i.e.,
    # what the things were the "next thing to happen" waited for the longest.
    # For example, for a webserver to start, you might need to wait both for
    # network to be up, as well as for the database server to be ready. The
    # webserver might be the thing that the multiuser target was waiting for
    # the longest, and not the synchronization of mails. 
    # This critical chain will show what was "blocking" the system from
    # continuing to boot for the most part. It is a useful tool if you want to 
    # figure out how to optimize boot speed:
    
    sudo systemd-analyze critical-chain
    
    
    # Takes the log from the last boot, and list what took how long to
    # start (and if it finishes, and isn't persistent, to finish), and
    # outputs it as SVG data, which you can look at e.g. in your browser:
    
    sudo systemd-analyze plot > boot-timings.svg
     
    

    请注意,这仅包含“正常”系统启动中的内容。如果您有一个计时器(无论是通过 cron 还是其他方式),那么 systemd 就无法知道这一点。但这总是一样的——这总是一个很好的方式来忘记你做了一些滥用 cron 作为启动时启动的工具的事情,所以 Linux 发行版非常严格地不允许软件包设置实际上并不存在的 cronjobs cronjobs 但隐藏了启动时的启动程序。

    • 1

相关问题

  • Raspberry:从 USB 笔而不是 SD 卡启动

  • vwdial RPI 上的错误初始化字符串 [关闭]

  • 如何从家里的树莓派服务器自动更新 Route53?

  • /etc/init.d/hostname.sh 仍然是 debian 拉伸的选项吗?

  • “pacman -Syu”“可能”破坏了我的系统,因为未安装引导

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    模块 i915 可能缺少固件 /lib/firmware/i915/*

    • 3 个回答
  • Marko Smith

    无法获取 jessie backports 存储库

    • 4 个回答
  • Marko Smith

    如何将 GPG 私钥和公钥导出到文件

    • 4 个回答
  • Marko Smith

    我们如何运行存储在变量中的命令?

    • 5 个回答
  • Marko Smith

    如何配置 systemd-resolved 和 systemd-networkd 以使用本地 DNS 服务器来解析本地域和远程 DNS 服务器来解析远程域?

    • 3 个回答
  • Marko Smith

    dist-upgrade 后 Kali Linux 中的 apt-get update 错误 [重复]

    • 2 个回答
  • Marko Smith

    如何从 systemctl 服务日志中查看最新的 x 行

    • 5 个回答
  • Marko Smith

    Nano - 跳转到文件末尾

    • 8 个回答
  • Marko Smith

    grub 错误:你需要先加载内核

    • 4 个回答
  • Marko Smith

    如何下载软件包而不是使用 apt-get 命令安装它?

    • 7 个回答
  • Martin Hope
    user12345 无法获取 jessie backports 存储库 2019-03-27 04:39:28 +0800 CST
  • Martin Hope
    Carl 为什么大多数 systemd 示例都包含 WantedBy=multi-user.target? 2019-03-15 11:49:25 +0800 CST
  • Martin Hope
    rocky 如何将 GPG 私钥和公钥导出到文件 2018-11-16 05:36:15 +0800 CST
  • Martin Hope
    Evan Carroll systemctl 状态显示:“状态:降级” 2018-06-03 18:48:17 +0800 CST
  • Martin Hope
    Tim 我们如何运行存储在变量中的命令? 2018-05-21 04:46:29 +0800 CST
  • Martin Hope
    Ankur S 为什么 /dev/null 是一个文件?为什么它的功能不作为一个简单的程序来实现? 2018-04-17 07:28:04 +0800 CST
  • Martin Hope
    user3191334 如何从 systemctl 服务日志中查看最新的 x 行 2018-02-07 00:14:16 +0800 CST
  • Martin Hope
    Marko Pacak Nano - 跳转到文件末尾 2018-02-01 01:53:03 +0800 CST
  • Martin Hope
    Kidburla 为什么真假这么大? 2018-01-26 12:14:47 +0800 CST
  • Martin Hope
    Christos Baziotis 在一个巨大的(70GB)、一行、文本文件中替换字符串 2017-12-30 06:58:33 +0800 CST

热门标签

linux bash debian shell-script text-processing ubuntu centos shell awk ssh

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve