From 9d5d88f2674f57dc728e1998199483b406657002 Mon Sep 17 00:00:00 2001 From: jamke <47451874+jamke@users.noreply.github.com> Date: Fri, 8 Feb 2019 21:18:08 +0700 Subject: [PATCH] Fix typo: "thow" and remove extraspaces Fix typo: "thow" and remove extraspaces --- managing-os/templates/debian.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/managing-os/templates/debian.md b/managing-os/templates/debian.md index 82d93c2f..447ed13d 100644 --- a/managing-os/templates/debian.md +++ b/managing-os/templates/debian.md @@ -96,11 +96,11 @@ The lesson is that you should carefully look at what is being installed to your By default, templates in 4.0 only have a loopback interface. -Some packages will thow an error on installation in this situation. For example, Samba expects to be configured using a network interface post installation. +Some packages will throw an error on installation in this situation. For example, Samba expects to be configured using a network interface post installation. One solution is to add a dummy interface to allow the package to install correctly: - ip link add d0 type dummy + ip link add d0 type dummy ip addr add 192.168.0.1/24 dev d0 ip link set d0 up