From 65bc5e5fb2676b0464c794c8f83e3d8fd6f86343 Mon Sep 17 00:00:00 2001 From: Lewis Sneddon <61014463+sneddonlewis@users.noreply.github.com> Date: Sun, 4 Sep 2022 13:20:23 +0100 Subject: [PATCH] Fix Ubuntu version snippet Removed trailing '/' from snippet to cat Ubuntu version as per bash response `cat: /etc/issue/: Not a directory` --- lessons/chroot.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lessons/chroot.md b/lessons/chroot.md index f3abd9d..cdac39e 100644 --- a/lessons/chroot.md +++ b/lessons/chroot.md @@ -14,7 +14,7 @@ Let's try it. Start up a Ubuntu VM however you feel most comfortable. I'll be us If you're in Windows and using WSL, just open a new WSL terminal in Ubuntu. ✌️ -To see what version of Ubuntu you're using, run `cat /etc/issue/`. `cat` reads a file and dumps it into the output which means we can read it, and `/etc/issue` is a file that will tell us what distro we're using. Mine says `Ubuntu 18.04.3 LTS \n \l`. +To see what version of Ubuntu you're using, run `cat /etc/issue`. `cat` reads a file and dumps it into the output which means we can read it, and `/etc/issue` is a file that will tell us what distro we're using. Mine says `Ubuntu 18.04.3 LTS \n \l`. Okay, so let's attempt to use `chroot` right now.