Tagged Questions

Secure Shell - a network protocol for exchanging data throughout secure channel with most common uses of remote command execution (remote shell/console) and file transfer.

learn more… | top users | synonyms

87
votes
13answers
32k views

git-upload-pack: command not found, how to fix this correctly

I have been using git to keep two copies of my project in sync, one is my local box, the other the test server. This is an issue which occurs when I log onto our remote development server using ssh; ...
53
votes
10answers
88k views

how to use ssh to run shell script on a remote machine? [closed]

could you please suggest me how to run a shell script on remote machine? I have ssh configured on both machine A and B. My script is on machine A which will perform a task on machine B. Awaiting ...
43
votes
10answers
44k views

Linux: Prevent a background process from being stopped after closing SSH client

I'm working on a linux machine through SSH (Putty). I need to leave a process running during the night, so I thought I could do that by starting the process in background (with an ampersand at the end ...
35
votes
4answers
9k views

Best way to use multiple ssh private keys on one client

I'm working on Ubuntu and want to use multiple private keys to connect to different servers or different portions of the same server (My uses are admin of server, admin of git, and normal git usage ...
28
votes
8answers
21k views

SSH library for Java

Does anyone know of a good library for SSH login from Java. Thanks, Ronen.
25
votes
8answers
23k views

Getting ssh to execute a command in the background on target machine

This is a follow-on question to the How do you use ssh in a shell script? question. If I want to execute a command on the remote machine that runs in the background on that machine, how do I get the ...
23
votes
6answers
26k views

What is the simplest way to SSH using Python?

What is the absolute simplest way to SSH to a remote server from a local Python (3.0) script, supply a login/password, execute a command and print the output to the Python console? I would rather not ...
23
votes
15answers
16k views

What type of git server do you use? or how do you use git?

Let's say we have a small team, 1-5 persons. What type of "git setup" would you use? Would you use gitweb and apache so you could run over http? Or would you use the user-accounts and ssh in some ...
22
votes
7answers
8k views

Why git can't remember my passphrase under Windows

I have just start using git and i can't get it to remember my passphrase I'm using cmd.exe elevated and my git host is github and i have create a ssh key like that guide on github but i still get ...
22
votes
4answers
20k views

Why does an SSH remote command get fewer environment variables then when run manually?

I have a command that runs fine if I ssh to a machine and run it, but fails when I try to run it using a remote ssh command like : ssh user@IP <command> Comparing the output of "env" using ...
22
votes
3answers
16k views

How do I remove the passphrase for the SSH key without having to create a new key? [closed]

I set a passphrase when creating a new SSH key on my laptop. But, as I realise now, this is quite a PITA when you are trying to commit(git,svn) to a remote location over SSH many times in an hour. ...
21
votes
3answers
12k views

SSHing into EC2 server via gives error Please login as the ec2-user user rather than root user

Question as title. Why is this, I have used the ssh command: ssh -i mykey.pem root@xxx-xxx-xx-xx-xxx.compute-1.amazonaws.com But i get that error, find nothing on google. What am I doing wrong?
21
votes
9answers
8k views

Are there any good free .Net network libraries? (FTP, SFTP, SSH, etc.)

I'm a bit surprised I haven't found a good open source library for performing common network tasks. There are a few very good commercial libraries, but they're too expensive to use on an open source ...
20
votes
6answers
28k views

AWS ssh access 'Permission denied (publickey)' issue

How to connect to a AWS instance through ssh? I have: Signed up at AWS; Created a public key and a certificate at AWS website and saved them to disk; Went to my console and created environment ...
18
votes
5answers
10k views

How do I set $PATH such that `ssh user@host command` works?

I can't seem to set a new $PATH such that it is used when executing commands via ssh user@host command. I have tried adding export PATH=$PATH:$HOME/new_path to ~/.bashrc and ~/.profile on the remote ...
18
votes
4answers
6k views

.bashrc at ssh login

When I ssh into my ubuntu-box running Hardy 8.04, the environment variables in my .bashrc are not set. If I do a source .bashrc, the variables are properly set, and all is well. How come .bashrc ...
18
votes
15answers
45k views

