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
configs para Ubuntu 13.10 x64 | |
================================= | |
Seção Básica | |
--------------------------------- | |
sudo apt-get update && sudo apt-get upgrade | |
sudo apt-get install openssh-server aptitude synaptic synergy git-core leafpad zsh guake lynx -y |
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
// 1 - Fazer um backup da pasta uploads | |
echo "Fazer um backup da pasta uploads " | |
$ cp -r wp-content/uploads/ wp-contents/_uploads/ | |
// 2 - Excluir a pasta do svn e dar commit | |
echo "Excluir a pasta do svn e dar commit" | |
$ svn delete wp-content/uploads/ | |
$ svn commit -m"Pasta uploads excluida" | |
// 3 - Criar uma nova pasta uploads e adicionar ao svn |
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
lamp no ubuntu e debian | |
baseado | |
https://help.ubuntu.com/community/ApacheMySQLPHP | |
pre-requisites: | |
apt-get update | |
apt-get install xclip git-core git-svn subversion nano curl links | |
git config --global user.name "Your Name" |