summaryrefslogtreecommitdiff
path: root/_posts/2015-03-28-reset-forgotten-password-on-luks-encrypted-ubuntu.markdown
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2015-11-14 17:33:00 -0500
committerBen Burwell <ben@benburwell.com>2015-11-14 17:33:00 -0500
commitd4f60d006e8045e0cffe14f9b93cd1451edc04b5 (patch)
treeebbdb1b8f096d2cfa5ff184a2d713c430af1cd64 /_posts/2015-03-28-reset-forgotten-password-on-luks-encrypted-ubuntu.markdown
parent0d9ce29b25327f8b31040a7d945121ceaef6dc0d (diff)
parent760918b5822f8d913d0b8135a240a82d9607f5a4 (diff)
Merge pull request #9 from benburwell/redesign
change shell to bash
Diffstat (limited to '_posts/2015-03-28-reset-forgotten-password-on-luks-encrypted-ubuntu.markdown')
-rw-r--r--_posts/2015-03-28-reset-forgotten-password-on-luks-encrypted-ubuntu.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/_posts/2015-03-28-reset-forgotten-password-on-luks-encrypted-ubuntu.markdown b/_posts/2015-03-28-reset-forgotten-password-on-luks-encrypted-ubuntu.markdown
index 63739d4..b3154df 100644
--- a/_posts/2015-03-28-reset-forgotten-password-on-luks-encrypted-ubuntu.markdown
+++ b/_posts/2015-03-28-reset-forgotten-password-on-luks-encrypted-ubuntu.markdown
@@ -28,7 +28,7 @@ After waiting for about 30 seconds or a minute, I saw a message that waiting for
Next, I mounted the freshly-unlocked disk with <code>mount -o rw /dev/sda3 /root</code>, taking advantage of the pre-existing empty directory. From there, I used <code>chroot</code> to run <code>passwd</code> in the OS.
-{% highlight shell %}
+{% highlight bash %}
$ chroot /root passwd
$ chroot /root passwd myUserName
{% endhighlight %}