website/content/blog/systemdstartup.md

25 lines
450 B
Markdown
Raw Permalink Normal View History

2020-01-15 21:51:49 -05:00
---
title: "Analyzing Startup Times with Systemd"
date: 2019-12-26T22:52:59-05:00
draft: false
2022-01-02 14:24:29 -05:00
tags: [ "Linux" ]
2023-01-05 14:04:45 -05:00
medium_enabled: true
2020-01-15 21:51:49 -05:00
---
Startup times feeling slow? Check to see if there are any uneeded services slowing you down!
To see how long it takes to bootup
```bash
systemd-analyze
```
To see the length of time each service took to initialize
```bash
systemd-analyze blame
```
Then you can `disable` any services that you don't need.