Jump to content

CryBaby

Members
  • Posts

    114
  • Joined

  • Last visited

Posts posted by CryBaby

  1. 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";
                    };
            };
    };

     

  2. 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.

  3. Sounds to me like a bad SD card. If you get a splash screen there must be some sort of bootloader. Another possibility is an inadequate power supply. Try one with more amps.

  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.

  6. I haven't seen modules like those before but I've used the typical 'terminal server' in a metal box. They work, the only caveat I would mention is that they can have old and non-standard web interfaces for configuration. Some of the cheaper ones I've used can only be accessed with Konqueror, not Firefox or other more common browsers. I don't know about VLANs.

×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines