You are on page 1of 3

========================== DOCKER ==========================

Instalar Docker:

https://www.digitalocean.com/community/tutorials/como-instalar-y-usar-docker-
en-ubuntu-18-04-1-es

1.-sudo apt install apt-transport-https ca-certificates curl software-


properties-common
2.-curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add
-
3.-sudo add-apt-repository "deb [arch=amd64]
https://download.docker.com/linux/ubuntu bionic stable"
4.-sudo apt update
5.-apt-cache policy docker-ce
6.-sudo apt install docker-ce
7.-sudo systemctl status docker
8.-sudo usermod -aG docker ${USER}
9.-su - ${USER}

Instalar imagen POSTGRES


docker pull postgres

Instalar imagen PG Admin


docker pull dpage/pgadmin4

Instalar Subred e iniciar servicios PGAdmin y Postgres en la misma red


1.-docker network create --subnet 172.128.10.0/24 --gateway 172.128.10.1
same_net
2.-docker run --name postgres_same_net --network same_net --ip 172.128.10.20
-e POSTGRES_PASSWORD=123456 -d -p 5432:5432 postgres
3.-docker run --name pgadmin_same_net --network same_net --ip 172.128.10.21 -
p 80:80 -e PGADMIN_DEFAULT_EMAIL='user@domain.com' -e
PGADMIN_DEFAULT_PASSWORD='SuperSecret' -d dpage/pgadmin4
========================== DOCKER ==========================

========================== GOLANG ==========================


Descargar GO:
https://golang.org/doc/install?download=go1.14.4.linux-amd64.tar.gz

Desempaquetarlo:
sudo tar -xvf go1.11.linux-amd64.tar.gz

Moverlo al directorio usr:


sudo mv go /usr/local

Crear las variables de la ruta:

export GOROOT=/usr/local/go
export GOPATH="/home/mnkboy/Escritorio/SchoolManager/sistemexico/Resources"
export PATH=$GOPATH/bin:$GOROOT/bin:$PATH:/home/mnkboy/scripts
PATH="/usr/games:$PATH"

Refrescar la sesion
source ~/.profile

Probar la instalacion
go version
========================== GOLANG ==========================
========================== WINE ==========================

1.-Purge all from APT!:

sudo apt-get purge *wine*

2.-Check that there's no snaps installed too (for some reason i had this - not sure
if it would impact so i assumed best to remove):

sudo snap remove wine


sudo snap update wine-platform-*

3.-Remove the PPA official repos (they changed how they packaged this). We need to
dig inside /etc/apt:

grep -Ril "wine" /etc/apt

If you get any matches comment them out or delete the keys, we will fully re-add
later.

4.-Enable 32-bit & add new repo (check here for other ubuntu versions):

sudo dpkg --add-architecture i386


wget -qO- https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add -
sudo apt-add-repository 'deb http://dl.winehq.org/wine-builds/ubuntu/ bionic
main'
sudo apt update
sudo apt upgrade
sudo apt --fix-broken install
sudo apt autoremove --purge
sudo apt upgrade

5.-Let's get the libfaudio & libasound2 which are the broken repos:

wget https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/
xUbuntu_18.04/Release.key
sudo apt-key add Release.key
sudo apt-add-repository 'deb
https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/
xUbuntu_18.04/ ./'
sudo apt update
sudo apt install libfaudio0 libasound2-plugins:i386 -y

6.-Now we can install wine 5.0 as normal!:

sudo apt install --install-recommends winehq-stable -y

========================== WINE ==========================

========================== PROCESS DASHBOARD ==========================


Instalar JRE
https://linuxize.com/post/install-java-on-ubuntu-18-04/
Descargar process
https://www.processdash.com/download

Click derecho
-> Propiedades del instalador
-> Cambiar a lectura y ejecucion

Doble click al instalador de process


->Instalar

========================== PROCESS DASHBOARD ==========================

========================== RABBITVCS ==========================


Añadir repo:
sudo add-apt-repository ppa:rabbitvcs/ppa

1.-sudo aptitude install rabbitvcs-cli


2.-sudo aptitude install rabbitvcs-core
3.-sudo aptitude install rabbitvcs-gedit
4.-sudo aptitude install rabbitvcs-nautilus
========================== RABBITVCS ==========================

========================== ENTERPRISE ARCHITECT ==========================


--------- OJO Hay que tener instalado previamente WINE ---------
wine EA.exe

Instalar paquetes mono, y dependencias solicitadas

Siguiente -> Siguiente -> Siguiente...

Copiar serial del TXT para activar

Ejecutar
========================== ENTERPRISE ARCHITECT ==========================

You might also like