Recent content by Jiang

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

  1. J

    ASUS RT-AC68U Auth Method HTTPS Get Chrome NET::ERR_CERT_INVALID

    I have encountered the same problem. On my Edge 110.0.1587.63 (64 bit) It is definitely not because we did not install the certificate correctly since I have used the certificate for years and it is valid util year 2031. It seems that the latest chromium (core of Chrome and Edge) does not...
  2. J

    Entware samba4-server would be killed by stop_samba(int force)

    I followed the suggestions from @dave14305 to start `smbd` and `nmbd` mannually in `/jffs/scripts/service-event-end`. # cat /jffs/scripts/service-event-end if [ -z $(pidof smbd) ] then logger -t "service-event-end" "smbd is dead. Trying to restart." /opt/etc/init.d/S91smb stop sleep...
  3. J

    Entware samba4-server would be killed by stop_samba(int force)

    It seems that I cannot either paste complete content of smb.conf or upload the file to the forum. See the following. [global] # omit global settings above #max protocol = SMB3 min protocol = SMB2 smb ports = 445 139 [nas] comment=My NAS path =...
  4. J

    Chaotic UTC and local time in merlin

    Fixed. Thank you so much for your correction. Portal
  5. J

    Chaotic UTC and local time in merlin

    For the `date` command, the three-letter string of `TZ` is not that important. It is the signed number that controls the time zone. # TZ="ABC-9" date Sat Jun 11 11:04:47 ABC 2022 # TZ="XYZ-9" date Sat Jun 11 11:05:08 XYZ 2022 For consistency and readability of the source code, it should be...
  6. J

    Chaotic UTC and local time in merlin

    I've created a PR #818 to fix this.
  7. J

    Chaotic UTC and local time in merlin

    I think you have already found the key. Please see the following code with my annotation. snprintf(tmpstr, sizeof(tmpstr), "%s", nvram_safe_get("time_zone")); // line 1371 // Suppose that the value of tmpstr is now `JST` nvram_set("time_zone_x", tmpstr); #set value of variable...
  8. J

    Chaotic UTC and local time in merlin

    I found that everything is fine when I set time zone to other than `GMT+09:00` in the web interface. For example, when set it to `Singapore` which is `GMT+08:00` # date Sat Jun 11 08:27:13 GMT 2022 to `Sydney` which is `GMT+10:00` # date Sat Jun 11 10:28:33 UTC 2022
  9. J

    Chaotic UTC and local time in merlin

    That works! And "UTC-9" gives the JST time. # TZ="UTC10" date Fri Jun 10 14:07:42 UTC 2022 # TZ="UTC9" date Fri Jun 10 15:07:51 UTC 2022 # TZ="UTC-9" date Sat Jun 11 09:08:28 UTC 2022
  10. J

    Chaotic UTC and local time in merlin

    Thanks for your praise.
  11. J

    Chaotic UTC and local time in merlin

    It turns out that none of the listed commands works for me.
  12. J

    Chaotic UTC and local time in merlin

    Thanks for your reply @ColinTaylor. But it still not works with `export` # TZ='JST' # export TZ # date Fri Jun 10 23:19:36 UTC 2022
  13. J

    Chaotic UTC and local time in merlin

    # ls -l /etc/localtime ls: /etc/localtime: No such file or directory Oops!
  14. J

    Chaotic UTC and local time in merlin

    Well, things becomes more and more interesting.
  15. J

    Chaotic UTC and local time in merlin

    Router: RT-AC88U Firmware: 386.5_2 I found this little issue when checking spdMerlin's log. AutoBW report - Fri Jun 10 10:12:48 2022 Calculated Download speed (31562 Kbps) does not exceed 10% threshold of existing value (31659 Kbps) Calculated Upload speed (17379 Kbps) does not exceed 10%...
Top