On this page
Ubuntu Server Setup
Basic Set-ups
Install SSH
- Install openssh-server:
sudo apt install openssh-server
- Enable openssh-server:
sudo systemctl enable ssh
- Check openssh-server status:
sudo systemctl status ssh
Install NVM and Node
For the latest information, please visit nvm repo.
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
- Install latest node.js:
nvm install node
Install DotNet
For the latest information, please visit dotnet-install scripts
- Download dotnet-install scripts.
wget -q -O dotnet-install.sh https://dot.net/v1/dotnet-install.sh
- Make script executable
sudo chmod u+x dotnet-install.sh
- Install SDK
./dotnet-install.sh -c Current
- Add dotnet to path
<pre v-pre data-lang=""><code class="lang-"> export DOTNET_ROOT=~/.dotnet export PATH=$PATH:$DOTNET_ROOT</code></pre>
Install JAVA
- Search for openjdk package via apt.
apt-cache search openjdk
- Install openjdk-jdk
sudo apt install openjdk-v-jdk
Install Docker
For more information, please visit docker website.
Install PostgreSQL
For more information, please visit postgreSQL website.
- Use PostgreSQL
sudo -u postgres psql
Install K8S
For more information, please visit install kubectl