How do I mount a remote Linux folder in Windows through SSH? [closed]

I'm a blind student currently in a system admin/shell programming class. Although ssh works fine for executing commands like ls, pwd, etc editors do not work well with my screen reader and an ssh ...
18
votes
7answers
22k views

How to scp in python?

What's the most pythonic way to scp a file in Python? The only route I'm aware of is os.system('scp "%s" "%s:%s"' % (localfile, remotehost, remotefile) ) which is a hack, and which doesn't work ...
18
votes
7answers
5k views

What are some good SSH Servers for windows? [closed]

Trying to setup an SSH server on windows server 03. What are some good ones? Preferably open source. I plan on using WinSPC as a client so a server which supports the advanced features implemented by ...
17
votes
5answers
1k views

Emacs bulk indent for Python

Working with Python in Emacs if I want to add a try/except to a block of code, I often find that I am having to indent the whole block, line by line. In Emacs, how do you indent the whole block at ...
16
votes
4answers
17k views

Configuring Git over SSH

I have cloned my git repository over ssh. So, each time I communicate with the origin master by pushing or pulling, I have to reenter my passphrase. How can I configure git so that I do not need to ...
16
votes
7answers
14k views

Differences between SFTP and “FTP over SSH”

While looking for an SFTP client in C# SSH File Transfer Protocol (SFTP), I've come across these two suitable projects - one and two. While trying to understand the basics, I came across this ...
15
votes
3answers
10k views

com.jcraft.jsch.JSchException: UnknownHostKey

I don't know how SSH works and I think that's a simple question. How do I fix that exception: com.jcraft.jsch.JSchException: UnknownHostKey: mywebsite.com. RSA key fingerprint is ...
15
votes
7answers
5k views

How can I tail a remote file?

