This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docker run --rm -it --pid host frapsoft/htop |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Set keybinds to alt-tab switch windows | |
| gsettings set org.gnome.desktop.wm.keybindings switch-applications "[]" | |
| gsettings set org.gnome.desktop.wm.keybindings switch-applications-backward "[]" | |
| gsettings set org.gnome.desktop.wm.keybindings switch-windows "['<Alt>Tab', '<Super>Tab']" | |
| gsettings set org.gnome.desktop.wm.keybindings switch-windows-backward "['<Alt><Shift>Tab', '<Super><Shift>Tab']" | |
| # Set window switcher to current workspace only (true) or all (false) | |
| gsettings set org.gnome.shell.window-switcher current-workspace-only true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| global | |
| log /dev/log local0 | |
| log /dev/log local1 notice | |
| chroot /var/lib/haproxy | |
| stats socket /tmp/haproxy-admin.sock mode 660 level admin | |
| stats socket ipv4@127.0.0.1:9999 level admin | |
| stats timeout 30s | |
| user haproxy | |
| group haproxy | |
| daemon |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://s3.amazonaws.com/cb_setups/MBS/4EA4835A-4C50-4FE3-B431-1502EEDDCC2F/ConectraSistemasCloudBackup_v6.2.3.16_netv4.0_ALLEDITIONS_Setup_20200104000709.exe |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # - Atualizar o Sistema | |
| sudo apt-get update && sudo apt-get upgrade -y && sudo apt-get dist-upgrade -y && sudo apt-get install git vim curl composer htop iotop -y | |
| # - Docker | |
| curl -fsSL get.docker.com | sh | |
| # - DockerCompose | |
| sudo curl -L "https://github.com/docker/compose/releases/download/1.24.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose | |
| # - Meteor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt-get install -y qt5-qmake qt5-default libpq-dev libxml2-dev libqt5svg5* | |
| cd ~ && mkdir -p Apps && cd Apps | |
| git clone https://github.com/pgmodeler/pgmodeler.git | |
| cd pgmodeler | |
| git checkout develop | |
| qmake pgmodeler.pro | |
| make -j 6 | |
| sudo make install | |
| sudo mkdir /usr/local/lib/pgmodeler/plugins |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt update | |
| sudo apt install build-essential -y | |
| echo \# Install docker | |
| curl -sL https://gist.githubusercontent.com/joaolboing/c440843b838d8ded5e827ea083ab263f/raw/ | bash - | |
| echo \# Install node | |
| curl -sL https://gist.githubusercontent.com/joaolboing/79b8fb9eecbed5c31a703b0e94b6cde7/raw/ | bash - | |
| echo \# Install Meteor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - | |
| sudo apt-get install -y nodejs | |
| sudo npm install -g n | |
| sudo n lts | |
| sudo npm update -g npm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Update and install dependencies | |
| sudo apt-get update | |
| sudo apt-get install -y \ | |
| apt-transport-https \ | |
| ca-certificates \ | |
| curl \ | |
| software-properties-common | |
| #Install GPG Keys | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - |