diff options
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.md | 17 |
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 | |||
| 5 | draft: false | 5 | draft: false |
| 6 | --- | 6 | --- |
| 7 | 7 | ||
| 8 | **Table of contents** | ||
| 9 | |||
| 10 | 1. [Introduction](#introduction) | ||
| 11 | 2. [How should I approach this?](#how-should-i-approach-this) | ||
| 12 | 3. [Desktop environments](#desktop-environments) | ||
| 13 | 4. [Batteries included](#batteries-included) | ||
| 14 | 1. [Docker recipe](#docker-recipe) | ||
| 15 | 2. [Making bash pretty](#making-bash-pretty) | ||
| 16 | 5. [Conclusion](#conclusion) | ||
| 17 | |||
| 18 | |||
| 19 | ## Introduction | ||
| 20 | |||
| 8 | I 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. | 21 | I 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 | ||
| 10 | What 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. | 23 | What 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. | |||
| 149 | Let's take a look at some examples in the installation script. | 162 | Let'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 | ||
| 171 | I 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. | 184 | I 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 | ||
