Skip to content

Commit

Permalink
something new: 2024-12-27 11:56:28
Browse files Browse the repository at this point in the history
  • Loading branch information
pew committed Dec 27, 2024
1 parent 1e05bb4 commit 931bc09
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion man/apt.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
date created: Tuesday, April 16th 2019, 5:51:06 pm
date modified: Saturday, May 4th 2024, 4:09:41 pm
date modified: Friday, December 27th 2024, 11:56:24 am
tags:
---

Expand Down Expand Up @@ -39,6 +39,16 @@ you can also use **dpkg**:
dpkg -S /usr/bin/bsd-mailx
```

## find dependencies

for example, if you want to install `bsd-mailx` it'll try and install postfix as well, you can check the dependencies like this:

```shell
apt-cache depends bsd-mailx
```

and it'll show that `msmtp-mta` is listed, too

## pin version

sometimes you want or need to *pin* a package to a specific version since it'll break everything. looking at you, docker. this happened twice already.
Expand Down

0 comments on commit 931bc09

Please sign in to comment.