Good morning!
Yesterday I wanted to install the beautiful Eclipse IDE on my new Windows Vista laptop. Everything went fine. I also installed Subclipse, the interface to the "Subversion" Version Control System, in order to access my code in the repositories on the remote machines of my Insitute.
Everything went fine again, but then, when I wanted to set up a SVN+SSH connection to checkout my code from the remote machine, I got this error:
The system cannot find the file specified.
svn: Can't create tunnel: The system cannot find the file specified.
Looking on Internet I found a solution for Windows XP, that I had to modify a little bit. Here the solution.
The problem is that you have to specify the path of your SSH client. You can use the classical PuTTY or Plink, but I prefer to use the TortoisePlink, the modified version of Plink contained in the excellent TortoiseSVN package. Using the TortoisePlink client you will be prompted for your username and password without opening an ugly CMD window (the command line window) every time.
So, let's say you have already installed the SVN client, you have now to modify the config
file.
In Windows Vista this file is stored in the hidden folderC:\Users\[username]\App Data\Roaming\Subversion
There you find the file named config
. Open it with an editor (for instance Notepad) and look for the string[tunnels]
this line must be uncommented (no hash #
symbol at the beginning of the line). Then you have to modify the line below, to set the right path to your SSH client# ssh = $SVN_SSH ssh
Let's say you installed the package TortoiseSVN at C:\Program Files\TortoiseSVN
so you can leave commented the line # ssh = $SVN_SSH ssh
and you can add this line just below it:ssh = C:\Program Files\TortoiseSVN\bin\TortoisePlink.exe
Done!! :-)
Now you should be able to connect to your remote site with SVN through a secure SSH tunnelling connection.
And, as always, let me know if you have some problems! ;-)
Friday, October 24, 2008
Subclipse error: Svn can't create tunnel. Configuring SVN+SSH connection on Windows Vista
Pubblicato da
Pelerin-Voyageur
a
10:36 PM
3
commenti
Etichette: eclipse, Subversion, svn, system administration, Windows Vista
Sunday, October 12, 2008
Finalmente risolto il problema di Windows Vista con la connessione di rete wireless
Erano mesi ormai che nella nuova casa avevo questo problema con Windows Vista: ogni tanto, senza ragione apparente, perdeva la connessione wireless. Magari per dieci ore tutto funzionava...poi all'improvviso...PUM! L'iconcina della rete mostrava una bella "X" rossa e non c'era piu' verso di far rivelare a Windows la rete wireless di casa. Cercando di fare il refresh delle reti disponibili, appariva semplicemente la scritta "no wireless networks found in range". Solo un hibernate o un restart del computer risolvevano il problema. La rete poteva "cadere" in un momento qualsiasi, dopo due minuti come dopo 3 ore, senza un motivo apparente.
E il problema non era del router, perche' con Windows XP la rete restava bella visibile e funzionante.
Oggi ho voluto spulciare un po' su Internet, e alla fine ho trovato la soluzione sul blog di un ragazzo norvegese, che qui ringrazio ;-)
http://www.catonett.com/blog/archives/194
Nei commenti al post ho poi scoperto il link alla pagina Microsoft ufficiale:
http://support.microsoft.com/kb/928233
In pratica bisogna modificare (aggiungere) una chiave del registro di sistema per far si che Vista non usi un impostazione di rete relativa al DHCP, il protocollo che assegna gli indirizzi di rete in modo dinamico ai computer che richiedono la connessione al router.
Ora ho provato a seguire la procedura descritta nei due post...vediamo se funziona!
Speriamo di si! ;-)
Pubblicato da
Pelerin-Voyageur
a
10:21 AM
0
commenti
Etichette: system administration, Windows