By default we need type remote user’s password to access to remote host with ssh command.This tutorial shows how to configure to access remote host without password.
First,assume:
local host:192.168.1.100
remote host:192.168.1.101,username:username
we want to access to username@192.168.1.101 from 192.168.1.100 without password using ssh
Here are the steps I did on my local computer:
ssh-keygen -t rsa
cat ~/.ssh/id_rsa | ssh root@remotehost.com -p 1234 "cat > ~/.ssh/authorized_keys"
When I do a ssh root@remotehost.com -p 1234 it still asks for the password :o
root@remotehost.com's password:
Why is it so? I already added it to the authorized keys but it still asks for the password.
It appears that my keyring manager has gone on strike. I did a "zupper up" today and ever since doing that, the computer has not asked me to enter my default keyring password when booting up. The only way for me to connect to my wireless is to enter the WPA security code every time and when loading Pidgin I have to enter all my passwords. This is very annoying!!!!
Good Evening all,
After spending the last week or so reading many posts I decided to register and join in.
I upgraded 32 bit Ubuntu 10.04 to 12.04. When I click on my name at log in it gives me no chance to enter my password, it just says "log in." If I click on "avg," (whatever that is) it says "Password," and allows me to enter mine, which is rejected. I can log in as "Guest," and the installation seems otherwise good.
My GUI froze while multiple actions were taken in the web browser. I activate Ctrl + Alt + F2 to open the terminal, in the hopes of restarting it as described here.
The terminal opens up, listing the computer name, version of ubuntu, etc. I am prompted for 'ubuntu login'. I enter the username of my Super User account (The only account I have here, after the default guest).
Hi,
I have an issue coming up with my opensuse 11.2.
Its taking too much time to prompting me to enter password after boot-up and it is asking me to enter PAM_MOUNT password.
I entered the password which i use to login to my computer and it is not letting me to log-in.
I tried using safe mode and am not able to login through command line.
ralvez wrote:May be you have such a "cool password" that chills the CPU and the system freezes ... (sorry I could not help myself ;) )Lol :Dralvez wrote:Are you trying to change the user's password? If that is the case you can use the CLI to accomplish it.R.p.s.
Hello,
I have a python script (not created by me), let's call it myscript, which I call with several parameters. If I don't provide the --password parameter, the script will ask the user to input the password.
So I run the script like this:
Code:
/wherever/myscript --username=whoever /some/other/path/parameter
That makes it ask for a password and wait for user input.