RasPiArduino
RasPiArduino copied to clipboard
my password wrong
i type password for scketch upload... its wrong? what? what default password for scketch upload?
i need default password for sketch upload
https://imgur.com/E3IbKjz see screhshot
uses root account so you must set the root password first if you have not done so
root and user password wrong for upload((( i used it
can you ssh root@raspberrypi-ip ? sudo and root passwords are two different things
password for root and user identical
So were you able to ssh as root to your pi? Or did you ssh as pi and then did sudo/su? Did you set the root password yourself? Did you make sure that in sshd.conf root logins are permitted? What did you really try?
Password for pi@piduino:12345pass
Gain root permissions
sudo su
Enable password login for root
passwd
enter the new root password twice
--> change to 12345pass
pi@piduino:/etc/ssh $ cat ssh_config
Host * SendEnv LANG LC_* HashKnownHosts yes GSSAPIAuthentication yes
pi@piduino:/etc/ssh $ cat sshd_config
ChallengeResponseAuthentication no
UsePAM yes
X11Forwarding yes
PrintMotd no
AcceptEnv LANG LC_*
Subsystem sftp /usr/lib/openssh/sftp-server
What can i do for change password?
its a default for me(
Hi, your password is right. If you get again and again pop up window for password, then problem is in command sed -i "s/PermitRootLogin without-password/PermitRootLogin yes/" /etc/ssh/sshd_config This command will permit root login, but if (in default) this option is remarked, then this command will change permit root login, but do not uncheck remark. Should be: sed -i "s/#PermitRootLogin without-password/PermitRootLogin yes/" /etc/ssh/sshd_config