ssh error in Ubuntu 9.10


 
Thread Tools Search this Thread
Operating Systems Linux Ubuntu ssh error in Ubuntu 9.10
# 1  
Old 03-31-2010
ssh error in Ubuntu 9.10

I 'm getting following error when i do

#ssh localhost or # ssh ip


ssh: cannot connect to localhost at port 22: Address family not supported by protocol.


what could be the reason for this .. i 'm new to ubuntu and having hard time getting the VM online on network
# 2  
Old 03-31-2010
Is the SSH daemon running? Is it even installed?

To check the former:
Code:
ps aux | grep sshd

If it's installed, but just not running, start it using
Code:
sudo /etc/init.d/sshd start

To check the later:
Code:
dpkg --get-selections | grep openssh-server

If it's not installed, get it by running
Code:
sudo apt-get install openssh-server

# 3  
Old 04-01-2010
yes ssh is not there on it ..

there is one other thing i 'm facing issues with i disabled the ipv6 but if i do ifconfig -a i do not see the eth0 being given to the interface though i have
enabled the dhcp client for the eth0 interface.
# 4  
Old 04-01-2010
Quote:
Originally Posted by fugitive
there is one other thing i 'm facing issues with i disabled the ipv6 but if i do ifconfig -a i do not see the eth0 being given to the interface though i have
enabled the dhcp client for the eth0 interface.
What?
# 5  
Old 04-02-2010
see the port assigned............if no idea try on port 2222
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Copying a text file from my Ubuntu Windows Sub System to a remote instance through SSH

*Following questions involves use of YAML, BASH, SSH and Software called Ansible* I am trying to learn how to use a Linux environment (in my case a Ubuntu Windows Sub System) to copy a text file from my files to a remote instance (in this case Amazon Web Services) by connecting via SSH. I... (8 Replies)
Discussion started by: Suhaba
8 Replies

2. Ubuntu

Error starting terminal in Ubuntu 14.04.3

I am unfamiliar with below error and how to fix it, it happens when I start the terminal in Ubuntu 14.04.3. I do not send any command only press crtl+alt+T. It seems to indicate that something is missing from PATH but I’m not really sure what. Thank you :). Command 'lesspipe' is... (24 Replies)
Discussion started by: cmccabe
24 Replies

3. IP Networking

Unable to SSH from Windows client to Ubuntu Server

I'm trying to setup a small home network environment as a pet project. These are physical machines nothing virtual. Any help or ideas is greatly appreciated. I can ping between both machines and I have Samba established and can read/write different shares. When I try to SSH from Windows 8.1... (10 Replies)
Discussion started by: lombardi4851
10 Replies

4. Ubuntu

[Solved] Ssh and scp between two vmware Ubuntu

Hello, Please, I would like to connect a VM to another: I typed as follows: ssh root@192.168.1.4 root@192.168.1.4 's password: Permission denied, please try again. root@192.168.1.4 's password: Permission denied, please try again. root@192.168.1.4 's password: Permission denied... (6 Replies)
Discussion started by: chercheur111
6 Replies

5. UNIX for Dummies Questions & Answers

Error while installing glibc 2.16.0 on ubuntu 12.04 LTS

I come across the following error while configuring glibc 2.16.0 on ubuntu 12.04 LTS:"These critical programs are missing or too old: ld". Please suggest me a solution for the same at the earliest. (1 Reply)
Discussion started by: nov_2012
1 Replies

6. Ubuntu

ubuntu error message when updating

whenever I chck for an update I get the following error message: W:Failed to fetch http://ppa.launchpad.net/cheleb/blender-svn/ubuntu/dists/precise/main/source/Sources 404 Not Found , W:Failed to fetch http://ppa.launchpad.net/cheleb/blender-svn/ubuntu/dists/precise/main/binary-amd64/Packages ... (3 Replies)
Discussion started by: programAngel
3 Replies

7. Ubuntu

Globus 5.0.0 installation error in ubuntu 9.1

I am installing globus toolkit 5 on ubuntu, i am getting error regarding openssl build. Unable to build Openssl. I am giving the whole installer.log file below. globus@naveen-laptop:~/gt4.0.6-all-source-installer$ make | tee istaller.log /usr/local/globus//sbin/gpt-build ... (0 Replies)
Discussion started by: naveencse
0 Replies

8. UNIX for Advanced & Expert Users

ssh error: Error reading response length from authentication socket

Hi - I am getting the error `Error reading response length from authentication socket' when I ssh from my cluster to another cluster, and then back to my cluster. It doesn't seem to affect anything, but it's just annoying that it always pops up and tends to confuse new users of the cluster. I... (1 Reply)
Discussion started by: cpp6f
1 Replies

9. Linux

Error while executing Directfb program on ubuntu

Hi , I am getting error while executing Directfb program on ubuntu ,, my program is : #include <stdio.h> #include <unistd.h> #include <directfb.h> static IDirectFB *dfb = NULL; static IDirectFBSurface *primary = NULL; static int screen_width = 0; static int screen_height... (0 Replies)
Discussion started by: Ravikishore
0 Replies

10. UNIX and Linux Applications

Grace installation Ubuntu 8.10 - Motif error

Hi, I am trying to install Grace version 5.1.22. The configuration script gives the error below: checking for a Motif >= 1002 compatible API... no configure: error: M*tif has not been found I had lesstif2 and lesstif2-dev installed when I first encountered the error. I installed... (0 Replies)
Discussion started by: apprentice
0 Replies
Login or Register to Ask a Question