Build a spare SDCard with Raspbian Buster Lite, boot that, run sudo apt update; sudo apt dist-upgrade-y; sudo rpi-eeprom-update; sudo poweroff. Then swap back to your Ubuntu card.
I am not joining the 2 systems, I apologize for the bad translation. i mean i'm using Ubuntu 20.04 because it already has openssh8.2. while Raspbian has openssh7.9 in the buster version. I don't want to join anything. i was wondering how can i upgrade openssh from version 7.9 to 8.2 on raspbian without using testing reposity (bullseye). all here.
I'll explain: in practice there were two requests, the first was how to have rpi-eeprom on ubuntukerry_s wrote: ↑Sun May 17, 2020 7:00 ami'm confused i thought you wanted "rpi-eeprom on Ubuntu 20.04" so basically the only thing you really need is "openssh 8.2" on raspbian.
i'm still not understanding why the currently installed ssh is not good enough for you on raspbian. it is the stable version for raspbian buster 10.
if ubuntu works for you, use that. ubuntu has there own boot loader & kernel.
rpi-eeprom is just for raspbian. made specifically for the rpi running raspbian.
https://www.raspberrypi.org/documentati ... teeprom.md
Quite so. It seems to me that:I'll explain: in practice there were two requests, the first was how to have rpi-eeprom on ubuntu
and the second how to have openssh 8.2 on raspbian.
Code: Select all
$ sudo apt-get update && sudo apt-get upgrade -y
$ sudo apt-get install gcc libssl-dev libcbor-dev zlib* make
$ sudo apt-add-repository ppa:yubico/stable
$ sudo apt-get update -y
$ sudo apt-get install libfido2-dev
$ cd /usr/local/src
$ wget https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-8.2p1.tar.gz
$ tar -zxvf openssh-8.2p1.tar.gz
$ cd /usr/local/src/openssh-8.2p1
$ ./configure --prefix=/usr --with-security-key-builtin
$ make && make installStart a new thread for this. Nobody will see it in an EEPROM on Ubuntu thread hidden in the backwater of the forum.tigernero wrote: ↑Sun May 17, 2020 12:07 pmI Try
but after compiling openssh it does not start, when you type sudo service openssh restart I get it wrongCode: Select all
$ sudo apt-get update && sudo apt-get upgrade -y $ sudo apt-get install gcc libssl-dev libcbor-dev zlib* make $ sudo apt-add-repository ppa:yubico/stable $ sudo apt-get update -y $ sudo apt-get install libfido2-dev $ cd /usr/local/src $ wget https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-8.2p1.tar.gz $ tar -zxvf openssh-8.2p1.tar.gz $ cd /usr/local/src/openssh-8.2p1 $ ./configure --prefix=/usr --with-security-key-builtin $ make && make install
DougieLawson wrote: ↑Sun May 17, 2020 12:40 pmStart a new thread for this. Nobody will see it in an EEPROM on Ubuntu thread hidden in the backwater of the forum.tigernero wrote: ↑Sun May 17, 2020 12:07 pmI Try
but after compiling openssh it does not start, when you type sudo service openssh restart I get it wrongCode: Select all
$ sudo apt-get update && sudo apt-get upgrade -y $ sudo apt-get install gcc libssl-dev libcbor-dev zlib* make $ sudo apt-add-repository ppa:yubico/stable $ sudo apt-get update -y $ sudo apt-get install libfido2-dev $ cd /usr/local/src $ wget https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-8.2p1.tar.gz $ tar -zxvf openssh-8.2p1.tar.gz $ cd /usr/local/src/openssh-8.2p1 $ ./configure --prefix=/usr --with-security-key-builtin $ make && make install
Code: Select all
deb http://raspbian.raspberrypi.org/raspbian/ bullseye main contrib non-free rpi
Code: Select all
sudo apt install -t bullseye opensshCode: Select all
deb http://archive.raspberrypi.org/debian/ buster mainCode: Select all
# Pin bullseye to low priority
Package: *
Pin: release n=bullseye
Pin-Priority: 50
Code: Select all
apt install -t bullseye openssh-server
Code: Select all
deb http://raspbian.raspberrypi.org/raspbian/ bullseye main contrib non-free rpiCode: Select all
libc6-dev: Break: libgcc-8-dev (<8.4.0-2 ~) but version 8.3.0-6 + rpi1 is about to be installedCode: Select all
sudo apt install -t bullseye gcc-8-baseCode: Select all
sudo apt install -t bullseye openssh-server