Giter Club home page Giter Club logo

octowrt's Introduction

OctoWrt

A guide to install OctoPrint on the Creality WiFi Box or similar OpenWrt devices.


What is the Creality Wi-Fi Box?

Click to expand info!


= A router box device released by Creality meant to add cloud control to your printer. Comes with closed source and proprietary software. However, some people might not like that.

Specifications:

(taken form figgyc's commit)

  • SoC: MediaTek MT7688AN @ 580 MHz

  • Flash: BoyaMicro BY25Q128AS (16 MiB, SPI NOR)

  • RAM: 128 MiB DDR2 (Winbond W971GG6SB-25)

  • Peripheral: Genesys Logic GL850G 2 port USB 2.0 hub

  • I/O: 1x 10/100 Ethernet port, microSD SD-XC Class 10 slot, 4x LEDs, 2x USB 2.0 ports, micro USB input (for power only), reset button

  • FCC ID: 2AXH6CREALITY-BOX

  • UART: test pads: (square on silkscreen) 3V3, TX, RX, GND; default baudrate: 57600

Demo:

Click to expand demo video!
demo_video.mp4

Automatic:

Expand steps!

1. Flash Openwrt following guide here:

   Once flashed setup internet access on the box (either Wi-Fi client or wired connection)
Expand Internet setup!
  • Make sure you've flahsed/sysupgraded latest .bin file from /Firmware/OpenWrt_snapshot/ or from latest release.

  • Connect to the OpenWrt access point

  • Access LuCi web interface and log in on 192.168.1.1:81

  • (optional but recommended) Add a password to the OctoWrt access point: Wireless -> Under wireless overview EDIT the OpenWrt interface -> Wireless Security -> Choose an encryption -> set a password -> Save -> Save & Apply

  • (optional but recommended) Add a password: System -> Administration -> Router Password

  • ❗If your home network subnet is on 1 (192.168.1.x), in order to avoid any ip conflicts, change the static ip of the box LAN from 192.168.1.1 to something like 192.168.3.1. To do that access the luci webinterface -> Network -> Interfaces and edit the static ip -> Save -> press the down arow on the Save&Apply button -> Apply Unchecked. You can now access luci on the new ip and continue configureing Client setup.

  • Connect as a client to your Internet router: Network -> Wireless -> SCAN -> Join Network -> check Lock to BSSID -> Create/Assign Firewall zone then under custom type wwan enter -> Submit -> Save -> Dropdown arrow -> Apply Unchecked -> Apply Unchecked

  • Connect back to your main internet router and find the new box's ip inside the DHCP list.

  • ❗ Access the terminal tab (Services -> Terminal) ❗ If terminal tab is not working go to Config tab and change Interface to the interface you are connecting through the box (your wireless router SSID for example) -> Save & Apply.

  • Proceed with step 2

2. Execute extroot script:

cd /tmp
wget https://github.com/ihrapsa/OctoWrt/raw/main/scripts/1_format_extroot.sh
chmod +x 1_format_extroot.sh
./1_format_extroot.sh

3. Execute install script:

cd /tmp
wget https://github.com/ihrapsa/OctoWrt/raw/main/scripts/2_octoprint_install.sh
chmod +x 2_octoprint_install.sh
./2_octoprint_install.sh

4. Access Octoprint UI on port 5000

http://box-ip:5000

When prompted use the following server commands:

  • Restart OctoPrint : /etc/init.d/octoprint restart
  • Restart system : reboot
  • Shutdown system : poweroff

For webcam support:

/etc/config/mjpg-streamer is the configuration file. Modify that to change resolution, fps, user, pass etc.

Inside OctoPrint snapshot and stream fields add the following:

  • Stream URL: http://your-box-ip:8080/?action=stream
  • Snapshot URL: http://your-box-ip:8080/?action=snapshot
  • ffmpeg binary path as: /usr/bin/ffmpeg

Manual:

Expand steps!

⤵️ Preparing:

Expand steps!
  • OpenWrt: Make sure you've got OpenWrt flashed. Follow guide form here -> Once flashed setup Wi-Fi client or wired connection for internet access on the box

  • Extroot: execute this script. Make sure to have a microsd plugged

    cd ~
    wget https://github.com/ihrapsa/KlipperWrt/raw/main/scripts/1_format_extroot.sh
    chmod +x 1_format_extroot.sh
    ./1_format_extroot.sh
    
  • Swap:

    opkg update && opkg install swap-utils zram-swap
    
    dd if=/dev/zero of=/overlay/swap.page bs=1M count=512;
    mkswap /overlay/swap.page;
    swapon /overlay/swap.page;
    mount -o remount,size=256M /tmp;
    
    rm /etc/rc.local;
    cat << "EOF" > /etc/rc.local
    # Put your custom commands here that should be executed once
    # the system init finished. By default this file does nothing.
    ###activate the swap file on the SD card  
    swapon /overlay/swap.page  
    ###expand /tmp space  
    mount -o remount,size=256M /tmp
    exit 0
    EOF
    

⤵️ Installing:

Expand steps!

1. Install OpenWrt dependencies:

opkg update
opkg install gcc make unzip htop wget-ssl git-http
opkg install v4l-utils mjpg-streamer-input-uvc mjpg-streamer-output-http mjpg-streamer-www

By default mjpg-streamer comes with username=openwrt and password=openwrt. If you don't want them do:

uci delete mjpg-streamer.core.username
uci delete mjpg-streamer.core.password

  • Python 3:

⚠️ It is recommended to use the python 3 approach since python 2 got deprecated since January 1st, 2020. However, if you want older versions of Octoprint, python 2 approach might be the only way.

Install python 3 packages

opkg install python3 python3-pip python3-dev python3-psutil python3-netifaces python3-pillow
pip install --upgrade setuptools
pip install --upgrade pip

2. Install Octoprint:

pip install Octoprint==1.8.1

3. Create octoprint service:

Expand
cat << "EOF" > /etc/init.d/octoprint
#!/bin/sh /etc/rc.common
# Copyright (C) 2009-2014 OpenWrt.org
# Put this inside /etc/init.d/

START=91
STOP=10
USE_PROCD=1


start_service() {
    procd_open_instance
    procd_set_param command octoprint serve --iknowwhatimdoing
    procd_set_param respawn
    procd_set_param stdout 1
    procd_set_param stderr 1
    procd_close_instance
}
EOF

4. Make it executable:

chmod +x /etc/init.d/octoprint

5. Enable the service:

service octoprint enable

6. Reboot and wait a while

reboot

▶️ Note!
Booting on the last versions takes a while (~5 minutes). Once booted however, everything works as expected. If you care that much about this you can install older versions (v1.0.0 for example) that are much lighter but are not plugin enabled. Only Temps, Control, Webcam and Gcode preview.

7. First setup

Expand steps

Access Octoprint UI on port 5000

http://box-ip:5000

When prompted use thefollowing server commands:

  • Restart OctoPrint : /etc/init.d/octoprint restart
  • Restart system : reboot
  • Shutdown system : poweroff

For webcam support:

/etc/config/mjpg-streamer is the configuration file. Modify that to change resolution, fps, user, pass etc.
Inside OctoPrint snapshot and stream fields add the following:

  • Stream URL: http://your-box-ip:8080/?action=stream
  • Snapshot URL: http://your-box-ip:8080/?action=snapshot

If webcam not showing, unplug and replug it.
If you don't want webcam authentication you can comment or delete the user and password lines inside mjpg-streamer config file. Make sure to restart it after that: /etc/init.d/mjpg-streamer restart

8. Timelapse plugin setup

  • ffmpeg packages

    Expand steps

    Before installing these ffmpeg packages delete opkg list :

    rm -rf /tmp/opkg-lists
    

    To download the packages use the following commands:

    mkdir /root/ffmpeg;
    wget https://github.com/ihrapsa/OctoWrt/raw/main/packages/ffmpeg/Packages -P /root/ffmpeg;
    wget https://github.com/ihrapsa/OctoWrt/raw/main/packages/ffmpeg/Packages.gz -P /root/ffmpeg;
    wget https://github.com/ihrapsa/OctoWrt/raw/main/packages/ffmpeg/Packages.manifest -P /root/ffmpeg;
    wget https://github.com/ihrapsa/OctoWrt/raw/main/packages/ffmpeg/Packages.sig -P /root/ffmpeg;
    wget https://github.com/ihrapsa/OctoWrt/raw/main/packages/ffmpeg/alsa-lib_1.2.4-1_mipsel_24kc.ipk -P /root/ffmpeg;
    wget https://github.com/ihrapsa/OctoWrt/raw/main/packages/ffmpeg/fdk-aac_2.0.1-4_mipsel_24kc.ipk -P /root/ffmpeg;
    wget https://github.com/ihrapsa/OctoWrt/raw/main/packages/ffmpeg/ffmpeg_4.3.2-1_mipsel_24kc.ipk -P /root/ffmpeg;
    wget https://github.com/ihrapsa/OctoWrt/raw/main/packages/ffmpeg/ffprobe_4.3.2-1_mipsel_24kc.ipk -P /root/ffmpeg;
    wget https://github.com/ihrapsa/OctoWrt/raw/main/packages/ffmpeg/libatomic1_8.4.0-3_mipsel_24kc.ipk -P /root/ffmpeg;
    wget https://github.com/ihrapsa/OctoWrt/raw/main/packages/ffmpeg/libbz21.0_1.0.8-1_mipsel_24kc.ipk -P /root/ffmpeg;
    wget https://github.com/ihrapsa/OctoWrt/raw/main/packages/ffmpeg/libffmpeg-full_4.3.2-1_mipsel_24kc.ipk -P /root/ffmpeg;
    wget https://github.com/ihrapsa/OctoWrt/raw/main/packages/ffmpeg/libgmp10_6.2.1-1_mipsel_24kc.ipk -P /root/ffmpeg;
    wget https://github.com/ihrapsa/OctoWrt/raw/main/packages/ffmpeg/libgnutls_3.7.2-1_mipsel_24kc.ipk -P /root/ffmpeg;
    wget https://github.com/ihrapsa/OctoWrt/raw/main/packages/ffmpeg/libnettle8_3.6-1_mipsel_24kc.ipk -P /root/ffmpeg;
    wget https://github.com/ihrapsa/OctoWrt/raw/main/packages/ffmpeg/libx264_2020-10-26-1_mipsel_24kc.ipk -P /root/ffmpeg;
    wget https://github.com/ihrapsa/OctoWrt/raw/main/packages/ffmpeg/shine_3.1.1-1_mipsel_24kc.ipk -P /root/ffmpeg;
    

    Files will download to /root/ffmpeg
    To install them:

    cd /root/ffmpeg
    opkg install *.ipk --force-overwrite
    
  • ffmpeg bin path

    Expand steps

    In octoprint settings set the ffmpeg binary path as:

    /usr/bin/ffmpeg
    

🔝 Credits:

Gina and co. for creating and developping OctoPrint
George a.k.a figgyc for porting OpenWrt to this device

octowrt's People

Contributors

ihrapsa avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

octowrt's Issues

PIP Install - Error relocating /usr/lib/libpython3.10.so.1.0:

Hello,
Thanks for your help.

During the installation I get stuck after dependencies installation.
just after : opkg install v4l-utils.... the wget command starts to failed (Error relocating).
I removed wget-ssl and reinstalled wget and I could go on.

But after Python3 installation, trying to install Octoprint I got those errors :

root@KlipperWrt:/# pip install Octoprint==1.7.3
Error relocating /usr/lib/libpython3.10.so.1.0: __getitimer_time64: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __setitimer_time64: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __sigtimedwait_time64: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __pthread_cond_timedwait_time64: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __dlsym_time64: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __lstat_time64: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __gettimeofday_time64: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __time64: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __stat_time64: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __wait3_time64: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __localtime64_r: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __utimensat_time64: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __futimens_time64: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __clock_gettime64: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __fstatat_time64: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __getrusage_time64: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __sem_timedwait_time64: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __clock_settime64: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __fstat_time64: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __clock_getres_time64: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __select_time64: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __mktime64: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __wait4_time64: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __gmtime64_r: symbol not found
Error relocating /usr/lib/libpython3.10.so.1.0: __sched_rr_get_interval_time64: symbol not found
root@KlipperWrt:/#

I'm lost.
I restarted the installation from scratch, but same thing.

Thank you for your help.

I can't start Octoprint

Hi, I did the automatic procedure for installing OctoWrt on my Creality Box 2.0, but without success. When the IP address: 5000 is found on the browser, the page cannot be found. However, I noticed that during the execution of the installation script on the terminal these messages appear:

  • Collected errors: * opkg_install_cmd: Cannot install package gcc.
  • warnings.warn( /usr/lib/python3.10/site-packages/pkg_resources/init.py:123: PkgResourcesDeprecationWarning: 2013-10-24 is an invalid version and will not be supported in a future release

What caused these errors I used the latest version of OpenWRT following all the steps as described but it doesn't work.
Please help me

Restore CrealityBox V2.0

Hi, is there a way to reset the Creality Box V2.0 and start the procedure from scratch? Thank you

error when installing octoprint on creality wifibox

Hello,
I follow all the steps mentioned in this tutorial, and receive an error while installing
pip install Octoprint==1.6.1
errorcode:
ERROR: Command errored out with exit status 1: /usr/bin/python3 -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-lioir7bb/regex_8a13daca66ce4925aeb61af2b6081113/setup.py'"'"'; file='"'"'/tmp/pip-install-lioir7bb/regex_8a13daca66ce4925aeb61af2b6081113/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(file) if os.path.exists(file) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record /tmp/pip-record-go5593gk/install-record.txt --single-version-externally-managed --compile --install-headers /usr/include/python3.9/regex Check the logs for full command output.

how can i solve this, all ideas are welcome.
i 'm a beginner with linux...

thanks in advance
Johan

Manual install fails

When I run opkg update && opkg install swap-utils zram-swap I get this as output:

Downloading https://downloads.openwrt.org/snapshots/targets/ramips/mt76x8/packages/Packages.gz
Updated list of available packages in /var/opkg-lists/openwrt_core
Downloading https://downloads.openwrt.org/snapshots/targets/ramips/mt76x8/packages/Packages.sig
Signature check passed.
Downloading https://downloads.openwrt.org/snapshots/packages/mipsel_24kc/base/Packages.gz
Updated list of available packages in /var/opkg-lists/openwrt_base
Downloading https://downloads.openwrt.org/snapshots/packages/mipsel_24kc/base/Packages.sig
Signature check passed.
Downloading https://downloads.openwrt.org/snapshots/packages/mipsel_24kc/luci/Packages.gz
Updated list of available packages in /var/opkg-lists/openwrt_luci
Downloading https://downloads.openwrt.org/snapshots/packages/mipsel_24kc/luci/Packages.sig
Signature check passed.
Downloading https://downloads.openwrt.org/snapshots/packages/mipsel_24kc/packages/Packages.gz
Updated list of available packages in /var/opkg-lists/openwrt_packages
Downloading https://downloads.openwrt.org/snapshots/packages/mipsel_24kc/packages/Packages.sig
Signature check passed.
Downloading https://downloads.openwrt.org/snapshots/packages/mipsel_24kc/routing/Packages.gz
Updated list of available packages in /var/opkg-lists/openwrt_routing
Downloading https://downloads.openwrt.org/snapshots/packages/mipsel_24kc/routing/Packages.sig
Signature check passed.
Downloading https://downloads.openwrt.org/snapshots/packages/mipsel_24kc/telephony/Packages.gz
Updated list of available packages in /var/opkg-lists/openwrt_telephony
Downloading https://downloads.openwrt.org/snapshots/packages/mipsel_24kc/telephony/Packages.sig
Signature check passed.
Package swap-utils (2.38-2) installed in root is up to date.
Installing zram-swap (32) to root...
Downloading https://downloads.openwrt.org/snapshots/packages/mipsel_24kc/base/zram-swap_32_all.ipk
Configuring zram-swap.
zram_start: activating '/dev/zram0' for swapping (59 MiB)
zram_reset: enforcing defaults via /sys/block/zram0/reset
zram_comp_algo: set compression algorithm 'lzo' for zram '/dev/zram0'
Setting up swapspace version 1, size = 61861888 bytes
Collected errors:
 * pkg_hash_check_unresolved: cannot find dependency kernel (= 5.10.159-1-7d75de85a1f4cde1b2401b5c815e0218) for kmod-zram

problem with camera

I can not use my camera, I do not know why but it does not work I also tried to enter the "link" obviously changing the ip address and everything but it continues not to work, but I am sure that the card detects the camera since I am confirmed by the plug in ... What can I d

Internal server error

Logging on the port :5000 of my box octoprint doesn't start and sends me this error:
Internal Server Error

The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there is an error in the application.
reading the log file I noticed twice red lined errors but idk what they means even googling it I've found nothing.
pls respond me its since four month I'm trying to make this work but I found alooot of problems and I've never been so close
if this can be useful to you
log.txt

OctoPrint won't start

Hi, I'm reporting this issue after two days of trying to make this work.
I have tried to format and reinstall OpenWrt multiple times but after running the second script and rebooting it gets stuck with the same error every time.
This is the logread so maybe someone can figure out what's going on.

Tue Dec 27 12:32:01 2022 daemon.err octoprint[3049]: Could not initialize settings manager: (urllib3 2.0.0a2 (/usr/lib/python3.10/site-packages/urllib3-2.0.0a2-py3.10.egg), Requirement.parse('urllib3<1.27,>=1.21.1'), {'requests'})

Tue Dec 27 12:32:01 2022 daemon.err octoprint[3049]: There was a fatal error starting up OctoPrint.

Tue Dec 27 12:32:03 2022 daemon.info procd: Instance octoprint::instance1 s in a crash loop 6 crashes, 40 seconds since last crash

Unable to install, error during pip install Octoprint==1.6.1 step

Building wheel for regex (setup.py) ... error
ERROR: Failed building wheel for regex
Running setup.py clean for regex
Successfully built blinker emoji future pylru PyYAML
Failed to build regex
Installing collected packages: regex, PyYAML, pylru, pkginfo, OctoPrint-PiSupport, OctoPrint-FirmwareCheck, OctoPrint-FileCheck, netaddr, markdown, immutabledict, future, Flask-Login, Flask-Babel, Flask-Assets, filetype, feedparser, emoji, cachelib, blinker, Octoprint
Running setup.py install for regex ... error
ERROR: Command errored out with exit status 1: /usr/bin/python3 -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-1swi3pu8/regex_6192760ef2914e4b97253488e9beffd6/setup.py'"'"'; file='"'"'/tmp/pip-install-1swi3pu8/regex_6192760ef2914e4b97253488e9beffd6/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(file) if os.path.exists(file) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record /tmp/pip-record-r8jlb22q/install-record.txt --single-version-externally-managed --compile --install-headers /usr/include/python3.9/regex Check the logs for full command output.

Arc Welder - error: subprocess-exited-with-error

I have tried various versions of the plugin from pip manually at the cmd line, and within octoprint. All fail to install with no error other than the above.

It is after the setup.py legacy starts, or, after building wheels (if wheel is installed). There is nothing in the logs or terminal to indicate which sub process.

Its probably related to compiling on the architecture as best guess.

Can provide a full copy and paste of the pip output if needed.

How can we add RTSP conversion to MPEG on Octowrt/Klipper ?

There are a lot of camera's using only RTSP instead of HTTP . There is a videostreamer available on klipper to convert RTSP to MPEG en JPG through a local url

This can help connect these RTSP cameras to octoprint.
Can you have a look at the videostreamer at Github an advice if it can be used safely on the creality box environment (Octowrt)
Please look at this script in this post: https://gist.github.com/bakman2/521fd7333b4fad6602b9f9955c4fbc2c

incredibly slow octoprint

hi, I followed and installed octowrt and octoprint through the guide, everything perfect except for the speed of it, to start it must also take 5 minutes to start heating everything, to load a file it must take a long time as well as to do any operation, I'm on a local connection, How can the performance of it be improved?

Problem with a Webcam

Hello, i have a problem. i don't see how i can configurate the webcam. I can't find any description on how to make it or how to set it up, because I was planning to make timelapses using the octolapse plugin.

Failed to connect serialport

Unexpected error while connecting to serial port /dev/ttyUSB0, baudrate 250000 from hook default: ValueError: 'Failed to set custom baud rate (250000): [Errno 25] Not a tty' @ comm.py:_open_serial:3695

Octoprint unusable slow

Hi,

dont know if its normal or the bounds of the hardware, but my octoprint needs nearly 10 minutes start. Is it only me, or normal on this box?

Octowrt itself is accessible after around 30 sec, which is fine.

2022-03-09 16:58:07,373 - octoprint.startup - INFO - ****************************************************************************** 2022-03-09 16:58:07,420 - octoprint.startup - INFO - Starting OctoPrint 1.7.3 2022-03-09 16:58:07,455 - octoprint.startup - INFO - ****************************************************************************** 2022-03-09 16:58:22,581 - octoprint.util.connectivity.connectivity_checker - INFO - Connectivity changed from offline to online 2022-03-09 16:58:22,683 - octoprint.util.connectivity.connectivity_checker - INFO - Connectivity state is currently: online 2022-03-09 16:58:22,700 - octoprint.util.connectivity.connectivity_checker - INFO - Connecting to 1.1.1.1:53 is working 2022-03-09 16:58:22,712 - octoprint.util.connectivity.connectivity_checker - INFO - Resolving octoprint.org is working 2022-03-09 16:58:25,021 - octoprint.startup - INFO - Blacklist processing done, adding 3 blacklisted plugin versions: roomtemp (any), GcodeEditor (>=0.1.1,<=0.2.8), gcodeleveling (>=0.1.0,<=0.1.1) 2022-03-09 16:59:01,616 - octoprint.plugin.core - INFO - Loading plugins from /usr/lib/python3.9/site-packages/octoprint/plugins, /.octoprint/plugins and installed plugin packages... 2022-03-09 16:59:40,073 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin (2022.3.1) did not pass check, not loading. 2022-03-09 16:59:46,376 - octoprint.plugin.core - INFO - Found 17 plugin(s) providing 17 mixin implementations, 34 hook handlers 2022-03-09 16:59:50,931 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval 2022-03-09 16:59:51,208 - octoprint.server - INFO - Intermediary server started 2022-03-09 16:59:52,297 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /.octoprint/uploads... 2022-03-09 16:59:52,329 - octoprint.filemanager.storage - INFO - ... file metadata for /.octoprint/uploads initialized successfully. 2022-03-09 16:59:52,440 - octoprint.server - INFO - Added new permission from plugin action_command_notification: PLUGIN_ACTION_COMMAND_NOTIFICATION_SHOW (needs: "Need(method='role', value='plugin_action_command_notification_show')") 2022-03-09 16:59:52,465 - octoprint.server - INFO - Added new permission from plugin action_command_notification: PLUGIN_ACTION_COMMAND_NOTIFICATION_CLEAR (needs: "Need(method='role', value='plugin_action_command_notification_clear')") 2022-03-09 16:59:52,482 - octoprint.server - INFO - Added new permission from plugin action_command_prompt: PLUGIN_ACTION_COMMAND_PROMPT_INTERACT (needs: "Need(method='role', value='plugin_action_command_prompt_interact')") 2022-03-09 16:59:52,521 - octoprint.server - INFO - Added new permission from plugin announcements: PLUGIN_ANNOUNCEMENTS_READ (needs: "Need(method='role', value='plugin_announcements_read')") 2022-03-09 16:59:52,544 - octoprint.server - INFO - Added new permission from plugin announcements: PLUGIN_ANNOUNCEMENTS_MANAGE (needs: "Need(method='role', value='plugin_announcements_read'), Need(method='role', value='plugin_announcements_manage')") 2022-03-09 16:59:52,571 - octoprint.server - INFO - Added new permission from plugin appkeys: PLUGIN_APPKEYS_ADMIN (needs: "Need(method='role', value='plugin_appkeys_admin')") 2022-03-09 16:59:52,596 - octoprint.server - INFO - Added new permission from plugin backup: PLUGIN_BACKUP_ACCESS (needs: "Need(method='role', value='plugin_backup_access')") 2022-03-09 16:59:52,622 - octoprint.server - INFO - Added new permission from plugin firmware_check: PLUGIN_FIRMWARE_CHECK_DISPLAY (needs: "Need(method='role', value='plugin_firmware_check_display')") 2022-03-09 16:59:52,647 - octoprint.server - INFO - Added new permission from plugin logging: PLUGIN_LOGGING_MANAGE (needs: "Need(method='role', value='plugin_logging_manage')") 2022-03-09 16:59:52,674 - octoprint.server - INFO - Added new permission from plugin pluginmanager: PLUGIN_PLUGINMANAGER_MANAGE (needs: "Need(method='role', value='plugin_pluginmanager_manage')") 2022-03-09 16:59:52,709 - octoprint.server - INFO - Added new permission from plugin pluginmanager: PLUGIN_PLUGINMANAGER_INSTALL (needs: "Need(method='role', value='plugin_pluginmanager_install'), Need(method='role', value='plugin_pluginmanager_manage')") 2022-03-09 16:59:52,735 - octoprint.server - INFO - Added new permission from plugin softwareupdate: PLUGIN_SOFTWAREUPDATE_CHECK (needs: "Need(method='role', value='plugin_softwareupdate_check')") 2022-03-09 16:59:52,759 - octoprint.server - INFO - Added new permission from plugin softwareupdate: PLUGIN_SOFTWAREUPDATE_UPDATE (needs: "Need(method='role', value='plugin_softwareupdate_update')") 2022-03-09 16:59:52,789 - octoprint.server - INFO - Added new permission from plugin softwareupdate: PLUGIN_SOFTWAREUPDATE_CONFIGURE (needs: "Need(method='role', value='plugin_softwareupdate_configure')") 2022-03-09 17:00:32,838 - octoprint.util.pip - INFO - Using "/usr/bin/python3 -m pip" as command to invoke pip 2022-03-09 17:01:13,408 - octoprint.util.pip - INFO - Version of pip is 21.2.4 2022-03-09 17:01:13,444 - octoprint.util.pip - INFO - pip installs to /usr/lib/python3.9/site-packages (writable -> yes), --user flag needed -> no, virtual env -> no 2022-03-09 17:01:13,459 - octoprint.util.pip - INFO - ==> pip ok -> yes 2022-03-09 17:01:16,620 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2022-03-09 17:01:20,050 - octoprint.plugin.core - INFO - Initialized 17 plugin implementation(s) 2022-03-09 17:01:20,400 - octoprint.plugin.core - INFO - 17 plugin(s) registered with the system: | Action Command Notification Support (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/action_command_notification | Action Command Prompt Support (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/action_command_prompt | Announcement Plugin (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/announcements | Anonymous Usage Tracking (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/tracking | Application Keys Plugin (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/appkeys | Backup & Restore (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/backup | Core Wizard (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/corewizard | Discovery (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/discovery | Error Tracking (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/errortracking | Event Manager (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/eventmanager | File Check (2021.2.23) (bundled) = /usr/lib/python3.9/site-packages/octoprint_file_check | Firmware Check (2021.10.11) (bundled) = /usr/lib/python3.9/site-packages/octoprint_firmware_check | GCode Viewer (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/gcodeviewer | Logging (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/logging | Plugin Manager (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/virtual_printer Prefix legend: ! = disabled, # = blacklisted, * = incompatible 2022-03-09 17:01:20,723 - octoprint.environment - INFO - Detected environment is Python 3.9.10 under Linux (linux). Details: | hardware: | cores: 1 | freq: unknown | ram: 126427136 | os: | bits: 32 | id: linux | platform: linux | python: | pip: 21.2.4 | version: 3.9.10 2022-03-09 17:01:20,964 - octoprint.server - INFO - Reset webasset folder /.octoprint/generated/webassets... 2022-03-09 17:01:21,422 - octoprint.server - INFO - Reset webasset folder /.octoprint/generated/.webassets-cache... 2022-03-09 17:01:51,501 - octoprint.server - INFO - Shutting down intermediary server... 2022-03-09 17:01:51,713 - octoprint.server - INFO - Intermediary server shut down 2022-03-09 17:01:51,759 - octoprint.events - INFO - Processing startup event, this is our first event 2022-03-09 17:01:51,777 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2022-03-09 17:01:51,821 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2022-03-09 17:01:51,868 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2022-03-09 17:01:52,012 - octoprint.plugins.softwareupdate - INFO - Fetching check overlays from https://plugins.octoprint.org/update_check_overlay.json 2022-03-09 17:01:52,066 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder... 2022-03-09 17:01:52,725 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2022-03-09 17:01:52,747 - octoprint.server.util.watchdog - INFO - ... initial scan done. 2022-03-09 17:01:55,625 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on OctoWrt._http._tcp.local.' for _http._tcp.local. 2022-03-09 17:01:57,702 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on OctoWrt._octoprint._tcp.local.' for _octoprint._tcp.local. 2022-03-09 17:01:57,801 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on OctoWrt for SSDP 2022-03-09 17:01:57,982 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 and http://[::]:5000 2022-03-09 17:01:59,474 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2022-03-09 17:02:00,881 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 3.3s 2022-03-09 17:02:02,702 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 4.4s 2022-03-09 17:02:46,043 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 3.7s 2022-03-09 17:02:46,304 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 3.6s 2022-03-09 17:03:26,952 - octoprint.util.pip - INFO - Using "/usr/bin/python3 -m pip" as command to invoke pip 2022-03-09 17:03:27,012 - octoprint.util.pip - INFO - pip installs to /usr/lib/python3.9/site-packages (writable -> yes), --user flag needed -> no, virtual env -> no 2022-03-09 17:03:27,020 - octoprint.util.pip - INFO - ==> pip ok -> yes 2022-03-09 17:03:27,613 - octoprint.plugins.softwareupdate - INFO - Minimum free storage across all update relevant locations is 255.8MB. That is considered sufficient for updating. 2022-03-09 17:03:30,528 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 3.4s 2022-03-09 17:03:31,076 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 2.6s 2022-03-09 17:03:48,295 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'base_url': 'http://192.168.33.156:5000/', 'path': '/', 'query_string': 'l10n=de'} 2022-03-09 17:04:12,689 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 2.8s 2022-03-09 17:04:12,805 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 3.1s 2022-03-09 17:04:52,756 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 2.9s 2022-03-09 17:04:53,054 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 3.2s 2022-03-09 17:06:12,044 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2022-03-09 17:06:13,731 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2022-03-09 17:07:49,523 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.33.128 2022-03-09 17:07:49,554 - octoprint.access.users - INFO - Logged in user: admin

Octoprint crash loop

Hi
After setting wifi and running the first and second script without issue
rebooted a box and nothing happens
logged in open wrt and in the log the is an arror:
daemon.info procd: Instance octoprint::instance1 s in a crash loop 6 crashes, 0 seconds since last crash

i tried reformatting the microsd and redoing the scripts many time but nothing,
I tried to restore a creality box with stock firmware and after that i reflashed openwrt firmware also without any luck

Suggestion?

here is the complete log:

https://pastebin.com/dbHwuVTE

how many time to see octoprint started ?

After 30 minutes octoprint im unable to access to octoprint via web. OpenWRT was ok after only 2/3 minutes, but octoprint not ... whats happen ? below the system log:

Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 0.000000] Linux version 5.4.171 (runner@fv-az41-617) (gcc version 8.4.0 (OpenWrt GCC 8.4.0 r16490-781b5d8f30)) #0 Sun Feb 13 17:28:05 2022
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] Board has DDR2
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] Analog PMU set to hw control
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] Digital PMU set to hw control
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] SoC Type: MediaTek MT7688 ver:1 eco:2
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] printk: bootconsole [early0] enabled
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] CPU0 revision is: 00019655 (MIPS 24KEc)
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] MIPS: machine is Creality WB-01
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] Initrd not found or empty - disabling initrd
Wed Mar 16 17:28:02 2022 kern.warn kernel: [ 0.000000] Primary instruction cache 64kB, VIPT, 4-way, linesize 32 bytes.
Wed Mar 16 17:28:02 2022 kern.warn kernel: [ 0.000000] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] Zone ranges:
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] Normal [mem 0x0000000000000000-0x0000000007ffffff]
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] Movable zone start for each node
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] Early memory node ranges
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000007ffffff]
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000007ffffff]
Wed Mar 16 17:28:02 2022 kern.debug kernel: [ 0.000000] On node 0 totalpages: 32768
Wed Mar 16 17:28:02 2022 kern.debug kernel: [ 0.000000] Normal zone: 288 pages used for memmap
Wed Mar 16 17:28:02 2022 kern.debug kernel: [ 0.000000] Normal zone: 0 pages reserved
Wed Mar 16 17:28:02 2022 kern.debug kernel: [ 0.000000] Normal zone: 32768 pages, LIFO batch:7
Wed Mar 16 17:28:02 2022 kern.debug kernel: [ 0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=132768
Wed Mar 16 17:28:02 2022 kern.debug kernel: [ 0.000000] pcpu-alloc: [0] 0
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 32480
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 0.000000] Kernel command line: console=ttyS0,57600 rootfstype=squashfs,jffs2
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes, linear)
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes, linear)
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] Writing ErrCtl register=0005f6e9
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] Readback ErrCtl register=0005f6e9
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] Memory: 122236K/131072K available (4797K kernel code, 201K rwdata, 1060K rodata, 1228K init, 197K bss, 8836K reserved, 0K cma-reserved)
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] NR_IRQS: 256
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] intc: using register map from devicetree
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 0.000000] random: get_random_bytes called from start_kernel+0x358/0x54c with crng_init=0
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] CPU Clock: 580MHz
Wed Mar 16 17:28:02 2022 kern.crit kernel: [ 0.000000] timer_probe: no matching timers found
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000000] clocksource: MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6590553264 ns
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.000010] sched_clock: 32 bits at 290MHz, resolution 3ns, wraps every 7405115902ns
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.015391] Calibrating delay loop... 385.02 BogoMIPS (lpj=770048)
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.059463] pid_max: default: 32768 minimum: 301
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.068801] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.083141] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.104870] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.124071] futex hash table entries: 256 (order: -1, 3072 bytes, linear)
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.137581] pinctrl core: initialized pinctrl subsystem
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.148973] NET: Registered protocol family 16
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.194713] clocksource: Switched to clocksource MIPS
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.206074] NET: Registered protocol family 2
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.214849] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear)
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.229791] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes, linear)
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.246271] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear)
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.261343] TCP bind hash table entries: 1024 (order: 0, 4096 bytes, linear)
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.275269] TCP: Hash tables configured (established 1024 bind 1024)
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.287974] UDP hash table entries: 256 (order: 0, 4096 bytes, linear)
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.300832] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes, linear)
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.314903] NET: Registered protocol family 1
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.323444] PCI: CLS 0 bytes, default 32
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.335871] workingset: timestamp_bits=14 max_order=15 bucket_order=1
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.357170] squashfs: version 4.0 (2009/01/31) Phillip Lougher
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.368630] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc.
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.406602] mt7621_gpio 10000600.gpio: registering 32 gpios
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.417895] mt7621_gpio 10000600.gpio: registering 32 gpios
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.429122] mt7621_gpio 10000600.gpio: registering 32 gpios
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.440366] Serial: 8250/16550 driver, 3 ports, IRQ sharing disabled
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.454114] printk: console [ttyS0] disabled
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.462558] 10000c00.uartlite: ttyS0 at MMIO 0x10000c00 (irq = 28, base_baud = 2500000) is a 16550A
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.480359] printk: console [ttyS0] enabled
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.496844] printk: bootconsole [early0] disabled
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.516766] spi-mt7621 10000b00.spi: sys_freq: 193333333
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.536384] spi-nor spi0.0: by25q128as (16384 Kbytes)
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 0.546474] 4 fixed-partitions partitions found on MTD device spi0.0
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 0.559062] Creating 4 MTD partitions on "spi0.0":
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 0.568564] 0x000000000000-0x000000030000 : "u-boot"
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 0.579531] 0x000000030000-0x000000040000 : "u-boot-env"
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 0.591199] 0x000000040000-0x000000050000 : "factory"
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 0.602305] 0x000000050000-0x000001000000 : "firmware"
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 0.617099] 2 uimage-fw partitions found on MTD device firmware
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 0.628900] Creating 2 MTD partitions on "firmware":
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 0.638752] 0x000000000000-0x0000001ed683 : "kernel"
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 0.649662] 0x0000001ed683-0x000000fb0000 : "rootfs"
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 0.660517] mtd: device 5 (rootfs) set to be root filesystem
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 0.673530] 1 squashfs-split partitions found on MTD device rootfs
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 0.685860] 0x000000860000-0x000000fb0000 : "rootfs_data"
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.698422] libphy: Fixed MDIO Bus: probed
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.718134] rt3050-esw 10110000.esw: link changed 0x00
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.730389] mtk_soc_eth 10100000.ethernet eth0: mediatek frame engine at 0xb0100000, irq 5
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.748773] NET: Registered protocol family 10
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.761907] Segment Routing with IPv6
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.769390] NET: Registered protocol family 17
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.778272] 8021q: 802.1Q VLAN Support v1.8
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.793595] VFS: Mounted root (squashfs filesystem) readonly on device 31:5.
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.814663] Freeing unused kernel memory: 1228K
Wed Mar 16 17:28:02 2022 kern.warn kernel: [ 0.823661] This architecture does not have kernel memory protection.
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 0.836418] Run /sbin/init as init process
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 1.458723] random: fast init done
Wed Mar 16 17:28:02 2022 user.info kernel: [ 1.616750] init: Console is alive
Wed Mar 16 17:28:02 2022 user.info kernel: [ 1.623911] init: - watchdog -
Wed Mar 16 17:28:02 2022 user.info kernel: [ 3.755020] kmodloader: loading kernel modules from /etc/modules-boot.d/

Wed Mar 16 17:28:02 2022 kern.info kernel: [ 3.939929] usbcore: registered new interface driver usbfs
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 3.950963] usbcore: registered new interface driver hub
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 3.961630] usbcore: registered new device driver usb
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 4.011270] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 4.033482] SCSI subsystem initialized
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 4.047359] ehci-fsl: Freescale EHCI Host controller driver
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 4.060290] ehci-platform: EHCI generic platform driver
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 4.081031] phy phy-10120000.usbphy.0: remote usb device wakeup disabled
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 4.094321] phy phy-10120000.usbphy.0: UTMI 16bit 30MHz
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 4.104676] ehci-platform 101c0000.ehci: EHCI Host Controller
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 4.116095] ehci-platform 101c0000.ehci: new USB bus registered, assigned bus number 1
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 4.131936] ehci-platform 101c0000.ehci: irq 26, io mem 0x101c0000
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 4.158731] ehci-platform 101c0000.ehci: USB 2.0 started, EHCI 1.00
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 4.172227] hub 1-0:1.0: USB hub found
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 4.180196] hub 1-0:1.0: 1 port detected
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 4.193995] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 4.208198] ohci-platform: OHCI generic platform driver
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 4.218932] ohci-platform 101c1000.ohci: Generic Platform OHCI controller
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 4.232445] ohci-platform 101c1000.ohci: new USB bus registered, assigned bus number 2
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 4.248257] ohci-platform 101c1000.ohci: irq 26, io mem 0x101c1000
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 4.323781] hub 2-0:1.0: USB hub found
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 4.331750] hub 2-0:1.0: 1 port detected
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 4.343624] uhci_hcd: USB Universal Host Controller Interface driver
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 4.399922] usbcore: registered new interface driver usb-storage
Wed Mar 16 17:28:02 2022 user.info kernel: [ 4.416821] kmodloader: done loading kernel modules from /etc/modules-boot.d/*
Wed Mar 16 17:28:02 2022 user.info kernel: [ 4.441766] init: - preinit -
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 4.490815] usb 1-1: new high-speed USB device number 2 using ehci-platform
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 4.866955] mmc0: new high speed SDHC card at address 0001
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 4.881923] random: procd: uninitialized urandom read (4 bytes read)
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 5.006770] mmcblk0: mmc0:0001 SD16G 7.48 GiB
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 5.088498] mmcblk0: p1
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 5.097698] hub 1-1:1.0: USB hub found
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 5.114794] hub 1-1:1.0: 4 ports detected
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 5.736418] random: jshn: uninitialized urandom read (4 bytes read)
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 5.837237] random: jshn: uninitialized urandom read (4 bytes read)
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 6.002635] random: jshn: uninitialized urandom read (4 bytes read)
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 6.064784] random: jshn: uninitialized urandom read (4 bytes read)
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 6.131494] random: jshn: uninitialized urandom read (4 bytes read)
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 6.506701] rt3050-esw 10110000.esw: link changed 0x00
Wed Mar 16 17:28:02 2022 user.info kernel: [ 10.835576] mount_root: loading kmods from internal overlay
Wed Mar 16 17:28:02 2022 user.info kernel: [ 10.893889] kmodloader: loading kernel modules from //etc/modules-boot.d/*
Wed Mar 16 17:28:02 2022 user.info kernel: [ 10.909188] kmodloader: done loading kernel modules from //etc/modules-boot.d/*
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 11.579424] jffs2: notice: (492) jffs2_build_xattr_subsystem: complete building xattr subsystem, 19 of xdatum (9 unchecked, 5 orphan) and 24 of xref (5 dead, 0 orphan) found.
Wed Mar 16 17:28:02 2022 user.info kernel: [ 11.611007] block: attempting to load /tmp/jffs_cfg/upper/etc/config/fstab
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 12.256273] EXT4-fs (mmcblk0p1): recovery complete
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 12.270804] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts:
Wed Mar 16 17:28:02 2022 user.notice kernel: [ 12.309088] mount_root: switched to extroot
Wed Mar 16 17:28:02 2022 user.warn kernel: [ 12.324466] urandom-seed: Seeding with /etc/urandom.seed
Wed Mar 16 17:28:02 2022 user.info kernel: [ 12.458122] procd: - early -
Wed Mar 16 17:28:02 2022 user.info kernel: [ 12.464044] procd: - watchdog -
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 13.101850] random: jshn: uninitialized urandom read (4 bytes read)
Wed Mar 16 17:28:02 2022 user.info kernel: [ 13.198199] procd: - watchdog -
Wed Mar 16 17:28:02 2022 user.info kernel: [ 13.213748] procd: - ubus -
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 13.454990] random: ubusd: uninitialized urandom read (4 bytes read)
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 13.481546] random: ubusd: uninitialized urandom read (4 bytes read)
Wed Mar 16 17:28:02 2022 user.info kernel: [ 13.518111] procd: - init -
Wed Mar 16 17:28:02 2022 user.info kernel: [ 15.392542] kmodloader: loading kernel modules from /etc/modules.d/*
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 15.469482] zram: Added device: zram0
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 15.602463] tun: Universal TUN/TAP device driver, 1.6
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 15.726772] videodev: Linux video capture interface: v2.00
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 15.789094] usbcore: registered new interface driver cdc_acm
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 15.800365] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 15.876267] Loading modules backported from Linux version v5.10.85-0-ge4f2aee6612e
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 15.891343] Backport generated by backports.git v5.10.85-1-0-gf988973f
Wed Mar 16 17:28:02 2022 user.info kernel: [ 15.996925] urngd: v1.0.2 started.
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 16.057963] usbcore: registered new interface driver usbserial_generic
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 16.071083] usbserial: USB Serial support registered for generic
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 16.199689] xt_time: kernel timezone is -0000
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 16.418288] usbcore: registered new interface driver ch341
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 16.429354] usbserial: USB Serial support registered for ch341-uart
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 16.496303] usbcore: registered new interface driver cp210x
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 16.507530] usbserial: USB Serial support registered for cp210x
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 16.573463] usbcore: registered new interface driver ftdi_sio
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 16.585025] usbserial: USB Serial support registered for FTDI USB Serial Device
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 16.642731] gspca_main: v2.14.0 registered
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 16.661940] usbcore: registered new interface driver gspca_zc3xx
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 16.688789] random: crng init done
Wed Mar 16 17:28:02 2022 kern.notice kernel: [ 16.695584] random: 1 urandom warning(s) missed due to ratelimiting
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 17.170529] mt76_wmac 10300000.wmac: ASIC revision: 76280001
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 18.217261] mt76_wmac 10300000.wmac: Firmware Version: 20151201
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 18.229072] mt76_wmac 10300000.wmac: Build Time: 20151201183641
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 18.258723] mt76_wmac 10300000.wmac: firmware init done
Wed Mar 16 17:28:02 2022 kern.debug kernel: [ 18.443869] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 18.504762] usbcore: registered new interface driver pl2303
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 18.515982] usbserial: USB Serial support registered for pl2303
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 18.562788] PPP generic driver version 2.4.2
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 18.582871] NET: Registered protocol family 24
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 18.668092] usbcore: registered new interface driver uvcvideo
Wed Mar 16 17:28:02 2022 kern.info kernel: [ 18.679547] USB Video Class driver (1.1.1)
Wed Mar 16 17:28:02 2022 user.info kernel: [ 18.875835] kmodloader: done loading kernel modules from /etc/modules.d/*
Wed Mar 16 17:28:03 2022 daemon.debug zram_start: activating '/dev/zram0' for swapping (60 MegaBytes)
Wed Mar 16 17:28:03 2022 daemon.notice procd: /etc/rc.d/S15zram: zram_start: activating '/dev/zram0' for swapping (60 MegaBytes)
Wed Mar 16 17:28:03 2022 daemon.debug zram_reset: enforcing defaults via /sys/block/zram0/reset
Wed Mar 16 17:28:03 2022 daemon.notice procd: /etc/rc.d/S15zram: zram_reset: enforcing defaults via /sys/block/zram0/reset
Wed Mar 16 17:28:03 2022 daemon.debug zram_comp_algo: Set compression algorithm 'lzo' for zram '/dev/zram0'
Wed Mar 16 17:28:03 2022 daemon.notice procd: /etc/rc.d/S15zram: zram_comp_algo: Set compression algorithm 'lzo' for zram '/dev/zram0'
Wed Mar 16 17:28:03 2022 kern.info kernel: [ 21.398536] zram0: detected capacity change from 0 to 62914560
Wed Mar 16 17:28:03 2022 daemon.notice procd: /etc/rc.d/S15zram: Setting up swapspace version 1, size = 62910464 bytes
Wed Mar 16 17:28:03 2022 kern.info kernel: [ 21.484361] Adding 61436k swap on /dev/zram0. Priority:-2 extents:1 across:61436k SSDsc
Wed Mar 16 17:28:04 2022 user.notice dnsmasq: DNS rebinding protection is active, will discard upstream RFC1918 responses!
Wed Mar 16 17:28:04 2022 user.notice dnsmasq: Allowing 127.0.0.0/8 responses
Wed Mar 16 17:28:05 2022 daemon.info dnsmasq[1311]: Connected to system UBus
Wed Mar 16 17:28:05 2022 daemon.info dnsmasq[1311]: started, version 2.85 cachesize 150
Wed Mar 16 17:28:05 2022 daemon.info dnsmasq[1311]: DNS service limited to local subnets
Wed Mar 16 17:28:05 2022 daemon.info dnsmasq[1311]: compile time options: IPv6 GNU-getopt no-DBus UBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile
Wed Mar 16 17:28:05 2022 daemon.info dnsmasq[1311]: UBus support enabled: connected to system bus
Wed Mar 16 17:28:05 2022 daemon.info dnsmasq[1311]: using only locally-known addresses for domain test
Wed Mar 16 17:28:05 2022 daemon.info dnsmasq[1311]: using only locally-known addresses for domain onion
Wed Mar 16 17:28:05 2022 daemon.info dnsmasq[1311]: using only locally-known addresses for domain localhost
Wed Mar 16 17:28:05 2022 daemon.info dnsmasq[1311]: using only locally-known addresses for domain local
Wed Mar 16 17:28:05 2022 daemon.info dnsmasq[1311]: using only locally-known addresses for domain invalid
Wed Mar 16 17:28:05 2022 daemon.info dnsmasq[1311]: using only locally-known addresses for domain bind
Wed Mar 16 17:28:05 2022 daemon.info dnsmasq[1311]: using only locally-known addresses for domain lan
Wed Mar 16 17:28:05 2022 daemon.warn dnsmasq[1311]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Wed Mar 16 17:28:05 2022 daemon.info dnsmasq[1311]: read /etc/hosts - 4 addresses
Wed Mar 16 17:28:05 2022 daemon.info dnsmasq[1311]: read /tmp/hosts/dhcp.cfg01411c - 0 addresses
Wed Mar 16 17:28:05 2022 authpriv.info dropbear[1373]: Not backgrounding
Wed Mar 16 17:28:08 2022 daemon.notice wpa_supplicant[1472]: Successfully initialized wpa_supplicant
Wed Mar 16 17:28:08 2022 user.notice : Added device handler type: bonding
Wed Mar 16 17:28:08 2022 user.notice : Added device handler type: 8021ad
Wed Mar 16 17:28:08 2022 user.notice : Added device handler type: 8021q
Wed Mar 16 17:28:08 2022 user.notice : Added device handler type: macvlan
Wed Mar 16 17:28:08 2022 user.notice : Added device handler type: veth
Wed Mar 16 17:28:08 2022 user.notice : Added device handler type: bridge
Wed Mar 16 17:28:08 2022 user.notice : Added device handler type: Network device
Wed Mar 16 17:28:08 2022 user.notice : Added device handler type: tunnel
Wed Mar 16 17:28:10 2022 kern.notice kernel: [ 28.631588] jffs2: notice: (1623) jffs2_build_xattr_subsystem: complete building xattr subsystem, 19 of xdatum (9 unchecked, 5 orphan) and 24 of xref (5 dead, 0 orphan) found.
Wed Mar 16 17:28:11 2022 daemon.notice procd: /etc/rc.d/S50uhttpd: 4+0 records in
Wed Mar 16 17:28:11 2022 daemon.notice procd: /etc/rc.d/S50uhttpd: 4+0 records out
Wed Mar 16 17:28:12 2022 user.notice ucitrack: Setting up /etc/config/network reload dependency on /etc/config/dhcp
Wed Mar 16 17:28:12 2022 user.notice ucitrack: Setting up /etc/config/wireless reload dependency on /etc/config/network
Wed Mar 16 17:28:12 2022 user.notice ucitrack: Setting up /etc/config/firewall reload dependency on /etc/config/luci-splash
Wed Mar 16 17:28:12 2022 user.notice ucitrack: Setting up /etc/config/firewall reload dependency on /etc/config/qos
Wed Mar 16 17:28:12 2022 user.notice ucitrack: Setting up /etc/config/firewall reload dependency on /etc/config/miniupnpd
Wed Mar 16 17:28:13 2022 user.notice ucitrack: Setting up /etc/config/dhcp reload dependency on /etc/config/odhcpd
Wed Mar 16 17:28:13 2022 user.notice ucitrack: Setting up non-init /etc/config/fstab reload handler: /sbin/block mount
Wed Mar 16 17:28:14 2022 user.notice ucitrack: Setting up /etc/config/system reload trigger for non-procd /etc/init.d/led
Wed Mar 16 17:28:14 2022 user.notice ucitrack: Setting up /etc/config/system reload dependency on /etc/config/luci_statistics
Wed Mar 16 17:28:14 2022 user.notice ucitrack: Setting up /etc/config/system reload dependency on /etc/config/dhcp
Wed Mar 16 17:28:15 2022 daemon.notice procd: /etc/rc.d/S90mjpg-streamer: /etc/rc.d/S90mjpg-streamer: device '/dev/video0' does not exist
Wed Mar 16 17:28:16 2022 kern.info kernel: [ 34.244261] br-lan: port 1(eth0) entered blocking state
Wed Mar 16 17:28:16 2022 kern.info kernel: [ 34.254716] br-lan: port 1(eth0) entered disabled state
Wed Mar 16 17:28:16 2022 kern.info kernel: [ 34.265483] device eth0 entered promiscuous mode
Wed Mar 16 17:28:16 2022 kern.info kernel: [ 34.416630] br-lan: port 1(eth0) entered blocking state
Wed Mar 16 17:28:16 2022 kern.info kernel: [ 34.427066] br-lan: port 1(eth0) entered forwarding state
Wed Mar 16 17:28:16 2022 daemon.notice netifd: Interface 'lan' is enabled
Wed Mar 16 17:28:16 2022 daemon.notice netifd: Interface 'lan' is setting up now
Wed Mar 16 17:28:16 2022 daemon.notice netifd: Interface 'lan' is now up
Wed Mar 16 17:28:16 2022 daemon.notice netifd: bridge 'br-lan' link is up
Wed Mar 16 17:28:16 2022 daemon.notice netifd: Interface 'lan' has link connectivity
Wed Mar 16 17:28:16 2022 daemon.notice netifd: Interface 'loopback' is enabled
Wed Mar 16 17:28:16 2022 daemon.notice netifd: Interface 'loopback' is setting up now
Wed Mar 16 17:28:16 2022 daemon.notice netifd: Interface 'loopback' is now up
Wed Mar 16 17:28:16 2022 daemon.notice netifd: Network device 'eth0' link is up
Wed Mar 16 17:28:16 2022 daemon.notice netifd: Network device 'lo' link is up
Wed Mar 16 17:28:16 2022 daemon.notice netifd: Interface 'loopback' has link connectivity
Wed Mar 16 17:28:17 2022 kern.info kernel: [ 35.254814] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready
Wed Mar 16 17:28:17 2022 user.notice firewall: Reloading firewall due to ifup of lan (br-lan)
Wed Mar 16 17:28:17 2022 daemon.err odhcpd[1589]: Failed to send to ff02::1%lan@br-lan (Address not available)
Wed Mar 16 17:28:18 2022 kern.info kernel: [ 36.568057] Adding 524284k swap on /overlay/swap.page. Priority:-3 extents:3 across:540668k SS
Wed Mar 16 17:28:19 2022 daemon.notice procd: /etc/rc.d/S96led: setting up led Led 4 (arancione wlan-ric)
Wed Mar 16 17:28:19 2022 daemon.notice procd: /etc/rc.d/S96led: setting up led Led 3 (blu wlan-tras)
Wed Mar 16 17:28:19 2022 daemon.notice procd: /etc/rc.d/S96led: setting up led Led 1 (rosso heartbeat)
Wed Mar 16 17:28:19 2022 daemon.notice procd: /etc/rc.d/S96led: setting up led Verde
Wed Mar 16 17:28:21 2022 daemon.notice hostapd: Configuration file: /var/run/hostapd-phy0.conf (phy wlan0-1) --> new PHY
Wed Mar 16 17:28:21 2022 kern.info kernel: [ 39.511568] br-lan: port 2(wlan0-1) entered blocking state
Wed Mar 16 17:28:21 2022 kern.info kernel: [ 39.522513] br-lan: port 2(wlan0-1) entered disabled state
Wed Mar 16 17:28:21 2022 kern.info kernel: [ 39.533838] device wlan0-1 entered promiscuous mode
Wed Mar 16 17:28:21 2022 daemon.notice hostapd: wlan0-1: interface state UNINITIALIZED->ENABLED
Wed Mar 16 17:28:21 2022 daemon.notice hostapd: wlan0-1: AP-ENABLED
Wed Mar 16 17:28:22 2022 daemon.info procd: - init complete -
Wed Mar 16 17:28:24 2022 daemon.notice hostapd: handle_probe_req: send failed
Wed Mar 16 17:28:25 2022 daemon.notice netifd: Wireless device 'radio0' is now up
Wed Mar 16 17:28:25 2022 daemon.notice netifd: Interface 'wwan' is enabled
Wed Mar 16 17:28:25 2022 daemon.info dnsmasq[1311]: exiting on receipt of SIGTERM
Wed Mar 16 17:28:25 2022 daemon.notice ttyd[2519]: ttyd 1.6.3 (libwebsockets 3.1.0)
Wed Mar 16 17:28:25 2022 daemon.notice ttyd[2519]: tty configuration:
Wed Mar 16 17:28:25 2022 daemon.notice ttyd[2519]: start command: /bin/login
Wed Mar 16 17:28:25 2022 daemon.notice ttyd[2519]: close signal: SIGHUP (1)
Wed Mar 16 17:28:25 2022 daemon.notice ttyd[2519]: terminal type: xterm-256color
Wed Mar 16 17:28:25 2022 daemon.notice ttyd[2519]: Using foreign event loop...
Wed Mar 16 17:28:25 2022 daemon.notice ttyd[2519]: Creating Vhost 'default' port 7681, 2 protocols, IPv6 off
Wed Mar 16 17:28:25 2022 daemon.notice ttyd[2519]: Listening on port: 7681
Wed Mar 16 17:28:25 2022 daemon.info dnsmasq[2654]: Connected to system UBus
Wed Mar 16 17:28:25 2022 daemon.info dnsmasq[2654]: started, version 2.85 cachesize 150
Wed Mar 16 17:28:25 2022 daemon.info dnsmasq[2654]: DNS service limited to local subnets
Wed Mar 16 17:28:25 2022 daemon.info dnsmasq[2654]: compile time options: IPv6 GNU-getopt no-DBus UBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile
Wed Mar 16 17:28:25 2022 daemon.info dnsmasq[2654]: UBus support enabled: connected to system bus
Wed Mar 16 17:28:25 2022 daemon.info dnsmasq-dhcp[2654]: DHCP, IP range 192.168.3.100 -- 192.168.3.249, lease time 12h
Wed Mar 16 17:28:25 2022 daemon.info dnsmasq[2654]: using only locally-known addresses for domain test
Wed Mar 16 17:28:25 2022 daemon.info dnsmasq[2654]: using only locally-known addresses for domain onion
Wed Mar 16 17:28:25 2022 daemon.info dnsmasq[2654]: using only locally-known addresses for domain localhost
Wed Mar 16 17:28:25 2022 daemon.info dnsmasq[2654]: using only locally-known addresses for domain local
Wed Mar 16 17:28:26 2022 daemon.info dnsmasq[2654]: using only locally-known addresses for domain invalid
Wed Mar 16 17:28:26 2022 daemon.info dnsmasq[2654]: using only locally-known addresses for domain bind
Wed Mar 16 17:28:26 2022 daemon.info dnsmasq[2654]: using only locally-known addresses for domain lan
Wed Mar 16 17:28:26 2022 daemon.warn dnsmasq[2654]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Wed Mar 16 17:28:26 2022 daemon.info dnsmasq[2654]: read /etc/hosts - 4 addresses
Wed Mar 16 17:28:26 2022 daemon.info dnsmasq[2654]: read /tmp/hosts/dhcp.cfg01411c - 2 addresses
Wed Mar 16 17:28:26 2022 daemon.info dnsmasq-dhcp[2654]: read /etc/ethers - 0 addresses
Wed Mar 16 17:28:26 2022 daemon.info dnsmasq[2654]: read /etc/hosts - 4 addresses
Wed Mar 16 17:28:26 2022 daemon.info dnsmasq[2654]: read /tmp/hosts/dhcp.cfg01411c - 2 addresses
Wed Mar 16 17:28:26 2022 daemon.info dnsmasq-dhcp[2654]: read /etc/ethers - 0 addresses
Wed Mar 16 17:28:26 2022 daemon.notice wpa_supplicant[1472]: wlan0: SME: Trying to authenticate with f6:b7:09:09:a7:3e (SSID='TIM-Ufficio-Motta' freq=2457 MHz)
Wed Mar 16 17:28:26 2022 kern.info kernel: [ 44.430464] wlan0: authenticate with f6:b7:09:09:a7:3e
Wed Mar 16 17:28:26 2022 kern.info kernel: [ 44.462646] wlan0: send auth to f6:b7:09:09:a7:3e (try 1/3)
Wed Mar 16 17:28:26 2022 kern.info kernel: [ 44.491011] wlan0: authenticated
Wed Mar 16 17:28:26 2022 daemon.notice wpa_supplicant[1472]: wlan0: Trying to associate with f6:b7:09:09:a7:3e (SSID='TIM-Ufficio-Motta' freq=2457 MHz)
Wed Mar 16 17:28:26 2022 kern.info kernel: [ 44.514832] wlan0: associate with f6:b7:09:09:a7:3e (try 1/3)
Wed Mar 16 17:28:26 2022 kern.info kernel: [ 44.550839] wlan0: RX AssocResp from f6:b7:09:09:a7:3e (capab=0x1431 status=0 aid=16)
Wed Mar 16 17:28:26 2022 kern.info kernel: [ 44.566631] wlan0: associated
Wed Mar 16 17:28:26 2022 daemon.notice netifd: Network device 'wlan0' link is up
Wed Mar 16 17:28:26 2022 daemon.notice netifd: Interface 'wwan' has link connectivity
Wed Mar 16 17:28:26 2022 daemon.notice netifd: Interface 'wwan' is setting up now
Wed Mar 16 17:28:26 2022 daemon.notice wpa_supplicant[1472]: wlan0: Associated with f6:b7:09:09:a7:3e
Wed Mar 16 17:28:26 2022 daemon.notice wpa_supplicant[1472]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Wed Mar 16 17:28:26 2022 daemon.notice wpa_supplicant[1472]: wlan0: WPA: Key negotiation completed with f6:b7:09:09:a7:3e [PTK=CCMP GTK=CCMP]
Wed Mar 16 17:28:26 2022 daemon.notice wpa_supplicant[1472]: wlan0: CTRL-EVENT-CONNECTED - Connection to f6:b7:09:09:a7:3e completed [id=0 id_str=]
Wed Mar 16 17:28:26 2022 kern.info kernel: [ 44.592903] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
Wed Mar 16 17:28:26 2022 kern.info kernel: [ 44.653053] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0-1: link becomes ready
Wed Mar 16 17:28:26 2022 kern.info kernel: [ 44.666388] br-lan: port 2(wlan0-1) entered blocking state
Wed Mar 16 17:28:26 2022 kern.info kernel: [ 44.677318] br-lan: port 2(wlan0-1) entered forwarding state
Wed Mar 16 17:28:26 2022 daemon.notice netifd: Network device 'wlan0-1' link is up
Wed Mar 16 17:28:26 2022 kern.debug kernel: [ 44.718004] wlan0: Limiting TX power to 17 (20 - 3) dBm as advertised by f6:b7:09:09:a7:3e
Wed Mar 16 17:28:26 2022 daemon.notice netifd: wwan (2686): udhcpc: started, v1.33.2
Wed Mar 16 17:28:27 2022 daemon.notice netifd: wwan (2686): udhcpc: sending discover
Wed Mar 16 17:28:30 2022 daemon.notice netifd: wwan (2686): udhcpc: sending discover
Wed Mar 16 17:28:30 2022 daemon.notice netifd: wwan (2686): udhcpc: sending select for 192.168.1.153
Wed Mar 16 17:28:30 2022 daemon.notice netifd: wwan (2686): udhcpc: lease of 192.168.1.153 obtained, lease time 4294967295
Wed Mar 16 17:28:30 2022 daemon.notice netifd: Interface 'wwan' is now up
Wed Mar 16 17:28:30 2022 daemon.info dnsmasq[2654]: reading /tmp/resolv.conf.d/resolv.conf.auto
Wed Mar 16 17:28:30 2022 daemon.info dnsmasq[2654]: using only locally-known addresses for domain test
Wed Mar 16 17:28:30 2022 daemon.info dnsmasq[2654]: using only locally-known addresses for domain onion
Wed Mar 16 17:28:30 2022 daemon.info dnsmasq[2654]: using only locally-known addresses for domain localhost
Wed Mar 16 17:28:30 2022 daemon.info dnsmasq[2654]: using only locally-known addresses for domain local
Wed Mar 16 17:28:30 2022 daemon.info dnsmasq[2654]: using only locally-known addresses for domain invalid
Wed Mar 16 17:28:30 2022 daemon.info dnsmasq[2654]: using only locally-known addresses for domain bind
Wed Mar 16 17:28:30 2022 daemon.info dnsmasq[2654]: using only locally-known addresses for domain lan
Wed Mar 16 17:28:30 2022 daemon.info dnsmasq[2654]: using nameserver 192.168.1.1#53
Wed Mar 16 17:28:31 2022 user.notice firewall: Reloading firewall due to ifup of wwan (wlan0)
Thu Mar 17 10:21:03 2022 daemon.notice ttyd[2519]: time discontiguity: at old time 1647451713s, new time 1647512463s: +60750s
Thu Mar 17 10:21:16 2022 daemon.notice ttyd[2519]: HTTP /token - 192.168.1.8
Thu Mar 17 10:21:16 2022 daemon.notice ttyd[2519]: WS /ws - 192.168.1.8, clients: 1
Thu Mar 17 10:21:16 2022 daemon.notice ttyd[2519]: started process, pid: 2829
Thu Mar 17 10:21:20 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:21:20,901 - octoprint.startup - INFO - ******************************************************************************�[0m
Thu Mar 17 10:21:20 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:21:20,919 - octoprint.startup - INFO - Starting OctoPrint 1.7.3�[0m
Thu Mar 17 10:21:20 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:21:20,927 - octoprint.startup - INFO - ******************************************************************************�[0m
Thu Mar 17 10:21:28 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:21:28,221 - octoprint.util.connectivity.connectivity_checker - INFO - Connectivity changed from offline to online�[0m
Thu Mar 17 10:21:28 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:21:28,363 - octoprint.util.connectivity.connectivity_checker - INFO - Connectivity state is currently: online�[0m
Thu Mar 17 10:21:28 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:21:28,366 - octoprint.util.connectivity.connectivity_checker - INFO - Connecting to 1.1.1.1:53 is working�[0m
Thu Mar 17 10:21:28 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:21:28,381 - octoprint.util.connectivity.connectivity_checker - INFO - Resolving octoprint.org is working�[0m
Thu Mar 17 10:21:29 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:21:29,674 - octoprint.startup - INFO - Blacklist processing done, adding 3 blacklisted plugin versions: roomtemp (any), GcodeEditor (>=0.1.1,<=0.2.8), gcodeleveling (>=0.1.0,<=0.1.1)�[0m
Thu Mar 17 10:21:33 2022 kern.info kernel: [ 82.959649] usb 1-1.4: new full-speed USB device number 3 using ehci-platform
Thu Mar 17 10:21:33 2022 kern.info kernel: [ 83.108532] ftdi_sio 1-1.4:1.0: FTDI USB Serial Device converter detected
Thu Mar 17 10:21:33 2022 kern.info kernel: [ 83.122274] usb 1-1.4: Detected FT232RL
Thu Mar 17 10:21:34 2022 kern.info kernel: [ 83.175054] usb 1-1.4: FTDI USB Serial Device converter now attached to ttyUSB0
Thu Mar 17 10:21:48 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:21:47,997 - octoprint.plugin.core - INFO - Loading plugins from /usr/lib/python3.9/site-packages/octoprint/plugins, /.octoprint/plugins and installed plugin packages...�[0m
Thu Mar 17 10:22:08 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:08,351 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin (2022.3.1) did not pass check, not loading.�[0m
Thu Mar 17 10:22:11 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:11,050 - octoprint.plugin.core - INFO - Found 17 plugin(s) providing 17 mixin implementations, 34 hook handlers�[0m
Thu Mar 17 10:22:13 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:13,344 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval�[0m
Thu Mar 17 10:22:13 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:13,499 - octoprint.server - INFO - Intermediary server started�[0m
Thu Mar 17 10:22:14 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:14,128 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /.octoprint/uploads...�[0m
Thu Mar 17 10:22:14 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:14,149 - octoprint.filemanager.storage - INFO - ... file metadata for /.octoprint/uploads initialized successfully.�[0m
Thu Mar 17 10:22:14 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:14,206 - octoprint.server - INFO - Added new permission from plugin action_command_notification: PLUGIN_ACTION_COMMAND_NOTIFICATION_SHOW (needs: "Need(method='role', value='plugin_action_command_notification_show')")�[0m
Thu Mar 17 10:22:14 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:14,212 - octoprint.server - INFO - Added new permission from plugin action_command_notification: PLUGIN_ACTION_COMMAND_NOTIFICATION_CLEAR (needs: "Need(method='role', value='plugin_action_command_notification_clear')")�[0m
Thu Mar 17 10:22:14 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:14,229 - octoprint.server - INFO - Added new permission from plugin action_command_prompt: PLUGIN_ACTION_COMMAND_PROMPT_INTERACT (needs: "Need(method='role', value='plugin_action_command_prompt_interact')")�[0m
Thu Mar 17 10:22:14 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:14,255 - octoprint.server - INFO - Added new permission from plugin announcements: PLUGIN_ANNOUNCEMENTS_READ (needs: "Need(method='role', value='plugin_announcements_read')")�[0m
Thu Mar 17 10:22:14 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:14,272 - octoprint.server - INFO - Added new permission from plugin announcements: PLUGIN_ANNOUNCEMENTS_MANAGE (needs: "Need(method='role', value='plugin_announcements_read'), Need(method='role', value='plugin_announcements_manage')")�[0m
Thu Mar 17 10:22:14 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:14,289 - octoprint.server - INFO - Added new permission from plugin appkeys: PLUGIN_APPKEYS_ADMIN (needs: "Need(method='role', value='plugin_appkeys_admin')")�[0m
Thu Mar 17 10:22:14 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:14,298 - octoprint.server - INFO - Added new permission from plugin backup: PLUGIN_BACKUP_ACCESS (needs: "Need(method='role', value='plugin_backup_access')")�[0m
Thu Mar 17 10:22:14 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:14,315 - octoprint.server - INFO - Added new permission from plugin firmware_check: PLUGIN_FIRMWARE_CHECK_DISPLAY (needs: "Need(method='role', value='plugin_firmware_check_display')")�[0m
Thu Mar 17 10:22:14 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:14,331 - octoprint.server - INFO - Added new permission from plugin logging: PLUGIN_LOGGING_MANAGE (needs: "Need(method='role', value='plugin_logging_manage')")�[0m
Thu Mar 17 10:22:14 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:14,358 - octoprint.server - INFO - Added new permission from plugin pluginmanager: PLUGIN_PLUGINMANAGER_MANAGE (needs: "Need(method='role', value='plugin_pluginmanager_manage')")�[0m
Thu Mar 17 10:22:14 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:14,375 - octoprint.server - INFO - Added new permission from plugin pluginmanager: PLUGIN_PLUGINMANAGER_INSTALL (needs: "Need(method='role', value='plugin_pluginmanager_manage'), Need(method='role', value='plugin_pluginmanager_install')")�[0m
Thu Mar 17 10:22:14 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:14,394 - octoprint.server - INFO - Added new permission from plugin softwareupdate: PLUGIN_SOFTWAREUPDATE_CHECK (needs: "Need(method='role', value='plugin_softwareupdate_check')")�[0m
Thu Mar 17 10:22:14 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:14,402 - octoprint.server - INFO - Added new permission from plugin softwareupdate: PLUGIN_SOFTWAREUPDATE_UPDATE (needs: "Need(method='role', value='plugin_softwareupdate_update')")�[0m
Thu Mar 17 10:22:14 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:14,417 - octoprint.server - INFO - Added new permission from plugin softwareupdate: PLUGIN_SOFTWAREUPDATE_CONFIGURE (needs: "Need(method='role', value='plugin_softwareupdate_configure')")�[0m
Thu Mar 17 10:22:16 2022 daemon.notice ttyd[2519]: process exited with code 0, pid: 2829
Thu Mar 17 10:22:16 2022 daemon.err ttyd[2519]: read_cb: EIO (i/o error)
Thu Mar 17 10:22:16 2022 daemon.notice ttyd[2519]: WS closed from 192.168.1.8, clients: 0
Thu Mar 17 10:22:21 2022 daemon.err octoprint[1996]: ::ffff:192.168.1.26 - - [17/Mar/2022 10:22:21] "GET /api/settings HTTP/1.1" 404 -
Thu Mar 17 10:22:24 2022 daemon.err octoprint[1996]: ::ffff:192.168.1.26 - - [17/Mar/2022 10:22:24] "GET /api/settings HTTP/1.1" 404 -
Thu Mar 17 10:22:24 2022 daemon.err octoprint[1996]: ::ffff:192.168.1.26 - - [17/Mar/2022 10:22:24] "GET /api/settings HTTP/1.1" 404 -
Thu Mar 17 10:22:30 2022 daemon.err octoprint[1996]: ::ffff:192.168.1.26 - - [17/Mar/2022 10:22:30] "GET /api/settings HTTP/1.1" 404 -
Thu Mar 17 10:22:30 2022 daemon.err octoprint[1996]: ::ffff:192.168.1.26 - - [17/Mar/2022 10:22:30] "GET /api/settings HTTP/1.1" 404 -
Thu Mar 17 10:22:35 2022 daemon.err octoprint[1996]: ::ffff:192.168.1.26 - - [17/Mar/2022 10:22:35] "GET /api/settings HTTP/1.1" 404 -
Thu Mar 17 10:22:35 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:35,297 - octoprint.util.pip - INFO - Using "/usr/bin/python3 -m pip" as command to invoke pip�[0m
Thu Mar 17 10:22:51 2022 daemon.err octoprint[1996]: ::ffff:192.168.1.26 - - [17/Mar/2022 10:22:51] "GET /api/settings HTTP/1.1" 404 -
Thu Mar 17 10:22:51 2022 daemon.err octoprint[1996]: ::ffff:192.168.1.26 - - [17/Mar/2022 10:22:51] "GET /api/settings HTTP/1.1" 404 -
Thu Mar 17 10:22:54 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:54,091 - octoprint.util.pip - INFO - Version of pip is 21.2.4�[0m
Thu Mar 17 10:22:54 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:54,110 - octoprint.util.pip - INFO - pip installs to /usr/lib/python3.9/site-packages (writable -> yes), --user flag needed -> no, virtual env -> no�[0m
Thu Mar 17 10:22:54 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:54,116 - octoprint.util.pip - INFO - ==> pip ok -> yes�[0m
Thu Mar 17 10:22:54 2022 daemon.err octoprint[1996]: ::ffff:192.168.1.26 - - [17/Mar/2022 10:22:54] "GET /api/settings HTTP/1.1" 404 -
Thu Mar 17 10:22:56 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:56,795 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk�[0m
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:57,248 - octoprint.plugin.core - INFO - Initialized 17 plugin implementation(s)�[0m
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:57,417 - octoprint.plugin.core - INFO - 17 plugin(s) registered with the system:
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | Action Command Notification Support (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/action_command_notification
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | Action Command Prompt Support (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/action_command_prompt
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | Announcement Plugin (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/announcements
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | Anonymous Usage Tracking (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/tracking
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | Application Keys Plugin (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/appkeys
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | Backup & Restore (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/backup
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | Core Wizard (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/corewizard
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | Discovery (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/discovery
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | Error Tracking (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/errortracking
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | Event Manager (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/eventmanager
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | File Check (2021.2.23) (bundled) = /usr/lib/python3.9/site-packages/octoprint_file_check
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | Firmware Check (2021.10.11) (bundled) = /usr/lib/python3.9/site-packages/octoprint_firmware_check
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | GCode Viewer (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/gcodeviewer
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | Logging (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/logging
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | Plugin Manager (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/pluginmanager
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | Software Update (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/softwareupdate
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | Virtual Printer (bundled) = /usr/lib/python3.9/site-packages/octoprint/plugins/virtual_printer
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: Prefix legend: ! = disabled, # = blacklisted, * = incompatible�[0m
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:57,561 - octoprint.environment - INFO - Detected environment is Python 3.9.10 under Linux (linux). Details:
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | hardware:
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | cores: 1
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | freq: unknown
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | ram: 126427136
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | os:
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | bits: 32
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | id: linux
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | platform: linux
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | python:
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | pip: 21.2.4
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: | version: 3.9.10�[0m
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:57,675 - octoprint.server - INFO - Reset webasset folder /.octoprint/generated/webassets...�[0m
Thu Mar 17 10:22:57 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:22:57,893 - octoprint.server - INFO - Reset webasset folder /.octoprint/generated/.webassets-cache...�[0m
Thu Mar 17 10:23:00 2022 daemon.err octoprint[1996]: ::ffff:192.168.1.26 - - [17/Mar/2022 10:23:00] "GET /api/settings HTTP/1.1" 404 -
Thu Mar 17 10:23:00 2022 daemon.err octoprint[1996]: ::ffff:192.168.1.26 - - [17/Mar/2022 10:23:00] "GET /api/settings HTTP/1.1" 404 -
Thu Mar 17 10:23:05 2022 daemon.err octoprint[1996]: ::ffff:192.168.1.26 - - [17/Mar/2022 10:23:05] "GET /api/settings HTTP/1.1" 404 -
Thu Mar 17 10:23:05 2022 daemon.err octoprint[1996]: ::ffff:192.168.1.26 - - [17/Mar/2022 10:23:05] "GET /api/settings HTTP/1.1" 404 -
Thu Mar 17 10:23:12 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:23:12,052 - octoprint.server - INFO - Shutting down intermediary server...�[0m
Thu Mar 17 10:23:12 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:23:12,504 - octoprint.server - INFO - Intermediary server shut down�[0m
Thu Mar 17 10:23:12 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:23:12,532 - octoprint.events - INFO - Processing startup event, this is our first event�[0m
Thu Mar 17 10:23:12 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:23:12,537 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event�[0m
Thu Mar 17 10:23:12 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:23:12,580 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...�[0m
Thu Mar 17 10:23:12 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:23:12,622 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue�[0m
Thu Mar 17 10:23:12 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:23:12,649 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...�[0m
Thu Mar 17 10:23:13 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:23:12,712 - octoprint.server.util.watchdog - INFO - ... initial scan done.�[0m
Thu Mar 17 10:23:13 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:23:12,722 - octoprint.plugins.softwareupdate - INFO - Fetching check overlays from https://plugins.octoprint.org/update_check_overlay.json�[0m
Thu Mar 17 10:23:13 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:23:13,106 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid�[0m
Thu Mar 17 10:23:15 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:23:15,239 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance "(4) Prusa i3 Mk3"._http._tcp.local.' for _http._tcp.local.�[0m
Thu Mar 17 10:23:16 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:23:16,815 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance "(4) Prusa i3 Mk3"._octoprint._tcp.local.' for _octoprint._tcp.local.�[0m
Thu Mar 17 10:23:16 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:23:16,869 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "(4) Prusa i3 Mk3" for SSDP�[0m
Thu Mar 17 10:23:17 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:23:17,032 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 and http://[::]:5000�[0m
Thu Mar 17 10:23:17 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:23:17,737 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid�[0m
Thu Mar 17 10:23:49 2022 user.info : luci: accepted login on /admin/services/ttyd for root from 192.168.1.8
Thu Mar 17 10:23:55 2022 daemon.notice ttyd[2519]: HTTP / - 192.168.1.8
Thu Mar 17 10:23:55 2022 daemon.notice ttyd[2519]: HTTP /token - 192.168.1.8
Thu Mar 17 10:23:55 2022 daemon.notice ttyd[2519]: WS /ws - 192.168.1.8, clients: 1
Thu Mar 17 10:23:55 2022 daemon.notice ttyd[2519]: started process, pid: 3035
Thu Mar 17 10:23:57 2022 daemon.warn wpa_supplicant[1472]: wlan0: Undefined secondary channel: drop OBSS scan results
Thu Mar 17 10:24:03 2022 daemon.notice ttyd[2519]: WS closed from 192.168.1.8, clients: 0
Thu Mar 17 10:24:03 2022 daemon.notice ttyd[2519]: killing process 3035 with signal: 1 (SIGHUP)
Thu Mar 17 10:24:03 2022 daemon.notice ttyd[2519]: process killed with signal 1 (SIGHUP), pid: 3035
Thu Mar 17 10:24:21 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:24:21,634 - octoprint.util.pip - INFO - Using "/usr/bin/python3 -m pip" as command to invoke pip�[0m
Thu Mar 17 10:24:21 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:24:21,698 - octoprint.util.pip - INFO - pip installs to /usr/lib/python3.9/site-packages (writable -> yes), --user flag needed -> no, virtual env -> no�[0m
Thu Mar 17 10:24:21 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:24:21,751 - octoprint.util.pip - INFO - ==> pip ok -> yes�[0m
Thu Mar 17 10:24:22 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:24:22,059 - octoprint.plugins.softwareupdate - INFO - Minimum free storage across all update relevant locations is 255.8MB. That is considered sufficient for updating.�[0m
Thu Mar 17 10:24:31 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:24:31,043 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'base_url': 'http://192.168.1.153:5000/', 'path': '/', 'query_string': 'l10n=en'}�[0m
Thu Mar 17 10:25:20 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:25:20,559 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid�[0m
Thu Mar 17 10:25:22 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:25:22,123 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.1.8�[0m
Thu Mar 17 10:25:22 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:25:22,147 - octoprint.access.users - INFO - Logged in user: admin�[0m
Thu Mar 17 10:25:24 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:25:24,517 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid�[0m
Thu Mar 17 10:26:58 2022 daemon.warn wpa_supplicant[1472]: wlan0: Undefined secondary channel: drop OBSS scan results
Thu Mar 17 10:29:57 2022 daemon.warn wpa_supplicant[1472]: wlan0: Undefined secondary channel: drop OBSS scan results
Thu Mar 17 10:30:00 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:30:00,031 - octoprint.server.preemptive_cache - INFO - ... done in 328.99s�[0m
Thu Mar 17 10:32:14 2022 daemon.warn dnsmasq-dhcp[2654]: no address range available for DHCP request via wlan0
Thu Mar 17 10:32:16 2022 daemon.warn dnsmasq-dhcp[2654]: no address range available for DHCP request via wlan0
Thu Mar 17 10:32:16 2022 daemon.warn dnsmasq-dhcp[2654]: no address range available for DHCP request via wlan0
Thu Mar 17 10:32:57 2022 daemon.warn wpa_supplicant[1472]: wlan0: Undefined secondary channel: drop OBSS scan results
Thu Mar 17 10:35:08 2022 daemon.info octoprint[1996]: �[33m2022-03-17 10:35:08,661 - zeroconf - WARNING - Error with socket 7 (('127.0.0.1', 5353))): [Errno 22] Invalid argument�[0m
Thu Mar 17 10:35:08 2022 daemon.info octoprint[1996]: Traceback (most recent call last):
Thu Mar 17 10:35:08 2022 daemon.info octoprint[1996]: File "/usr/lib/python3.9/asyncio/selector_events.py", line 1056, in sendto
Thu Mar 17 10:35:08 2022 daemon.info octoprint[1996]: OSError: [Errno 22] Invalid argument�[0m
Thu Mar 17 10:35:57 2022 daemon.warn wpa_supplicant[1472]: wlan0: Undefined secondary channel: drop OBSS scan results
Thu Mar 17 10:37:13 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:37:13,372 - octoprint.server.heartbeat - INFO - Server heartbeat <3�[0m
Thu Mar 17 10:38:57 2022 daemon.warn wpa_supplicant[1472]: wlan0: Undefined secondary channel: drop OBSS scan results
Thu Mar 17 10:39:16 2022 daemon.notice wpa_supplicant[1472]: wlan0: CTRL-EVENT-BEACON-LOSS
Thu Mar 17 10:39:17 2022 daemon.notice wpa_supplicant[1472]: wlan0: CTRL-EVENT-BEACON-LOSS
Thu Mar 17 10:39:18 2022 daemon.notice wpa_supplicant[1472]: wlan0: CTRL-EVENT-BEACON-LOSS
Thu Mar 17 10:41:57 2022 daemon.warn wpa_supplicant[1472]: wlan0: Undefined secondary channel: drop OBSS scan results
Thu Mar 17 10:44:57 2022 daemon.warn wpa_supplicant[1472]: wlan0: Undefined secondary channel: drop OBSS scan results
Thu Mar 17 10:46:47 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:46:47,524 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.1.8�[0m
Thu Mar 17 10:46:47 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:46:47,529 - octoprint.access.users - INFO - Logged in user: admin�[0m
Thu Mar 17 10:47:57 2022 daemon.warn wpa_supplicant[1472]: wlan0: Undefined secondary channel: drop OBSS scan results
Thu Mar 17 10:48:46 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:48:46,392 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.1.8�[0m
Thu Mar 17 10:48:46 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:48:46,398 - octoprint.access.users - INFO - Logged in user: admin�[0m
Thu Mar 17 10:50:58 2022 daemon.warn wpa_supplicant[1472]: wlan0: Undefined secondary channel: drop OBSS scan results
Thu Mar 17 10:52:13 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:52:13,385 - octoprint.server.heartbeat - INFO - Server heartbeat <3�[0m
Thu Mar 17 10:53:14 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:53:14,758 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.1.8�[0m
Thu Mar 17 10:53:14 2022 daemon.info octoprint[1996]: �[37m2022-03-17 10:53:14,764 - octoprint.access.users - INFO - Logged in user: admin�[0m
Thu Mar 17 10:53:58 2022 daemon.warn wpa_supplicant[1472]: wlan0: Undefined secondary channel: drop OBSS scan results
Thu Mar 17 10:56:58 2022 daemon.warn wpa_supplicant[1472]: wlan0: Undefined secondary channel: drop OBSS scan results

WebCam Help for a complete Noob

I have managed to make my way through the setup with a bit of help from youtube. Everything is all working well, so thanks. However, I cannot figure out how to get the webcam working - any chance you can explain (like you would to a small child) how to set this up?

OctoPrint doesn't start

I recently tried to install octoprint but the 5000 port is unavailable.
The logread command show me this:
Sun Jan 15 16:44:14 2023 daemon.info octoprint[1983]: 2023-01-15 16:44:14,905 - octoprint.startup - CRITICAL - Could not initialize settings manager: (urllib3 2.0.0a2 (/usr/lib/python3.10/site-packages/urllib3-2.0.0a2-py3.10.egg), Requirement.parse('urllib3<1.27,>=1.21.1'), {'requests'}) Sun Jan 15 16:44:14 2023 daemon.info octoprint[1983]: 2023-01-15 16:44:14,910 - octoprint.startup - CRITICAL - There was a fatal error starting up OctoPrint. Sun Jan 15 16:44:14 2023 daemon.err octoprint[1983]: Could not initialize settings manager: (urllib3 2.0.0a2 (/usr/lib/python3.10/site-packages/urllib3-2.0.0a2-py3.10.egg), Requirement.parse('urllib3<1.27,>=1.21.1'), {'requests'}) Sun Jan 15 16:44:14 2023 daemon.err octoprint[1983]: There was a fatal error starting up OctoPrint. Sun Jan 15 16:44:38 2023 user.info : luci: accepted login on / for root from 192.168.188.200 Sun Jan 15 16:45:09 2023 daemon.info octoprint[3102]: 2023-01-15 16:45:09,602 - octoprint.startup - CRITICAL - Could not initialize settings manager: (urllib3 2.0.0a2 (/usr/lib/python3.10/site-packages/urllib3-2.0.0a2-py3.10.egg), Requirement.parse('urllib3<1.27,>=1.21.1'), {'requests'}) Sun Jan 15 16:45:09 2023 daemon.info octoprint[3102]: 2023-01-15 16:45:09,606 - octoprint.startup - CRITICAL - There was a fatal error starting up OctoPrint. Sun Jan 15 16:45:09 2023 daemon.err octoprint[3102]: Could not initialize settings manager: (urllib3 2.0.0a2 (/usr/lib/python3.10/site-packages/urllib3-2.0.0a2-py3.10.egg), Requirement.parse('urllib3<1.27,>=1.21.1'), {'requests'}) Sun Jan 15 16:45:09 2023 daemon.err octoprint[3102]: There was a fatal error starting up OctoPrint.

Octoprint installation - python errors

Hi all,

trying to install Octoprint 1.8.4 on Creality Box 1, everything goes ok with no errors but on reboot octoprint won't start, i tried everything but it seems that every python command i try (uninstall, run setup script) and octoprint service restart pops up the same errors:

`Thu Feb 9 19:48:56 2023 daemon.err octoprint[2824]: Traceback (most recent call last):

Thu Feb 9 19:48:56 2023 daemon.err octoprint[2824]: File "/usr/bin/octoprint", line 33, in

Thu Feb 9 19:48:56 2023 daemon.err octoprint[2824]: sys.exit(load_entry_point('OctoPrint==1.8.4', 'console_scripts', 'octoprint')())

Thu Feb 9 19:48:56 2023 daemon.err octoprint[2824]: File "/usr/bin/octoprint", line 22, in importlib_load_entry_point

Thu Feb 9 19:48:56 2023 daemon.err octoprint[2824]: for entry_point in distribution(dist_name).entry_points

Thu Feb 9 19:48:56 2023 daemon.err octoprint[2824]: File "/usr/lib/python3.10/importlib/metadata/init.py", line 957, in distribution

Thu Feb 9 19:48:56 2023 daemon.err octoprint[2824]: File "/usr/lib/python3.10/importlib/metadata/init.py", line 548, in from_name

Thu Feb 9 19:48:56 2023 daemon.err octoprint[2824]: importlib.metadata.PackageNotFoundError: No package metadata was found for OctoPrint`

i installed python3 python3-pip python3-dev python3-psutil python3-netifaces python3-pillow
without errors

Error - not downloading package

root@KlipperWrt:~# opkg update
Downloading https://downloads.openwrt.org/snapshots/targets/ramips/mt76x8/packages/Packages.gz
Error relocating /usr/bin/wget: __gmtime64: symbol not found
Error relocating /usr/bin/wget: __localtime64_r: symbol not found
Error relocating /usr/bin/wget: __select_time64: symbol not found
Error relocating /usr/bin/wget: __setitimer_time64: symbol not found
Error relocating /usr/bin/wget: __lstat_time64: symbol not found
Error relocating /usr/bin/wget: __clock_getres_time64: symbol not found
Error relocating /usr/bin/wget: __localtime64: symbol not found
Error relocating /usr/bin/wget: __stat_time64: symbol not found
Error relocating /usr/bin/wget: __fstat_time64: symbol not found
Error relocating /usr/bin/wget: __utime64: symbol not found
Error relocating /usr/bin/wget: __clock_gettime64: symbol not found
Error relocating /usr/bin/wget: __gmtime64_r: symbol not found
Error relocating /usr/bin/wget: __time64: symbol not found
*** Failed to download the package list from https://downloads.openwrt.org/snapshots/targets/ramips/mt76x8/packages/Packages.gz

Downloading https://downloads.openwrt.org/snapshots/packages/mipsel_24kc/base/Packages.gz
Error relocating /usr/bin/wget: __gmtime64: symbol not found
Error relocating /usr/bin/wget: __localtime64_r: symbol not found
Error relocating /usr/bin/wget: __select_time64: symbol not found
Error relocating /usr/bin/wget: __setitimer_time64: symbol not found
Error relocating /usr/bin/wget: __lstat_time64: symbol not found
Error relocating /usr/bin/wget: __clock_getres_time64: symbol not found
Error relocating /usr/bin/wget: __localtime64: symbol not found
Error relocating /usr/bin/wget: __stat_time64: symbol not found
Error relocating /usr/bin/wget: __fstat_time64: symbol not found
Error relocating /usr/bin/wget: __utime64: symbol not found
Error relocating /usr/bin/wget: __clock_gettime64: symbol not found
Error relocating /usr/bin/wget: __gmtime64_r: symbol not found
Error relocating /usr/bin/wget: __time64: symbol not found
*** Failed to download the package list from https://downloads.openwrt.org/snapshots/packages/mipsel_24kc/base/Packages.gz

Downloading https://downloads.openwrt.org/snapshots/packages/mipsel_24kc/luci/Packages.gz
Error relocating /usr/bin/wget: __gmtime64: symbol not found
Error relocating /usr/bin/wget: __localtime64_r: symbol not found
Error relocating /usr/bin/wget: __select_time64: symbol not found
Error relocating /usr/bin/wget: __setitimer_time64: symbol not found
Error relocating /usr/bin/wget: __lstat_time64: symbol not found
Error relocating /usr/bin/wget: __clock_getres_time64: symbol not found
Error relocating /usr/bin/wget: __localtime64: symbol not found
Error relocating /usr/bin/wget: __stat_time64: symbol not found
Error relocating /usr/bin/wget: __fstat_time64: symbol not found
Error relocating /usr/bin/wget: __utime64: symbol not found
Error relocating /usr/bin/wget: __clock_gettime64: symbol not found
Error relocating /usr/bin/wget: __gmtime64_r: symbol not found
Error relocating /usr/bin/wget: __time64: symbol not found
*** Failed to download the package list from https://downloads.openwrt.org/snapshots/packages/mipsel_24kc/luci/Packages.gz

Downloading https://downloads.openwrt.org/snapshots/packages/mipsel_24kc/packages/Packages.gz
Error relocating /usr/bin/wget: __gmtime64: symbol not found
Error relocating /usr/bin/wget: __localtime64_r: symbol not found
Error relocating /usr/bin/wget: __select_time64: symbol not found
Error relocating /usr/bin/wget: __setitimer_time64: symbol not found
Error relocating /usr/bin/wget: __lstat_time64: symbol not found
Error relocating /usr/bin/wget: __clock_getres_time64: symbol not found
Error relocating /usr/bin/wget: __localtime64: symbol not found
Error relocating /usr/bin/wget: __stat_time64: symbol not found
Error relocating /usr/bin/wget: __fstat_time64: symbol not found
Error relocating /usr/bin/wget: __utime64: symbol not found
Error relocating /usr/bin/wget: __clock_gettime64: symbol not found
Error relocating /usr/bin/wget: __gmtime64_r: symbol not found
Error relocating /usr/bin/wget: __time64: symbol not found
*** Failed to download the package list from https://downloads.openwrt.org/snapshots/packages/mipsel_24kc/packages/Packages.gz

Downloading https://downloads.openwrt.org/snapshots/packages/mipsel_24kc/routing/Packages.gz
Error relocating /usr/bin/wget: __gmtime64: symbol not found
Error relocating /usr/bin/wget: __localtime64_r: symbol not found
Error relocating /usr/bin/wget: __select_time64: symbol not found
Error relocating /usr/bin/wget: __setitimer_time64: symbol not found
Error relocating /usr/bin/wget: __lstat_time64: symbol not found
Error relocating /usr/bin/wget: __clock_getres_time64: symbol not found
Error relocating /usr/bin/wget: __localtime64: symbol not found
Error relocating /usr/bin/wget: __stat_time64: symbol not found
Error relocating /usr/bin/wget: __fstat_time64: symbol not found
Error relocating /usr/bin/wget: __utime64: symbol not found
Error relocating /usr/bin/wget: __clock_gettime64: symbol not found
Error relocating /usr/bin/wget: __gmtime64_r: symbol not found
Error relocating /usr/bin/wget: __time64: symbol not found
*** Failed to download the package list from https://downloads.openwrt.org/snapshots/packages/mipsel_24kc/routing/Packages.gz

Downloading https://downloads.openwrt.org/snapshots/packages/mipsel_24kc/telephony/Packages.gz
Error relocating /usr/bin/wget: __gmtime64: symbol not found
Error relocating /usr/bin/wget: __localtime64_r: symbol not found
Error relocating /usr/bin/wget: __select_time64: symbol not found
Error relocating /usr/bin/wget: __setitimer_time64: symbol not found
Error relocating /usr/bin/wget: __lstat_time64: symbol not found
Error relocating /usr/bin/wget: __clock_getres_time64: symbol not found
Error relocating /usr/bin/wget: __localtime64: symbol not found
Error relocating /usr/bin/wget: __stat_time64: symbol not found
Error relocating /usr/bin/wget: __fstat_time64: symbol not found
Error relocating /usr/bin/wget: __utime64: symbol not found
Error relocating /usr/bin/wget: __clock_gettime64: symbol not found
Error relocating /usr/bin/wget: __gmtime64_r: symbol not found
Error relocating /usr/bin/wget: __time64: symbol not found
*** Failed to download the package list from https://downloads.openwrt.org/snapshots/packages/mipsel_24kc/telephony/Packages.gz

Bump to 1.8 octoprint

Hi, will the bump up script cause a data loss of files in octoprint ? Or lose spool setting from plug ins?

There was a fatal error starting up OctoPrint.

daemon.info octoprint[2937]: 2022-12-31 13:14:52,024 - octoprint.startup - CRITICAL - There was a fatal error starting up OctoPrint.
daemon.err octoprint[2937]: Could not initialize settings manager: (urllib3 2.0.0a2 (/usr/lib/python3.10/site-packages/urllib3-2.0.0a2-py3.10.egg), Requirement.parse('urllib3<1.27,>=1.21.1'), {'requests'})
daemon.err octoprint[2937]: There was a fatal error starting up OctoPrint.

UPDATE:
i tryed this commands

pip uninstall urllib3
pip install -Iv urllib3==1.26.11
opkg update
opkg install python3-requests
opkg install python3-cffi
cd /root/OctoPrint-1.8.4
python setup.py install

but it give me this error: error: urllib3 2.0.0a2 is installed but urllib3<1.27,>=1.21.1 is required by {'requests'}

and also this error trying to reinstalling urlibb3

ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
requests 2.28.1 requires charset_normalizer<3,>=2, but you have charset-normalizer 3.0.1 which is incompatible.

page not found

❗ Check Releases page for binaries ❗

there is no such page,

I am completeley new to Github, i cannot find the Releases page, Either the page is not there or i do not know how to navigate to said page

any assistance will be appreciated.

Failed to build cffi

  gcc -Wno-unused-result -Wsign-compare -DNDEBUG -Os -pipe -mno-branch-likely -mips32r2 -mtune=24kc -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -msoft-float -mips16 -minterlink-mips16 -ffile-prefix-map=/builder/shared-workdir/build/sdk/build_dir/target-mipsel_24kc_musl/Python-3.10.7=Python-3.10.7 -Wformat -Werror=format-security -fstack-protector -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -Os -pipe -mno-branch-likely -mips32r2 -mtune=24kc -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -msoft-float -mips16 -minterlink-mips16 -ffile-prefix-map=/builder/shared-workdir/build/sdk/build_dir/target-mipsel_24kc_musl/Python-3.10.7=Python-3.10.7 -Wformat -Werror=format-security -fstack-protector -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -Os -pipe -mno-branch-likely -mips32r2 -mtune=24kc -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -msoft-float -mips16 -minterlink-mips16 -ffile-prefix-map=/builder/shared-workdir/build/sdk/build_dir/target-mipsel_24kc_musl/Python-3.10.7=Python-3.10.7 -Wformat -Werror=format-security -fstack-protector -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro -I/builder/shared-workdir/build/sdk/staging_dir/toolchain-mipsel_24kc_gcc-11.3.0_musl/usr/include -I/builder/shared-workdir/build/sdk/staging_dir/toolchain-mipsel_24kc_gcc-11.3.0_musl/include/fortify -I/builder/shared-workdir/build/sdk/staging_dir/toolchain-mipsel_24kc_gcc-11.3.0_musl/include -fPIC -DFFI_BUILDING=1 -DUSE__THREAD -DHAVE_SYNC_SYNCHRONIZE -I/usr/include/ffi -I/usr/include/libffi -I/usr/include/python3.10 -c c/_cffi_backend.c -o build/temp.linux-mips-cpython-310/c/_cffi_backend.o
    c/_cffi_backend.c:15:10: fatal error: ffi.h: No such file or directory
       15 | #include <ffi.h>
          |          ^~~~~~~
    compilation terminated.
    error: command '/usr/bin/gcc' failed with exit code 1
    error: subprocess-exited-with-error

    × python setup.py bdist_wheel did not run successfully.
    │ exit code: 1
    ╰─> See above for output.

    note: This error originates from a subprocess, and is likely not a problem with pip.
    full command: /usr/bin/python3 -u -c '
    exec(compile('"'"''"'"''"'"'
    # This is <pip-setuptools-caller> -- a caller that pip uses to run setup.py
    #
    # - It imports setuptools before invoking setup.py, to enable projects that directly
    #   import from `distutils.core` to work with newer packaging standards.
    # - It provides a clear error message when setuptools is not installed.
    # - It sets `sys.argv[0]` to the underlying `setup.py`, when invoking `setup.py` so
    #   setuptools doesn'"'"'t think the script is `-c`. This avoids the following warning:
    #     manifest_maker: standard file '"'"'-c'"'"' not found".
    # - It generates a shim setup.py, for handling setup.cfg-only projects.
    import os, sys, tokenize

    try:
        import setuptools
    except ImportError as error:
        print(
            "ERROR: Can not execute `setup.py` since setuptools is not available in "
            "the build environment.",
            file=sys.stderr,
        )
        sys.exit(1)

    __file__ = %r
    sys.argv[0] = __file__

    if os.path.exists(__file__):
        filename = __file__
        with tokenize.open(__file__) as f:
            setup_py_code = f.read()
    else:
        filename = "<auto-generated setuptools caller>"
        setup_py_code = "from setuptools import setup; setup()"

    exec(compile(setup_py_code, filename, "exec"))
    '"'"''"'"''"'"' % ('"'"'/tmp/pip-install-5km713pa/cffi_1ed34dda617945c29a253d97fdc33bec/setup.py'"'"',), "<pip-setuptools-caller>", "exec"))' bdist_wheel -d /tmp/pip-wheel-68hx4fz1
    cwd: /tmp/pip-install-5km713pa/cffi_1ed34dda617945c29a253d97fdc33bec/
    Building wheel for cffi (setup.py): finished with status 'error'
    ERROR: Failed building wheel for cffi
    Running setup.py clean for cffi
    Running command python setup.py clean
    /usr/lib/python3.10/site-packages/setuptools/config/setupcfg.py:508: SetuptoolsDeprecationWarning: The license_file parameter is deprecated, use license_files instead.
      warnings.warn(msg, warning_class)
    running clean
    removing 'build/temp.linux-mips-cpython-310' (and everything under it)
    removing 'build/lib.linux-mips-cpython-310' (and everything under it)
    'build/bdist.linux-mips' does not exist -- can't clean it
    'build/scripts-3.10' does not exist -- can't clean it
    removing 'build'
  Failed to build cffi
  Installing collected packages: wheel, typing-extensions, tomli, setuptools, pyparsing, pycparser, packaging, cffi, setuptools_scm
    Creating /tmp/pip-build-env-f4yj8rx7/overlay/bin
    changing mode of /tmp/pip-build-env-f4yj8rx7/overlay/bin/wheel to 755

Access Octowrt page

Hi! after Octowrt and Octoprint successfull instalations I can access both if I connect directly to Octowrt wifi network, but if I connect via the client network I cant.
I see the lease on the router and I can ping it, but I try to acces the gui it gives an ERR_CONNECTION_REFUSED error for both Octowrt and Octoprint.

Thanks in advance

OctoPrint not starting - urllib3 dependency issue

Hi,
after following the steps the octoprint Webgui was not reachable under port 5000 so I went into ssh and saw that octoprint service is stopped, so tried to run it manually and got these errors:
2022-12-06 13:36:29,383 - octoprint.startup - CRITICAL - Could not initialize settings manager: (urllib3 2.0.0a2 (/usr/lib/python3.10/site-packages/urllib3-2.0.0a2-py3.10.egg), Requirement.parse('urllib3<1.27,>=1.21.1'), {'requests'}) 2022-12-06 13:36:29,398 - octoprint.startup - CRITICAL - There was a fatal error starting up OctoPrint. Could not initialize settings manager: (urllib3 2.0.0a2 (/usr/lib/python3.10/site-packages/urllib3-2.0.0a2-py3.10.egg), Requirement.parse('urllib3<1.27,>=1.21.1'), {'requests'}) There was a fatal error starting up OctoPrint.

then I tried running python /root/OctoPrint-1.8.4/setup.py install again and got:

error: urllib3 2.0.0a2 is installed but urllib3<1.27,>=1.21.1 is required by {'requests'}

I tried pip install urllib3==1.21.1 but it did not help and I could not find urllib dependency in setup.py or requirements.txt

any hints?

internal server error

after I solved the error #43 I run "python setup.py install"
then I went on ip:5000 but it says me:
"
Internal Server Error
The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there is an error in the application.

"

from the logs: octoprint - ERROR - Exception on /intermediary.gif [GET]

OctoWrt Install error

First, thank you for your work on this project.

I am fairly new to this, and followed your instructions provided to the letter. However, I constantly get the following error on the install:

8e16642c96758cd231d9595ab90912c91b282
Stored in directory: /tmp/.cache/wheels/b7/a5/c4/504d913c2a55bb09c607541578ec5f844d1ff33467abe93ba5
error: subprocess-exited-with-error

× python setup.py bdist_wheel did not run successfully.
│ exit code: 1
╰─> See above for output.

note: This error originates from a subprocess, and is likely not a problem with pip.
Building wheel for regex (setup.py) ... error
ERROR: Failed building wheel for regex
Running setup.py clean for regex
Successfully built blinker emoji future pylru PyYAML
Failed to build regex
Installing collected packages: regex, pyserial, pylru, pkginfo, OctoPrint-PiSupport, OctoPrint-FirmwareCheck, OctoPrint-FileCheck, netaddr, filetype, emoji, colorlog, cachelib, blinker, PyYAML, pathvalidate, markdown, future, feedparser, Flask-Login, Flask-Babel, Flask-Assets, Octoprint
error: subprocess-exited-with-error

× Running setup.py install for regex did not run successfully.
│ exit code: 1
╰─> See above for output.

note: This error originates from a subprocess, and is likely not a problem with pip.
Running setup.py install for regex ... error
error: legacy-install-failure

× Encountered error while trying to install package.
╰─> regex

note: This is an issue with the package mentioned above, not pip.
hint: See above for output from the failure.

I am afraid I do not know enough about Python to figure out what is going wrong. It appears everything else installs correctly. Can you help?

Problem with Hue plugin install in octoprint

In the octowrt on the creality wifi box, i dont get the Hue plugins installed. There are 3 plugins in the repository but all fail. What can be the cause? Is there a workaround ? Please look at the attached messages. I notice that it tries to work with Wheel, resource. Is that the problem?
63F73F02-9703-455E-810A-73920A8587E6
D2437E23-4EFB-42B5-8099-34E275D05F6B

mjpg-streamer config file settings

First of all, excellent work on the tutorial. It works fine, except for the USB camera with mjpg-streamer. I don't get an image, so I tried to modify the /etc/config/mjpg-streamer
See file content below:
config mjpg-streamer 'core'
option enabled '1'
option input 'uvc'
option output 'http'
option device '/dev/video0'
option resolution '1280x720'
option yuv '0'
option quality '80'
option fps '10'
option led 'auto'
option www '/www/webcam'
option port '8080'
#option listen ip '192.168.1.1'
#option username 'openwrt'
#option password 'openwrt'

The option Enabled was default to 0 and I changed it to 1 and I also disabled the login for the stream.
This was all done because I am not getting any image .
Could you maybe provide me with how this config should be ? Enabled '0' or '1' and is the device automatically changed to /dev/video0 ? and are there more options to check ?

RPC call to luci/getLocaltime failed with error -32002: Access denied

Hi All,

After successfully installing KlipperWRT, I went over to this distro. Installed same, no errors.

After reboot after Step #2 completes without error, getting the above when accessing System/System.

Also, OctoPrint isn't starting on Port 5000.

Otherwise, it seems to have installed fine. df reports more than enough disk space free. As a result, the system page does not load at all.

Any advice?

Update octoprint to v1.7 fails

I get notified that a new version of octoprint is available (1.7)
I do this through the software update feature in the octoprint web ui
It looks like everthing is going fine but in the end it fails.
Tomorrow i will add the log shown.
i have tried it 3 times. One time with all my plugins active, ones with some plugins switched off and ones in safe mode.

Upgrade from 1.8.2 to Octoprint 1.8.4

Hello community,

after realizing that the install scripts have been updated in order to install version 1.8.4, I´ve already tried an upgrade install. The upgrade from Octoprint 1.8.2 to 1.8.4 from the webinterface never worked. That´s why I already started to create screenshots yesterday in order to post an issue... Seems that someone heart my voice :-)

I´ve executed both scrips from the Luci terminal. I didnt throw any error. BUT after rebooting, Octoprint 1.8.2 re-appears?!
Is there any working upgrade procedure or any option for a clean install?

error when installing octoprint 1.6.1

hi, i have a problem , when i arrive to install octoprint compare an error:

ERROR: Command errored out with exit status 1: /usr/bin/python3 -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-jqid1cfe/regex_e2f3b767df6b4c37b68b350b894d6d2e/setup.py'"'"'; file='"'"'/tmp/pip-install-jqid1cfe/regex_e2f3b767df6b4c37b68b350b894d6d2e/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(file) if os.path.exists(file) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record /tmp/pip-record-zpl7kz4f/install-record.txt --single-version-externally-managed --compile --install-headers /usr/include/python3.9/regex Check the logs for full command output.

what can i do ? a read all step in wiki and video tutorial .

Octoprint 1.8.4 incompatible with current python 3.11 version

Trying to install the automatic procedure finish up but when Octoprint is started it generates several
ImportError: cannot import name 'formatargspec'...

Discovered that Octoprint 1.8.4 is not compatible with current python version 3.11.4.

I solved it editing 2_octoprint_install.sh and replacing Octoprint version 1.8.4 with 1.8.7 version.

Cannot Access terminal

It seems that any attempt to connect to the terminal get denied.
No matter what brower is being used, or interface of method of connection.

how can i navigate the internal files of the system?

excellent version, but in the previous one there was in the "services" box the possibility of scrolling through the files of the system, in addition to the already present "terminal", is it possible to re-insert it?

Problem config camera

Hello I would like to configure my Logitech C160 camera which is compatible with mjpg-streamer but the camera lags so I would like to solve the problem but I don't know which file to go to please

Unable to connect using 250000 baudrate

Connecting to port /dev/ttyUSB0, baudrate 250000
Changing monitoring state from "Opening serial connection" to "Error"
Changing monitoring state from "Error" to "Offline after error"
Unexpected error while connecting to serial port /dev/ttyUSB0, baudrate 250000 from hook default: ValueError: 'Failed to set custom baud rate (250000): [Errno 25] Not a tty' @ comm.py:_open_serial:3916
Changing monitoring state from "Offline" to "Opening serial connection"
Connecting to port /dev/ttyUSB0, baudrate 250000
Changing monitoring state from "Opening serial connection" to "Error"
Changing monitoring state from "Error" to "Offline after error"

Does OctoWrt work on Creality Box embedded in a CR-10 Smart?

I have a CR-10s, which has a Creality Box built into it. I assume that installing OctoWrt on it is no different from any other Creality Box. But will OctoWrt actually work with the CR-10s? Is there any other functionality important for the CR-10s in that Box?

Steve

Which Ender Firmware is compatible?

Do you have any experiences which Ender firmware versions are really compatible with the OctoWRT?

I´ve installed the latest release of the "Professional Firmware" (https://github.com/mriscoc/Ender3V2S1/releases/tag/20221222).
The firmware has an option to limit the Baudrate to 115k - but not less then that: https://github.com/mriscoc/Ender3V2S1/wiki/Advanced-Settings-menu

It seems that the OctoWRT cannot deal with that somehow. The print gets stuck after printing the half first layer.

I´ve updated OctoWRT to the latest release, tried several USB cables and even used a powerbank to get rid off ESD issues from 230V or a bad adapter. But nothing...

Therefore, key question... which firmware works?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.