Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/pages/blog/posts/create-deb-package.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,11 @@ cd /var/www/html/deb
dpkg-scanpackages . /dev/null | gzip -9c > Packages.gz
```

After doing so we can add the mirror to our sources on our system by modifying the file `/etc/apt/sources.list.d/[package].list` and putting
After doing so we can add the mirror to our sources on our system by modifying the file
```
/etc/apt/sources.list.d/[package].list
```
and putting

```bash
deb [trusted=yes] http://localhost/deb ./
Expand Down