I'm trying to install PIUIO on a fresh Ubuntu 20.04.2 image.
root@sm5:~/piuio/mod# make
make -C /lib/modules/5.8.0-53-generic/build M=/root/piuio/mod modules
make[1]: Entering directory '/usr/src/linux-headers-5.8.0-53-generic'
make[1]: Leaving directory '/usr/src/linux-headers-5.8.0-53-generic'
root@sm5:~/piuio/mod# make install
make -C /lib/modules/5.8.0-53-generic/build M=/root/piuio/mod modules_install
make[1]: Entering directory '/usr/src/linux-headers-5.8.0-53-generic'
INSTALL /root/piuio/mod/piuio.ko
At main.c:160:
- SSL error:02001002:system library:fopen:No such file or directory: ../crypto/bio/bss_file.c:69
- SSL error:2006D080:BIO routines:BIO_new_file:no such file: ../crypto/bio/bss_file.c:76
sign-file: certs/signing_key.pem: No such file or directory
DEPMOD 5.8.0-53-generic
Warning: modules_install: missing 'System.map' file. Skipping depmod.
make[1]: Leaving directory '/usr/src/linux-headers-5.8.0-53-generic'
The depmod was skipped, so I run it, and immediately after try modprobe piuio, which gives me the line Killed. Inspecting the output of dmesg, I get this:
The same issue happens on either the master branch or legacy branch. If I try to do almost anything on boot (such as hit enter on a keyboard), Linux freezes immediately. SSHing into the box and removing the piuio.ko file returns me back to normal. Any insight you could provide on how to overcome this would be very much appreciated! Thank you for your time.
I'm trying to install PIUIO on a fresh Ubuntu 20.04.2 image.
The
depmod
was skipped, so I run it, and immediately after trymodprobe piuio
, which gives me the lineKilled
. Inspecting the output ofdmesg
, I get this:The same issue happens on either the master branch or legacy branch. If I try to do almost anything on boot (such as hit enter on a keyboard), Linux freezes immediately. SSHing into the box and removing the
piuio.ko
file returns me back to normal. Any insight you could provide on how to overcome this would be very much appreciated! Thank you for your time.