Skip to content

Commit e540528

Browse files
author
Patrick Moore
authored
Update 2022-12-18-lxc-setup.md
1 parent d295a36 commit e540528

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

_posts/2022-12-18-lxc-setup.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,17 @@ useradd -m -g users -G sudo patrick
2929
chsh -s /bin/bash patrick
3030
passwd patrick
3131
```
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+
```
3243

3344
## SSH Configuration
3445

@@ -77,4 +88,4 @@ Unattended-Upgrade::InstallOnShutdown "false";
7788
Unattended-Upgrade::Remove-Unused-Dependencies "true";
7889
7990
Unattended-Upgrade::Automatic-Reboot "true";
80-
```
91+
```

0 commit comments

Comments
 (0)