Giter Site home page Giter Site logo

notas's Introduction

Notas

Contiene notas útiles como recordatorio

#Contenidos

#SSH

##Generar llave ssh ssh-keygen -t rsa -C "[email protected]" ###Agregar la llave al agente ssh (ssh-agent) eval "$(ssh-agen -s)" ####Agregar la llave a ssh-agent ssh-add ~/.ssh/id_rsa #####Agregar la llave SSH a la cuenta de usuario #instalar xclip sudo apt-get install xclip sudo xclip -sel clip < ~/.ssh/id_rsa.pub #copia el contenido de id_rsa.pub al porta papeles ###Probar la conexión ssh -T [email protected] ####Si hay errores como: Agent admitted failure to sign using the key. # debug1: No more authentication methods to try. # Permission denied (publickey).

eval "$(ssh-agent -s)"
#corre el ssh-agent en segundo plano
ssh-add

####Si la clave no tiene el nombre por defecto(/.ssh/id_rsa), hay que pasarle el path a ssh-add # start the ssh-agent in the background eval "$(ssh-agent -s)" # Agent pid 59566 ssh-add ~/.ssh/my_other_key # Enter passphrase for /home/you/.ssh/my_other_key: [tappity tap tap] # Identity added: /home/you/.ssh/my_other_key (/home/you/.ssh/my_other_key) o ver esta dirección: https://help.github.com/articles/error-agent-admitted-failure-to-sign/

#Putty putty connection->ssh->Auth->[Subir archivo.ppk]

#rhc

Herramientas de administración de redhat.

$gem install rhc
$rhc setup
(configura llaves ssh automáticamente y las sube al servidor también.)

TODO: Agregar,

instalación de java ppa, sublimetext y configuracion
brillo pantalla notebook.(marcadores firefox)
base de datos sqlite3
tarjeta de red inalámbrica, comandos
php, mysql, nodejs, ruby, rhc client
ssh-server
docker

investigar scripts BASH
genymotion
...

#UBUNTU

Lenovo g4030 ubuntu

##Arreglar el brillo ubuntu 14.04 tarjeta intel

sudo touch /usr/share/X11/xorg.conf.d/20-intel.conf 


sudo gedit /usr/share/X11/xorg.conf.d/20-intel.conf

Section "Device"
Identifier "card0"
Driver "intel"
Option "Backlight" "intel_backlight"
BusID "PCI:0:2:0"
EndSection 

##Driver wifi -ideapad-

rfkill list all
sudo rfkill unblock all
sudo modprobe -r ideapad_laptop

#hacerlo permanente

sudo -i
echo "blacklist ideapad-laptop"  >>  /etc/modprobe.d/blacklist.conf
modprobe -r ideapad-laptop
exit

#wifi se cae a los 15 min aprox.

echo "options rtl8723be fwlps=N ips=N" | sudo tee /etc/modprobe.d/rtl8723be.conf

#cambiar la regionalización 

notas's People

Contributors

claudio27 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.