We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d295a36 commit e540528Copy full SHA for e540528
_posts/2022-12-18-lxc-setup.md
@@ -29,6 +29,17 @@ useradd -m -g users -G sudo patrick
29
chsh -s /bin/bash patrick
30
passwd patrick
31
```
32
+## Make the CLI more fun
33
+
34
+`nano /etc/bash.bashrc`
35
36
+Add the following lines to add color to bash:
37
38
+```conf
39
+export LS_OPTIONS='--color=auto'
40
+eval "`dircolors`"
41
+alias ls='ls $LS_OPTIONS'
42
+```
43
44
## SSH Configuration
45
@@ -77,4 +88,4 @@ Unattended-Upgrade::InstallOnShutdown "false";
77
88
Unattended-Upgrade::Remove-Unused-Dependencies "true";
78
89
79
90
Unattended-Upgrade::Automatic-Reboot "true";
80
-```
91
0 commit comments