I am trying to find a good way to tail a file on a remote host. This is on an internal network of Linux machines. The requirements are: Must be well behaved (no extra process laying around, or ...
14
votes
8answers
2k views

Git using wrong email address when talking to Heroku

git clone git@heroku.com:myapp.git Results in a "myoldemailaddress not authorized to access myapp" myoldemailaddress was an email address I was using on an old heroku account, but it seems to be ...
13
votes
10answers
26k views

SSH Private Key Permissions using Git GUI or ssh-keygen are too open

Recently I've been unable to clone or push to github, and I'm trying to find the root cause. This is on windows I have cygwin + git as well as msysgit. Msysgit was installed with the following ...
13
votes
10answers
1k views

How to wean myself from FTP in favor of Version Control

I have heard that uploading your website with FTP is now for n00bs, but it's the only way I've known how for the 8 or so years I've been building websites. Apparently all the buzz now is using a ...
12
votes
4answers
4k views

github: No supported authentication methods available

i use github and have successfully added and synched files on my laptop in the past. as of recent i started getting "PuTTY Fatal Error: Disconnected: No supported authentication methods available" ...
12
votes
5answers
5k views

ssh through emacs shell?

I wonder if anyone out there uses ssh through the emacs shell. I am able to connect with the remote machine but I cannot open files to view/edit with emacs using 'emacs filename' as the 'Terminal type ...
12
votes
6answers
7k views

Allow user to set up an SSH tunnel, but nothing else

I'd like to allow a user to set up an SSH tunnel to a particular machine on a particular port (say, 5000), but I want to restrict this user as much as possible. (Authentication will be with ...
11
votes
3answers
717 views

How to programmatically create ssh tunnel in C/C++ cross-platform?

I need to connect via TCP to a port that's behind a firewall, accessible through an SSH tunnel. I can achieve connection by opening a tunnel and hittting that port, but I want to build this tunneling ...
11
votes
3answers
1k views

C# Library for SSH and Telnet

I'm looking for a C# library that provides access to both SSH and Telnet under the same interface. What would be a good choice?
11
votes
7answers
2k views

Delete newline in Vim

Is there a way to delete the newline at the end of a line in Vim, so that the next line is appended to the current line? For example: Evaluator<T>(): _bestPos(){ } I'd like to put this ...
11
votes
1answer
2k views

Fix msysGit Portable $HOME location

I have successfully installed and configured msysGit Portable on my flash drive, and have used it to pull and push GitHub repos. However, I seem to always have to kludge the SSH support. ...
11
votes
12answers
7k views

Tunnel over HTTPS

At my workplace, the traffic blocker/firewall has been getting progressively worse. I can't connect to my home machine on port 22, and lack of ssh access makes me sad. I was previously able to use ...
10
votes
4answers
378 views

Can a Python Fabric task invoke other tasks and respect their hosts lists?

I have a fabfile like the following: @hosts('host1') def host1_deploy(): """Some logic that is specific to deploying to host1""" @hosts('host2') def host2_deploy(): """Some logic that is ...
10
votes
3answers
1k views

Python's Fabric: Connect to a host listed .ssh/config

I'm having trouble with Fabric not recognizing hosts that I have in .ssh/config. My fabfile.py is as follows: from fabric.api import * env.hosts = ['lulu'] def whoami(): run('whoami') ...
10
votes
1answer
2k views

How to let TortoiseHg (Mercurial) on Windows use the Private Key file generated (by Puttygen)?

I have used Puttygen to create a public and a private key, and then is ready to let TortoiseHg on Windows 7 do a clone by going to ssh://somebody@code.somewhere.com/somecode but there seems to be ...
10
votes
4answers
1k views

Cloning a read-write github repository using TortoiseHg

I'm trying to clone my personal fork on github using the git+ssh protocol with TortoiseHg. It's giving me a rather strange error. Here is the command hg clone ...
10
votes
3answers
2k views

Open file via SSH and Sudo with Emacs

I want to open a file inside Emacs which is located on a remote server, with sudo powers on the server. I can open local files with sudo via Tramp like this: C-x C-f /sudo::/home/user/file But I ...
10
votes
2answers
3k views

SSH cannot authenticate to git@github.com

Recently, I sign up for a free plan on Github.com. I follow their instructions to generate a ssh key to add to my account. However, when I try ssh -v git@github.com, I get this error: debug1: Server ...
10
votes
1answer
6k views

What does git update-server-info do?

What does git update-server-info do? How do I know if I need it? The manual says: A dumb server that does not do on-the-fly pack generations must have some auxiliary information files in ...
10
votes
2answers
6k views

VisualVM over ssh

I've read Visual VM remotely over ssh but I think I've not fully understood because it was not working for me :-( Please can someone give some example? ssh -D 9696 login@ip.of.external.machine and ...
10
votes
3answers
3k views

HowTo: Teamcity + GitHub

Has anybody successfully configured Teamcity to monitor, extract, and build from GitHub? I can seem to figure how where and how to configure the SSH keys for Teamcity. I have Teamcity running as a ...
10
votes
9answers
13k views

Running commands over ssh with Java

Scenerio: I'd like to run commands on remote machines from a Java program over ssh (I am using OpenSSH on my development machine). I'd also like to make the ssh connection by passing the password ...
10
votes
7answers
16k views

Using expect to pass a password to ssh

How can I use expect to send a password to an ssh connection. say the password was p@ssword and the ssh command was ssh me@127.0.0.1 What would I do with expect to a make it input the password when ...
9
votes
1answer
495 views

Reverse Port Forward using libssh2 on iOS

I'm looking for some example code of a reverse port forward on iOS using libssh2. Here's a close example: Example code of libssh2 being used for port forwarding But I'd like it to be tailored to iOS ...
9
votes
3answers
1k views

Cloning a Mercurial repository over SSH

I'm having some difficulty cloning my mercurial repository over ssh. Here's what I have tried: hg clone ssh://username@username.webfactional.com/path/to/projectname projectname It's giving me this ...
9
votes
6answers
1k views

I'd like to run a command over ssh from a windows box running using c#

Note that this has to be on a windows box as I am using c# to access information about windows (I need information from both a windows box and a linux box, plus I think that making a program/script ...
9
votes
3answers
2k views

How to use sudo over SFTP with CyberDuck?

I'm copying this question from over here: http://getsatisfaction.com/cyberduck/topics/can_i_use_sudo_over_sftp_with_cyberduck I am having the same issue and finding it hard to find an answer: I ...

1 2 3 4 5 49