Skip to content

Instantly share code, notes, and snippets.

View guisjlender's full-sized avatar

Guilherme Sjlender guisjlender

View GitHub Profile
@guisjlender
guisjlender / apt-get-install-sublime-text-2
Created February 20, 2012 16:49
Comandos apt-get instalação SublimeText2
sudo add-apt-repository ppa:webupd8team/sublime-text-2
sudo apt-get update
sudo apt-get install sublime-text-2
@guisjlender
guisjlender / install-mysql-server
Created February 20, 2012 17:16
Instalando e configurando mysql (CentOS)
Comando para instalar o mysql
# yum -y install mysql-server mysql
Quando a instalação finalizar, você deverá inicializar o serviço e definir a senha de root:
# service mysqld start
# mysqladmin -u root password ‘nova-senha’
Para fazer com que o MySQL seja inicializado automaticamente no boot:
# chkconfig –levels 2345 mysqld on
@guisjlender
guisjlender / install-apache-server.md
Last active September 30, 2015 22:08
Instalando e configurando Apache (CentOS)

##Instalar o Apache usando yum yum -y install httpd

Agora, basta fazer com que o Apache seja inicializado no boot:

chkconfig –levels 2345 httpd on

@guisjlender
guisjlender / install-php.md
Last active September 30, 2015 22:08
Instalando PHP(CentOS)

##Instalar PHP e modulos no linux usando yum

yum -y install php php-common php-mysql php-gd php-mbstring php-xml php-xmlrpc

@guisjlender
guisjlender / links-git-github.md
Last active December 18, 2015 02:29
Links referente a git/github
@guisjlender
guisjlender / links-android.md
Last active December 18, 2015 04:09
Links úteis para o desenvolvimento em Android
@guisjlender
guisjlender / links-hardware.md
Created June 9, 2013 18:27
Links referente a Programação embarcada