Postagens

Mostrando postagens de novembro, 2020

Instalando Github Desktop no Ubuntu 20.04LTS

$ wget -qO - https://packagecloud.io/shiftkey/desktop/gpgkey | sudo tee /etc/apt/trusted.gpg.d/shiftkey-desktop.asc > /dev/null $ sudo sh -c 'echo "deb [arch=amd64] https://packagecloud.io/shiftkey/desktop/any/ any main" > /etc/apt/sources.list.d/packagecloud-shiftky-desktop.list' $ sudo apt update $ sudo apt install github-desktop

Instalando PHP 7.4 com Nginx + XDebug 2 no Ubuntu 20.04 LTS

 $ sudo apt install nginx php-fpm php-apcu php-zip php-mysql php-json php-mbstring php-intl php-tidy php-xdebug php-xml php-dev $ sudo nano /etc/php/7.4/mods-available/xdebug.ini zend_extension=xdebug.so xdebug.remote_autostart = 1 xdebug.remote_enable = 1 xdebug.remote_handler = dbgp xdebug.remote_log = /var/log/xdebug_remote.log xdebug.remote_mode = req xdebug.remote_port = 9001 xdebug.show_error_trace = 1 xdebug.remote_connect_back = 1  xdebug.max_nesting_level = 1000  Se você usa o VSCode utilize a seguinte configuração no launch.json: {     // Use IntelliSense to learn about possible attributes.     // Hover to view descriptions of existing attributes.     // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387     "version": "0.2.0",     "configurations": [         {             "name": "Listen for XDebug",             "type": "php",             "request": "launch",  

Como instalar o Kitematic (Docker Hub) para Ubuntu 20.04 LTS

Acesse https://github.com/docker/kitematic/releases e faça o download da última versão estável do arquivo DEB disponível para o Ubuntu, exemplo: $ wget -v https://github.com/docker/kitematic/releases/download/v0.17.13/ Kitematic-0.17.13-Ubuntu.zip $ unzip Kitematic-0.17.13-Ubuntu.zip $ sudo dpkg -i Kitematic-0.17.13_amd64. deb $ sudo apt install -f Pronto!