Instalando MySQL e Workbench no Debian 10

Neste vídeo mostro como instalar o MySQL 8 e o Workbench no Debian 10 “Buster”.

Diferente do Ubuntu e do Mint (derivados do Debian), abaixo a lista de Comandos:

sudo apt update
sudo apt upgrade
wget http://repo.mysql.com/mysql-apt-confi…
sudo dpkg -i mysql-apt-config_0.8.13-1_all.deb
Lembre-se que a senha deve ser segura, letras e números, exemplo: Teste@3223
sudo apt update
sudo apt install mysql-server
sudo apt-get build-dep mysql-server
wget https://downloads.mysql.com/archives/…
sudo dpkg -i mysql-workbench-community_8.0.16-1ubuntu18.04_amd64.deb
sudo apt install -f
sudo dpkg -i mysql-workbench-community_8.0.16-1ubuntu18.04_amd64.deb

Veja o Vídeo:

#installmysqldebian #instalarmysqldebian #mysqlinstallierendebian #debianmysqlinstallieren #mysqlaufdebianinstallieren #mysqlnodebian #mysqldebianrepository #mysqldebian #mysqldebianapt-get #mysqldebianapt #mysqlfordebian #mysqlworkbenchdebianbuster
#mysqldebianconfigure #mysqldebiandownload #instalaciondemysqldebian #mysqlendebian

Debian corrigindo erro: user is not in the sudoers file

Esta semana instalei o Debian 8.3 em meu notebook.
Após executar o comando “sudo su” recebi a seguinte mensagem:

password for danegd:
danegd is not in the sudoers file. This incident will be reported.
(danegd não está no arquivo sudoers. Este incidente será relatado.)


Reinicie ou Logue como root e edite o arquivo /etc/sudoers:

#nano /etc/sudoers


Após a linha User privilege specification adicione o comando abaixo

SeuUsuario ALL=(ALL) ALL


Lembre-se se trocar o campo SeuUsuario pelo nome do seu usuário.
O meu usuário é danegd, então a linha vai ficar assim:

danegd ALL=(ALL) ALL


(Observe a imagem abaixo:)

Salve o arquivo e reinicie o Linux !