mirror of
https://github.com/Brandon-Rozek/website.git
synced 2024-11-09 10:40:34 -05:00
New post
This commit is contained in:
parent
a5a1ba29cd
commit
4258447bca
1 changed files with 16 additions and 0 deletions
16
content/blog/resumingapt.md
Normal file
16
content/blog/resumingapt.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
title: "Resuming Stopped Apt Updates"
|
||||
date: 2020-02-29T17:58:14-05:00
|
||||
draft: false
|
||||
tags: ["ubuntu", "linux"]
|
||||
---
|
||||
|
||||
Especially on the Raspberry Pi, it is quite often for me to lose connection while updating. I know some people setup `screen` or `tmux` sessions so that they can easily reconnect. I'm not good at remembering to do this. [Angus and Cas](https://unix.stackexchange.com/a/46546) on StackExchange shared that to resume a stopped update...
|
||||
|
||||
```bash
|
||||
sudo kill $(pgrep dpkg)
|
||||
sudo dpkg --configure --pending
|
||||
sudo apt install -f
|
||||
```
|
||||
|
||||
Which will then configure the packages that have already been installed but not configured yet and finish installing packages.
|
Loading…
Reference in a new issue