2

I just installed Ubuntu on my Nexus 7 and works like a champ, but I can't connect via SSH/Telnet/RSH from my laptop. I've installed openssh-server, telnetd-ssl and rsh-server, but still can't.

The connection is made, but it hangs after typing my password.

$ ssh ubuntu@192.168.1.70  
ubuntu@192.168.1.70's password:

I'm running Ubuntu Raring 13.04 on a Nexus 7 32GB

Thank you.

Eliah Kagan
  • 117,780
Omar
  • 21

2 Answers2

0

I have just installed Ubuntu 13.04 on a nexus 7. The steps were, in a terminal on the nexus:

$ apt-get install openssh-server # answer y
$ ifconfig wlan0 # to find nexus IP address

Then, on a computer in the same wireless network,

$ ssh loginname@ip-address

The authenticity of host '192.168.131.40 (192.168.131.40)' can't be established.
ECDSA key fingerprint is 54:22:d3:ea:2e:af:b2:87:23:74:1a:ce:f5:e5:e4:11.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.131.40' (ECDSA) to the list of known hosts.
loginname@192.168.131.40's password: 

The programs included with the Ubuntu system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Ubuntu comes with ABSOLUTELY NO WARRANTY, to the extent permitted by
applicable law.

Welcome to Ubuntu Raring Ringtail (development branch) (GNU/Linux 3.1.10-8-nexus7 armv7l)

 * Documentation:  https://help.ubuntu.com/

loginname@nexus:~$ 
mök
  • 1
  • That's what I did, but I couldn't login via SSH. I'm going to reinstall Ubuntu and see what happens. Thanks guys! – Omar Jan 15 '13 at 04:04
-2

Login with the user you created during the installation. But make ssh more verbose, should tell you were it is hanging.

ssh -vvv ubuntu@192.168.1.70
strings
  • 1,374