Adicionando o repositório:
$ sudo add-apt-repository ppa:webupd8team/java
Caso esse comando não seja encontrado:
$ sudo apt-get install software-properties-common python-software-properties
Adicionando o repositório:
$ sudo add-apt-repository ppa:webupd8team/java
Caso esse comando não seja encontrado:
$ sudo apt-get install software-properties-common python-software-properties
import sublime, sublime_plugin, datetime | |
class InsertTimeCommand(sublime_plugin.TextCommand): | |
def run(self, edit): | |
date_time = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S') | |
for r in self.view.sel(): | |
self.view.replace(edit, r, date_time) |
# no seu bashrc | |
source ~/.bash-gitprompt.sh #<--- https://github.com/git/git/blob/master/contrib/completion/git-prompt.sh | |
PS1='\[\033]0;\u@\h:\W\007\]`if [ $? = 0 ]; then echo "\[\033[01;32m\]✔"; else echo "\[\033[01;31m\]✘"; fi` \[\033[01;37m\ ]\h\[\033[01;34m\] \w\[\033[35m\]$(__git_ps1 " %s") \[\033[01;36m\]$\[\033[00m\] ' | |
# no do root | |
PS1='\[\033]0;\u@\h:\W\007\]`if [ $? = 0 ]; then echo "\[\033[01;32m\]✔"; else echo "\[\033[01;31m\]✘"; fi` \[\033[00;31m\]\u@\h\[\033[01;34m\] \w\[\033[35m\] \[\033[01;31m\]#\[\033[00m\] ' | |
# nas vms | |
PS1='\[\033]0;\u@\h:\W\007\]`if [ $? = 0 ]; then echo "\[\033[01;32m\]✔"; else echo "\[\033[01;31m\]✘"; fi` \[\033[01;33m\]\u@\h\[\033[01;34m\] \w\[\033[35m\] \[\033[01;30m\]$\[\033[00m\] ' |
No /etc/fstab
, mudar a versão de 3 para 4:
# Note o parâmetro 'vers=4' no fim da linha
99.99.99.99:/path/para/o/ambiente/99 /montagem/local/99 nfs rw,rsize=32768,wsize=32768,timeo=14,intr,sync,vers=4
No /etc/idmapd.conf
, incluir a linha Domain = corp.folha.com.br
abaixo da linha # Domain = localdomain
, ficando assim:
I hereby claim:
To claim this, I am signing this object:
{ | |
'version': 1, | |
'disable_existing_loggers': False, | |
'formatters': { | |
'standard': { | |
'format': '%(asctime)s [%(levelname)s] %(name)s: %(message)s' | |
}, | |
}, | |
'handlers': { | |
'default': { |
image: docker:latest | |
# When using dind, it's wise to use the overlayfs driver for | |
# improved performance. | |
variables: | |
DOCKER_DRIVER: overlay | |
GCP_PROJECT_ID: CHANGE-TO-GCP-PROJECT-ID | |
IMAGE_NAME: image_id | |
services: |
# Install python (gcloud sdk), make and certificates (gcloud) | |
apk add --update make ca-certificates openssl python gettext | |
update-ca-certificates | |
# Installing GCLOUD SDK | |
wget https://dl.google.com/dl/cloudsdk/release/google-cloud-sdk.tar.gz | |
tar zxvf google-cloud-sdk.tar.gz && ./google-cloud-sdk/install.sh --usage-reporting=false --path-update=true | |
google-cloud-sdk/bin/gcloud --quiet components update | |
echo $GCLOUD_SERVICE_KEY | base64 -d > ${HOME}/gcloud-service-key.json | |
google-cloud-sdk/bin/gcloud auth activate-service-account --key-file ${HOME}/gcloud-service-key.json |
#!/usr/bin/env python | |
import consumer | |
import os | |
import sys | |
import signal | |
import logging | |
from config import Config | |
from multiprocessing import Process |
// Generate keys (based in https://gist.github.com/nghiaht/224f7fe04ea591c6d2fddbee6c173379) | |
// Gen private keys: | |
// openssl genpkey -algorithm RSA -out private.pem -pkeyopt rsa_keygen_bits:2048 | |
// Gen public keys: | |
// openssl rsa -pubout -in private.pem -out public_key.pem | |
package main |