- manter "SHIFT" pressionado após inicialização BIOS;
- pressionar tecla "e" para editar grub;
- na linha iniciando com "linux" alterar "quiet splash" com "nouveau.modeset=0"; e
- pressionar "F10" para reiniciar.
Referrer: # Tópico: Argumentos de Instalação (caso falhe)
« Online: 26 de Outubro de 2005, 16:00 »
tenho um processador AMD Atlhon 64 e desde a versão 5.04 tinha problema de travamentos e agora descobri que era por não ter colocado estes parâmetros na inicialização do CD/DVD de instalação. Adicione as opções no final da linha que já existe, sem alterar as demais opções: Citar
xrandr
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
RUN apt update | |
RUN apt upgrade -y | |
RUN apt install -y apt-utils | |
RUN a2enmod rewrite | |
RUN apt install -y libmcrypt-dev | |
RUN docker-php-ext-install mcrypt | |
RUN apt install -y libicu-dev | |
RUN docker-php-ext-install -j$(nproc) intl | |
RUN apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libpng12-dev | |
RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ |
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
APP_PORT=48080 | |
FORWARD_DB_PORT=43306 | |
FORWARD_REDIS_PORT=46379 | |
FORWARD_MEILISEARCH_PORT=47700 | |
FORWARD_MAILHOG_PORT=41025 | |
FORWARD_MAILHOG_DASHBOARD_PORT=48025 |
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
{ | |
"workbench.startupEditor": "newUntitledFile", | |
"window.zoomLevel": 3, | |
"editor.formatOnSave": true, | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/.git/subtree-cache/**": true, | |
"**/node_modules/*/**": true, | |
"**/.hg/store/**": true, | |
"**/vendor/*/**": 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
<?php | |
return PhpCsFixer\Config::create() | |
->setRules(array( | |
'@PSR2' => true, | |
'array_indentation' => true, | |
'array_syntax' => array('syntax' => 'short'), | |
'combine_consecutive_unsets' => true, | |
'method_separation' => true, | |
'no_multiline_whitespace_before_semicolons' => 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
SET NAMES utf8; | |
SET time_zone = '+00:00'; | |
SET foreign_key_checks = 0; | |
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO'; | |
CREATE TABLE `cfop` ( | |
`id` char(4) COLLATE utf8_unicode_ci NOT NULL, | |
`descricao` varchar(200) COLLATE utf8_unicode_ci NOT NULL, | |
`aplicacao` varchar(530) COLLATE utf8_unicode_ci DEFAULT NULL, | |
PRIMARY KEY (`id`) |