aboutsummaryrefslogtreecommitdiff
path: root/content/posts/2021-12-03-debian-based-riced-up-distribution-for-developers.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/posts/2021-12-03-debian-based-riced-up-distribution-for-developers.md')
-rw-r--r--content/posts/2021-12-03-debian-based-riced-up-distribution-for-developers.md17
1 files changed, 15 insertions, 2 deletions
diff --git a/content/posts/2021-12-03-debian-based-riced-up-distribution-for-developers.md b/content/posts/2021-12-03-debian-based-riced-up-distribution-for-developers.md
index 5981392..365f632 100644
--- a/content/posts/2021-12-03-debian-based-riced-up-distribution-for-developers.md
+++ b/content/posts/2021-12-03-debian-based-riced-up-distribution-for-developers.md
@@ -5,6 +5,19 @@ date: 2021-12-03
5draft: false 5draft: false
6--- 6---
7 7
8**Table of contents**
9
101. [Introduction](#introduction)
112. [How should I approach this?](#how-should-i-approach-this)
123. [Desktop environments](#desktop-environments)
134. [Batteries included](#batteries-included)
14 1. [Docker recipe](#docker-recipe)
15 2. [Making bash pretty](#making-bash-pretty)
165. [Conclusion](#conclusion)
17
18
19## Introduction
20
8I have been using [Ubuntu](https://ubuntu.com/) for quite a longtime now. I have used [Debian](https://www.debian.org/) in the past and [Manjaro](https://manjaro.org/). Also had [Arch](https://archlinux.org/) for some time and even ran [Gentoo](https://www.gentoo.org/) way back. 21I have been using [Ubuntu](https://ubuntu.com/) for quite a longtime now. I have used [Debian](https://www.debian.org/) in the past and [Manjaro](https://manjaro.org/). Also had [Arch](https://archlinux.org/) for some time and even ran [Gentoo](https://www.gentoo.org/) way back.
9 22
10What I learned from all this is that I prefer running a bit older versions and having them be stable than run bleeding edge rolling release. For that reason, I stuck with Ubuntu for a couple of years now. I am also at a point in my life where I just don't care what is cool or hip anymore. I just want a stable system that doesn't get in my way. 23What I learned from all this is that I prefer running a bit older versions and having them be stable than run bleeding edge rolling release. For that reason, I stuck with Ubuntu for a couple of years now. I am also at a point in my life where I just don't care what is cool or hip anymore. I just want a stable system that doesn't get in my way.
@@ -149,7 +162,7 @@ This is some of the output from the installation script.
149Let's take a look at some examples in the installation script. 162Let's take a look at some examples in the installation script.
150 163
151 164
152##### Docker recipe 165#### Docker recipe
153 166
154```sh 167```sh
155# docker 168# docker
@@ -166,7 +179,7 @@ systemctl status docker --no-pager
166/sbin/usermod -aG docker $USERNAME 179/sbin/usermod -aG docker $USERNAME
167``` 180```
168 181
169##### Making bash pretty 182#### Making bash pretty
170 183
171I really like [Oh My Zsh](https://ohmyz.sh/), but I don't like zsh shell. When I used it, I constantly needed to be aware of it and running bash scripts was a pain. So, I was really delighted when I found out that a version for bash existed called [Oh My Bash](https://ohmybash.nntoan.com/). Let's take a look at the recipe for installing it. 184I really like [Oh My Zsh](https://ohmyz.sh/), but I don't like zsh shell. When I used it, I constantly needed to be aware of it and running bash scripts was a pain. So, I was really delighted when I found out that a version for bash existed called [Oh My Bash](https://ohmybash.nntoan.com/). Let's take a look at the recipe for installing it.
172 185