Jump to content

CryBaby

Members
  • Posts

    120
  • Joined

  • Last visited

Posts posted by CryBaby

  1. Did you do Update All after removing knotes?

    If you were running wayland you will probably need to use Ctrl-Alt-F3 as wayland uses F1 and there is an (unusable) X server on F2 for xwayland. Then, after logging in

    sudo apt update
    sudo apt full-upgrade

    If that's not enough try

    sudo apt install task-kde-desktop
  2. The armbian edge image for the FriendlyElec CM3588-NAS is currently on kernel 6.17 but has no HDMI audio despite it having been added in 6.15 (I think). This is simply because it has not been enabled in the device tree for this board. You can enable it with this user overlay:

    /dts-v1/;
    /plugin/;
    
    / {
            fragment@0 {
                    target-path = "/hdmi0-sound";
    
                    __overlay__ {
                            status = "okay";
                    };
            };
    
    
            fragment@1 {
                    target-path = "/hdmi1-sound";
    
                    __overlay__ {
                            status = "okay";
                    };
            };
    };

     

  3. I would put boot and system on the eMMC. Then it will run with or without the SSD, which I would reserve for data. Things like VMs and containers that get a lot of writes can go on the SSD and be symbolically linked to their system folders.

  4. I would guess you have fiddled with /etc/fstab or copied your root partition from elsewhere without fiddling with your /etc/fstab. Or maybe /boot/armbianEnv.txt

     

    At any rate, the kernel is looking for a partition with UUID=0b77.... to mount at / but isn't finding it. So you need to either change the UUID it is looking for to the one your root partition has, or change your root partition to have the UUID it is looking for.

  5. You could set up a cron job to reboot it every so often. Log in with PuTTY and type

    sudo crontab -e

    This will open the default crontab in an editor, probably nano. At the end of the file add the line

    0 * * * * systemctl reboot
    

    to reboot every hour on the hour. It needs to have a newline at the end, ie. a blank line at the bottom of the file.

    man 5 crontab

    will tell you more.

×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines