From 760918b5822f8d913d0b8135a240a82d9607f5a4 Mon Sep 17 00:00:00 2001 From: Ben Burwell Date: Sat, 14 Nov 2015 17:32:30 -0500 Subject: change shell to bash --- .../2014-05-31-less-file-compilation-for-jekyll-github-pages.markdown | 2 +- ...015-03-28-reset-forgotten-password-on-luks-encrypted-ubuntu.markdown | 2 +- _posts/2015-04-23-getting-login-to-work-ubuntu-15.04-nvidia.markdown | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_posts/2014-05-31-less-file-compilation-for-jekyll-github-pages.markdown b/_posts/2014-05-31-less-file-compilation-for-jekyll-github-pages.markdown index 3bd3e78..84eeaac 100644 --- a/_posts/2014-05-31-less-file-compilation-for-jekyll-github-pages.markdown +++ b/_posts/2014-05-31-less-file-compilation-for-jekyll-github-pages.markdown @@ -13,7 +13,7 @@ I recently wrote about [migrating my website to GitHub Pages](/writing/migrating Using [Git hooks](http://git-scm.com/book/en/Customizing-Git-Git-Hooks), it’s possible to run a script at certain points during the Git workflow. To take advantage of this in my case, I added a small bash script to `.git/hooks/pre-commit`: -{% highlight shell %} +{% highlight bash %} #!/bin/sh export PATH=/usr/local/bin:$PATH 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 mount -o rw /dev/sda3 /root, taking advantage of the pre-existing empty directory. From there, I used chroot to run passwd in the OS. -{% highlight shell %} +{% highlight bash %} $ chroot /root passwd $ chroot /root passwd myUserName {% endhighlight %} diff --git a/_posts/2015-04-23-getting-login-to-work-ubuntu-15.04-nvidia.markdown b/_posts/2015-04-23-getting-login-to-work-ubuntu-15.04-nvidia.markdown index 757abb9..ed0142b 100644 --- a/_posts/2015-04-23-getting-login-to-work-ubuntu-15.04-nvidia.markdown +++ b/_posts/2015-04-23-getting-login-to-work-ubuntu-15.04-nvidia.markdown @@ -15,7 +15,7 @@ By entering Ctrl + Alt + F3, I was able to drop In the same shell, I ran: -{% highlight shell %} +{% highlight bash %} wget http://us.download.nvidia.com/XFree86/Linux-x86_64/349.16/NVIDIA-Linux-x86_64-349.16.run chmod u+x NVIDIA-Linux-x86_64-349.16.run sudo service lightdm stop -- cgit v1.2.3