mirror of
https://github.com/Brandon-Rozek/website.git
synced 2025-10-09 14:31:13 +00:00
Website snapshot
This commit is contained in:
parent
ee0ab66d73
commit
50ec3688a5
281 changed files with 21066 additions and 0 deletions
23
content/blog/systemdstartup.md
Normal file
23
content/blog/systemdstartup.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
---
|
||||
title: "Analyzing Startup Times with Systemd"
|
||||
date: 2019-12-26T22:52:59-05:00
|
||||
draft: false
|
||||
images: []
|
||||
---
|
||||
|
||||
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.
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue