Need help with Roon setup

Could be. What is the output of uname -m?

x86_64 is the output

Perhaps try this:

uname -m
sudo ./roonserver-installer-linuxx64.sh 

And send us the output of both commands. Unless I’m missing something obvious, the installer script will not output the “This package is intended for x64 platforms.” message if uname -m is x86_64 (relevant code below):

ARCH=x64
MACHINE_ARCH=`uname -m`
OK=0

    #
    # Check for proper architecture
    #
    case "$MACHINE_ARCH" in
        x86_64*)
            if [ x$ARCH = xx64 ]; then OK=1; fi
            ;;
        i686*)
            if [ x$ARCH = xx86 ]; then OK=1; fi
            ;;
    esac

    if [ x$OK != x1 ]; then
        echo ""
        echo -e "${COL_RED}${COL_BLOLD}Error:${COL_RESET} This package is intended for $ARCH platforms. It is not compatible with your machine. Exiting."
        echo ""
        exit 3
    fi

I think with all my aborted attempts at this a fresh install of Debian is in order - it doesn’t take long - thanks very much for persevering with a ADD patient :slight_smile: I will report back

1 Like

Yes I’ve looked at that part of the script - please see my other reply to you

1 Like

At long last we have SUCCESS - thanks to you and everyone else who contributed - what a great forum

5 Likes