Yang sheng
Yang sheng
> Do you push via SSH? What does your `git remote -v` show? When I do , just as show ``` ▸ git remote -v origin ssh://[email protected]:12390/led3000.git (fetch) origin ssh://[email protected]:12390/led3000.git...
> Have you tried if you can use SSH against the server? `ssh -l username -i .ssh/id_rsa -p 29418 servername.com` when I do command as below ``` bash ▸ ssh...
> Hi @iysheng wave, thanks for your contribution +1 > I'll review the changes in the near future and get back to you. > My first thought was that a...
I meet this mistake today , when i connect vref to 3.3 supply, it's ok, i can connect the riscv chip, maybe you can check your jtag wire connection.
I use sshd version as: ``` ▸ sshd --version unknown option -- - OpenSSH_8.7p1, OpenSSL 1.1.1q FIPS 5 Jul 2022 usage: sshd [-46DdeiqTt] [-C connection_spec] [-c host_cert_file] [-E log_file] [-f...
I'm sorry for that use the sshd command, I test with your guide as: ``` OpenSSH_8.7p1, OpenSSL 1.1.1q FIPS 5 Jul 2022 debug1: Reading configuration data /etc/ssh/ssh_config debug1: Reading configuration...
> Did you install a nerd font and `vim-devicons` plugin? And do you use neovim? There are couple of tabline plugins that are being under active development unlike vim-buffet and...
> I just noticed these lines in your output: > ``` > debug1: Offering public key: /home/red/.ssh/id_rsa RSA SHA256:JBRN+h1D0t2TNAVnrF/odMbcLC5LbGLcZe7ttaINrp4 > debug1: send_pubkey_test: no mutual signature algorithm > ``` > >...
> > ``` > debug1: Offering public key: /home/red/.ssh/id_rsa RSA SHA256:JBRN+h1D0t2TNAVnrF/odMbcLC5LbGLcZe7ttaINrp4 > debug1: send_pubkey_test: no mutual signature algorithm > ``` > > Googling this, it turns out that this is...
> You also need: > HostKeyAlgorithms +ssh-rsa > thanks,after I add both these lines in file */etc/ssh/ssh_config* ``` PubkeyAcceptedKeyTypes +ssh-rsa HostKeyAlgorithms +ssh-rsa ``` It's ok now.