Tag: ubuntu

  • Mounting an NVMe drive with pmount in Linux

    If we try to mount an NVMe drive with pmount the following error will occur: jaufranc@Mini-IT13-CNX:~$ pmount /dev/nvme1n1p1 Error: device /dev/nvme1n1p1 is not removable We can fix this by editing /etc/pmount.allow and adding the drive or partition to the list of allowed drives: /dev/nvme1n1p1 A quick test shows that it did the trick: jaufranc@Mini-IT13-CNX:~$ pmount…

  • Ubuntu 23.04 on StarFive VisionFive 2 RISC-V single board computer

    Canonical has just published an optimized Ubuntu release for StarFive VisionFive 2 RISC-V SBC. The board supports Ubuntu 23.04 which you can download on the Ubuntu website. More details can be found in the announcement.

  • Things to do after installing Ubuntu 22.04

    dmesg will not run Ubuntu 22.04 due to permissions issues. To change that edit /etc/sysctl.d/10-kernel-hardening.conf Uncomment the last line: kernel.dmesg_restrict = 0 and restart the procps service sudo service procps restart A USB to TTL CH340/CH341 debug board may automatically become disconnected in Ubuntu 22.04: [ 7471.658077] usb 3-1: USB disconnect, device number 2 […