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
| Change /etc/fuse.conf so its read by all.. | |
| # sudo chmod a+r /etc/fuse.conf | |
| Edit /etc/fuse.conf to remove the comment # from user_allow_other so the default fuse.conf will look like | |
| # Set the maximum number of FUSE mounts allowed to non-root users. | |
| # The default is 1000. | |
| # | |
| #mount_max = 1000 | |
| # Allow non-root users to specify the 'allow_other' or 'allow_root' |
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
| sudo apt-get update && sudo apt-get install zsh | |
| wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh | |
| chsh -s 'which zsh' | |
| Reboot you system |
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
| basta inserir isso no .bashrc | |
| PS1='\n[\u] \[\033[1;33m\]\w\a\[\033[0m\]$(__git_ps1 " \[\033[1;32m\](%s)\[\033[0m\]")\n\$ ' | |
| Ou essa configuraçao que fica mais simples | |
| PS1='\u@\h:\w/ $(__git_ps1 "\[\033[1;32m\](%s)\[\033[0m\]")\$ ' |
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
| Add as linhas abaixo no arquivo: /etc/samba/smb.conf | |
| client lanman auth = yes | |
| client ntlmv2 auth = no |
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
| #abra o arquivo apt.conf, localizado na pasta /etc/apt/, com algum editor como root e adicione as seguintes linhas abaixo: | |
| Acquire::http::Proxy "http://usuario:senha@servidorProxy:porta"; | |
| Acquire::https::Proxy "https://usuario:senha@servidorProxy:porta"; | |
| Acquire::ftp::Proxy "ftp://usuario:senha@servidorProxy:porta"; | |
| agora é ser feliz e ter o poder do apt-get em suas mãos! :p |
NewerOlder