Creating a webserver: Difference between revisions
From Leechfinger
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
== Purpose and aim == | |||
This document highlights our steps in building a Webserver. | |||
== Hardware == | == Hardware == | ||
Before choosing the hardware, one needs to make sure that Debian will have all the drivers for it. | Before choosing the hardware, one needs to make sure that Debian will have all the drivers for it. | ||
Line 6: | Line 9: | ||
<br><br> | <br><br> | ||
< | <syntaxhighlight lang="bash" line> | ||
export LS_OPTIONS='--color=auto' | export LS_OPTIONS='--color=auto' | ||
<br> | <br> | ||
alias ls='ls $LS_OPTIONS' | alias ls='ls $LS_OPTIONS' | ||
</ | </syntaxhighlight> | ||
[[Category:Debian]] | [[Category:Debian]] |
Revision as of 18:50, 17 May 2024
Purpose and aim
This document highlights our steps in building a Webserver.
Hardware
Before choosing the hardware, one needs to make sure that Debian will have all the drivers for it.
Get colors in .bashrc for root
Edit /root/.bashrc and un-comment two lines.
export LS_OPTIONS='--color=auto'
<br>
alias ls='ls $LS_OPTIONS'