Skip to content

Setup: Install bootloader from legacy

Paul de Vries edited this page Jun 18, 2016 · 2 revisions
  1. First make sure you have upgraded TouchUI to 0.3.4+

  2. Stop TouchUI:

    sudo service touchui stop
    
  3. Remove the old files (also the zip if you still have it)

    rm -rf ~/OctoPrint-TouchUI-autostart/
    rm -rf ~/autostart.zip
    
  4. Get the new bootloader:

    git clone https://github.com/BillyBlaze/OctoPrint-TouchUI-autostart.git ~/TouchUI-autostart/
    
  5. Register the new paths:

    sudo cp ~/TouchUI-autostart/touchui.init /etc/init.d/touchui
    sudo chmod +x /etc/init.d/touchui
    sudo cp ~/TouchUI-autostart/touchui.default /etc/default/touchui
    sudo update-rc.d touchui defaults
    
  6. Start TouchUI:

    sudo service touchui start