IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Windows Discussion :

CONNEXION A DISTANCE WINDOWS


Sujet :

Windows

  1. #1
    Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Novembre 2013
    Messages
    74
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Novembre 2013
    Messages : 74
    Points : 67
    Points
    67
    Par défaut CONNEXION A DISTANCE WINDOWS
    Bonjour,

    Svp, j'ai quelques doutes sinon des confusions que j'aimerais que vous m’éclaircissez.

    1: Est il possible de se connecter à distance à une machine Windows avec l'outil putty

    2: J'ai deux machines avec Windows server 2008 comme OS dans le cloud chez un opérateur X
    - Est il possible étant sur l'une d'entre elle de récupérer les données sur l'autre avec putty?
    - Ne voulant pas utiliser ma boite email ni installer un serveur ftp, y a t il un moyen plus simple pour récupéré les données?
    - Ne voulant pas utiliser ma boite email ni installer un serveur ftp, est ce que je peux récupérer des données sur mon pc local?

    Cordialement,

  2. #2
    Expert éminent sénior
    Avatar de JML19
    Homme Profil pro
    Retraité : Electrotechnicien Electronicien Informaticien de la SNCF
    Inscrit en
    Décembre 2010
    Messages
    14 932
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Corrèze (Limousin)

    Informations professionnelles :
    Activité : Retraité : Electrotechnicien Electronicien Informaticien de la SNCF
    Secteur : Transports

    Informations forums :
    Inscription : Décembre 2010
    Messages : 14 932
    Points : 23 240
    Points
    23 240
    Billets dans le blog
    10
    Vous pouvez utiliser les FAQ (ICI) ou les Tutoriels (ICI) et aussi accéder au blog (ICI)

  3. #3
    Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Novembre 2013
    Messages
    74
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Novembre 2013
    Messages : 74
    Points : 67
    Points
    67
    Par défaut PUTTY CONNECTION
    Bonjour,

    Merci JML19 pour ta réponse, au fait j'ai ouvert ce poste parce que j'utilise l'outil "connexion a bureau distance" de Windows
    pour accéder à mon serveur distant en renseignant simplement:

    - l'@ IP de la machine
    - L'identifiant (login)
    - Le password

    Cependant je veux utiliser les mêmes éléments pour une connexion à distance avec putty.
    Et je voie comme type de connexion:

    - Raw
    - Telnet
    - Rlogin
    - SSH
    - Serial
    Dans mon cas stp quelle option utiliser, en tout cas pas le SSH car je n'utilise pas des clés or c'est celui la que j'ai coché et j'ai des ereurs

    Cordilalement,

  4. #4
    Expert éminent sénior
    Avatar de JML19
    Homme Profil pro
    Retraité : Electrotechnicien Electronicien Informaticien de la SNCF
    Inscrit en
    Décembre 2010
    Messages
    14 932
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Corrèze (Limousin)

    Informations professionnelles :
    Activité : Retraité : Electrotechnicien Electronicien Informaticien de la SNCF
    Secteur : Transports

    Informations forums :
    Inscription : Décembre 2010
    Messages : 14 932
    Points : 23 240
    Points
    23 240
    Billets dans le blog
    10
    Par défaut
    Bonjour

    Tu peux utiliser Telnet mais pour transférer des données tu peux utiliser les commandes FTP.

    Les principales:

    OPEN serveur : ouvrir une connexion vers un serveur

    USER toto : changer le user

    BIN : effectuer les transfers en binaire

    ASC : effectuer les transfers en ascii avec conversion

    GET / PUT : récupérer/envoyer un fichier

    MGET / MPUT : même chose avec plusieurs fichiers (ex: *.HTML)

    BYE : fermer connexion

    DIR : afficher répertoire distant

    LDIR ou !dir ou !ls : afficher répertoire local

    CD : changer de répertoire distant

    LCD ou !cd : changer de répertoire local
    Regarde (ICI).

    Using FTP and Telnet

    by Dr. David Maidment
    updated by Jennifer Benaman
    This handout describes how to use ftp (file transfer protocol) to transfer files between computers and how to telnet between computers. Suppose you have a file on the alphas and you want to transfer it to a PC for use on an application there. Do the following:

    Using ftp to transfer files

    On the PC, bring up a DOS prompt in Windows and change to the drive and directory where you want the files to be transferred from or to. (i.e. S: for Scratch.tmp or A: for a floppy). Then type:

    $ftp

    which yields the ftp prompt:

    ftp>

    Now you can open a connection to the alphas, from the PC you are sitting at by typing:

    ftp>;open alpha61.ce.utexas.edu

    You will be prompted for your alpha userid and password. Now you have an open connection between the PC you are sitting at and alpha1. To send a text file, set the channel to ascii by typing

    NOTE: Only try to ftp or telnet to alpha61 or alpha62, access to alpha1 through alpha5 is not possible

    ftp>ascii

    To send a data file, set the channel to binary format by typing:

    ftp>binary

    NOTE: Only "pure" text files should be ftped under ascii. Any other type of file should be transferred binary. For example, if you have a Word 6.0 document that has been saved in Word 6.0 format, it should be transferred binary! DO NOT ftp coverages unless they have first been exported out of ArcInfo (you will learn how to do this later).

    In either case, to send a single file from the source machine (in this case, the PC you're sitting at) to the destination machine (alpha61), use

    ftp>put filename

    and you'll see it transfer. You can also use ls to see exactly where you are at and what has transferred to the destination machine.

    To put several files within a directory, use

    ftp>mput *

    and you will be prompted one by one to put the files.

    To get the files back use:

    ftp>get filename

    and similarly mget will get a set of files. Once you are done, use

    ftp>quit

    to close the ftp connection from the PC to alpha61.

    File Formats:

    Check what formats the application you want to use will accept. I think exporting (under File on the menu) Views as CGM Binary in ArcView (UNIX) will permit them to be opened in Canvas. Word and PowerPoint can import the CGM Binary files, but this takes a lot of memory and usually causes the document to be rather large in size. In PC ArcView, exporting a layout or view as a Windows Metafile enables it to be imported into other windows applications. Getting the formats compatible between ArcView and your desired application requires a bit of experimentation.

    Anonymous Login

    Many organizations operate ftp servers with anonymous login areas. To get data from one of these areas, you ftp to their machine, where you will be prompted to login anonymously using your email address as the password:

    login:anonymous

    password:ce397m@alpha1.ce.utexas.edu [or the email address of where you are at]

    Then you can use the normal UNIX commands to change directories, list files, etc.

    Connecting to alpha1 using telnet

    Go to the PC or Macintosh and find the folder that is labeled "NSCA Telnet". Open this folder and execute the NSCA software. From there, you may go to the menu and under "File" chose "Open Connection" in the dialog box, type alpha61.ce.utexas.edu. You should now be connected by telnet to alpha1 just as if you were sitting at another alpha, except that you cannot use the Xwindows graphics display, you can only display text.

    From this telnet session, you can also type ftp to invoke the ftp prompt and open other machines to transfer files, such as machines from other departments or off campus. Be sure to log off from your telnet session by typing exit, when you are finished.
    Vous pouvez utiliser les FAQ (ICI) ou les Tutoriels (ICI) et aussi accéder au blog (ICI)

Discussions similaires

  1. Tablette windows 8 RT et connexion bureau à distance (TSE)
    Par JulienMaillot dans le forum Windows 8
    Réponses: 1
    Dernier message: 13/07/2013, 16h14
  2. windows 2000 - connexion a distance
    Par lcoder dans le forum Windows Serveur
    Réponses: 1
    Dernier message: 23/09/2005, 07h41
  3. Comment désactiver la connexion a distance sur un pc ?
    Par snoopy69 dans le forum Sécurité
    Réponses: 4
    Dernier message: 20/09/2005, 11h03
  4. Problème de connexion WMI avec Windows XP
    Par Against Me! dans le forum API, COM et SDKs
    Réponses: 2
    Dernier message: 24/05/2005, 09h28
  5. Problème de Connexion à Pg sur Windows 98
    Par bubble_gum dans le forum PostgreSQL
    Réponses: 3
    Dernier message: 24/07/2004, 19h44

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo