How to install course tools
List of tools:
- Slack
- Zoom
- VS Code
- Chrome
- GIT
- Node
- PostgreSQL
- Dbeaver
You can use the Ubuntu Software Center to search and install new software packages in the computer, it is like the Play Store used in Android mobiles. You will find this icon in the left bar:
Ubuntu: Go to the Ubuntu Software Center, search and install it.
Ubuntu: Go to the Ubuntu Software Center, search and install it.
Ubuntu: Go to the Ubuntu Software Center, search and install it.
To check installation open a Terminal and execute:
node -v
Ubuntu: Go to the Ubuntu Software Center, search and install it.
Others: Go to the Git Website and follow the instructions.
To check installation open a Terminal and execute
git
Ubuntu: open the terminal and execute the following commands
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo apt install ./google-chrome-stable_current_amd64.deb
open the terminal and execute the following commands
sudo apt-get install postgresql-12
On Linux systems, there is no default password set.
To set the default password:
Run the psql command from the postgres user account:
sudo -u postgres psql postgres
Set the password, try to use the same password you have in your computer, migracode
\password postgres
Enter the password.
And finally close psql with the command:
\q
Others: https://www.postgresql.org/download/
Last modified 2yr ago