1. Got a question or need help troubleshooting? Post to the troubleshooting forum or Search the forums!

Robo3D Not working on Linux

Discussion in 'Troubleshooting' started by Dennis R. Andersen, Jul 30, 2013.

Thread Status:
Not open for further replies.
  1. WizardStan

    WizardStan Member

    Joined:
    Nov 9, 2013
    Messages:
    51
    Likes Received:
    7
    This patch should work: http://www.rebirthofxeen.com/files/serial-2.11.4.patch
    I can't say for certain though because I can't get 2.11.4 to compile. Complains about some missing dependencies (probably because Ubuntu only has 2.10.8 and I don't feel like digging for what it needs that isn't installed automatically)
    If that doesn't work, there's no reason you can't have both. Build 2.10.8 as above and modify the repetierHost script to call this specific version of mono instead of the system default.
     
  2. Shigemal

    Shigemal Member

    Joined:
    Aug 19, 2013
    Messages:
    126
    Likes Received:
    13
    Hello WizardStan
    Thanks for your support.
    I can work it on my Ubuntu13.04 with your patch.

    regards
     
  3. WizardStan

    WizardStan Member

    Joined:
    Nov 9, 2013
    Messages:
    51
    Likes Received:
    7
    Alright, got 2.11.4, and then 3.2.3 to compile and run RepetierHost with this patch: http://www.rebirthofxeen.com/files/serial-2.11.patch
    I called it "serial-2.11" but really it was built against 3.2.3. Nothing ground breaking between 2.11 and 3.2 so it'll work just fine for anything after 2.10. My first patch is still required for 2.10.x though.
    Code:
    git clone https://github.com/mono/mono.git
    cd mono
    <optional> git checkout tags/mono-2.11.4  (or 3.2.3, whichever version you have installed or want to install)
    git submodule init
    git submodule update
    wget -O serial.patch http://www.rebirthofxeen.com/files/serial-2.11.patch
    patch ./support/serial.c serial-2.11.patch
    ./autogen.sh --prefix=/usr
    make
    sudo make install
    
     
  4. shadenhand

    shadenhand New Member

    Joined:
    Jun 6, 2014
    Messages:
    21
    Likes Received:
    4
    I ran into required file '../../config.rpath' not found can be fixed by

    Code:
    touch ../../config.rpath
    before running autogen
     
  5. shadenhand

    shadenhand New Member

    Joined:
    Jun 6, 2014
    Messages:
    21
    Likes Received:
    4
    for some reason it's not allowing me to edit my last post but I found a bug in your code snippet.
    you wget the patch as serial.patch and try to run it as serial-2.11.patch

    took me a while to figure out what I was doing wrong.
     
Thread Status:
Not open for further replies.

Share This Page