Ticket Created
over 5 years ago

WERETECH-9679

SDK Manager fails in Fedora Linux

Split off from other bug report.

The SDK manager gives the following error on Fedora 32:

Unable to download the list of SDKs. Error code: 33554509

and

Unable to downloaded the device list. Error code: 33554509

The errors occur after successfully logging in.

using an ubuntu docker image, the sdkmanager does work.

Also tried to run sdkmanager via a proxy to see what it was doing. If I configure a system proxy then sdkmanager makes a few successful requests to cloudflare then crashes with a segmentation violation.

Parents
  • My account works with the following:

    $ cat Dockerfile 
    FROM ubuntu:bionic
    
    RUN DEBIAN_FRONTEND=noninteractive apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y install software-properties-common && DEBIAN_FRONTEND=noninteractive apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y install git openjdk-8-jre-headless build-essential sudo wget unzip libxxf86vm1 libgtk2.0-0 openssh-server libusb-1.0-0 libsm6 libwebkitgtk-1.0-0 imagemagick imagemagick-common x11-apps nodejs && apt-get clean && rm -rf /var/lib/apt/lists/*
    
    RUN wget https://developer.garmin.com/downloads/connect-iq/sdk-manager/connectiq-sdk-manager-linux.zip && unzip connectiq-sdk-manager-linux.zip
    
    $ cat run
    #!/bin/sh
    docker build -t ub .
    docker run -e DISPLAY=$DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix -e XDG_RUNTIME_DIR=$T -e WAYLAND_DISPLAY=$WAYLAND_DISPLAY -v $XDG_RUNTIME_DIR/$WAYLAND_DISPLAY:/tmp/$WAYLAND_DISPLAY -it --rm ub bash
    

Comment
  • My account works with the following:

    $ cat Dockerfile 
    FROM ubuntu:bionic
    
    RUN DEBIAN_FRONTEND=noninteractive apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y install software-properties-common && DEBIAN_FRONTEND=noninteractive apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y install git openjdk-8-jre-headless build-essential sudo wget unzip libxxf86vm1 libgtk2.0-0 openssh-server libusb-1.0-0 libsm6 libwebkitgtk-1.0-0 imagemagick imagemagick-common x11-apps nodejs && apt-get clean && rm -rf /var/lib/apt/lists/*
    
    RUN wget https://developer.garmin.com/downloads/connect-iq/sdk-manager/connectiq-sdk-manager-linux.zip && unzip connectiq-sdk-manager-linux.zip
    
    $ cat run
    #!/bin/sh
    docker build -t ub .
    docker run -e DISPLAY=$DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix -e XDG_RUNTIME_DIR=$T -e WAYLAND_DISPLAY=$WAYLAND_DISPLAY -v $XDG_RUNTIME_DIR/$WAYLAND_DISPLAY:/tmp/$WAYLAND_DISPLAY -it --rm ub bash
    

Children
No Data