martes, 17 de mayo de 2011

clase linux 17 mayo 2011 - ssh - escirtorio remoto - vnc

[root@localhost ~]# cat > ejemplo1
esto es un ejejmplo

[root@localhost ~]# mkdir /zegarra
[root@localhost ~]#

scp = copia segura, es parte del ssh
tambien hay sftp que es similar al ftp

enviado archivo a otra maquina, el root debe ser otro tipo de usuario, no es recomendable el root

/root es la carpeta

[root@localhost ~]# scp ejemplo1 root@10.10.25.28:/root
The authenticity of host '10.10.25.28 (10.10.25.28)' can't be established.
RSA key fingerprint is 8a:0e:e8:98:a6:64:04:8f:12:b2:f3:17:5b:33:07:2e.
Are you sure you want to continue connecting (yes/no)? y
Please type 'yes' or 'no': y
Please type 'yes' or 'no': y
Please type 'yes' or 'no': y
Please type 'yes' or 'no': [root@localhost ~]#
[root@localhost ~]# cat > ejemploz

willyman

[root@localhost ~]# scp ejemploz root@10.10.25.28:/root

The authenticity of host '10.10.25.28 (10.10.25.28)' can't be established.
RSA key fingerprint is 8a:0e:e8:98:a6:64:04:8f:12:b2:f3:17:5b:33:07:2e.
Are you sure you want to continue connecting (yes/no)? y
Please type 'yes' or 'no': yes
Warning: Permanently added '10.10.25.28' (RSA) to the list of known hosts.
root@10.10.25.28's password: "aqui se escribe la clave";
ejemploz                                                       100%   10     0.0KB/s   00:00    
[root@localhost ~]# 

ahora con carpetas

-r es recursividad, para enviar todo el contenido completo, es decir carptas y archivos que estan dentro
[root@localhost ~]# scp -r /zegarra root@10.10.25.28:/root
root@10.10.25.28's password:
ejemplo1                                                       100%   13     0.0KB/s   00:00    
[root@localhost ~]#

estraer informacion de otra maquina hacia la mia

[root@localhost ~]# scp root@10.10.25.28:/root/ejemplo* /home
root@10.10.25.28's password:
ejemplo1                                                       100%   13     0.0KB/s   00:00   
ejemploz                                                       100%   10     0.0KB/s   00:00   
[root@localhost ~]# 


ahora con extraer de otra maquina hacia la mia

[root@localhost ~]# scp -r root@10.10.25.28:/root/pozo/ /home
root@10.10.25.28's password:




 Ahora control remoto en terminal


ssh
-l es login
root es el usuario

[root@localhost ~]# ssh -l root 10.10.25.28
root@10.10.25.28's password:
 

 enviando mensajes


siempre y cuaando hallamos puesto ssh -l
[root@localhost ~]# write root
 

 para cerrar la conexion
usamos logout

ahora usaremos VNC

[root@localhost ~]# rpm -q vnc-server
vnc-server-4.1.2-14.el5_3.1
[root@localhost ~]# 

[root@localhost ~]# cd /etc/sysconfig
[root@localhost sysconfig]# vim vncservers
 






# doing so through a secure tunnel.  See the "-via" option in the
# `man vncviewer' manual page.

 VNCSERVERS="1:root"
# VNCSERVERARGS[2]="-geometry 800x600 -nolisten tcp -nohttpd -localhost"
~               

 # `man vncviewer' manual page.

VNCSERVERS="1:root"
VNCSERVERARGS[2]="-geometry 800x600 -nolisten tcp -nohttpd -localhost"
~                                                                                               
~                                                                                               
~   
VNCSERVERS="1:root"
VNCSERVERARGS[1]="-geometry 800x600 -nolisten tcp -nohttpd -localhost"
~                                                                                               
~      

[root@localhost sysconfig]# vncpasswd
Password: 



[root@localhost sysconfig]# service vncserver restart

Apagando Servidor VNC: 1:root                              [FALLÓ]
Iniciando Servidor VNC: 1:root xauth:  creating new authority file /root/.Xauthority

New 'localhost.localdomain:1 (root)' desktop is localhost.localdomain:1

Creating default startup script /root/.vnc/xstartup
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/localhost.localdomain:1.log

                                                           [  OK  ]
 



em el modo grafico
en los menus superiores
                           
sistema - administracion -  nivel de seguridad y cortafuegos

agregas el puerto tcp 5900


 luesgo vamos al menu

sistema - preferencias - escritorio remoto

ahi habilitamos 
PERMITIR A OTROS USUARIOS VER MI  ESCRITORIO


                          













No hay comentarios:

Publicar un comentario