21
TCE Bugs / Re: blueman.tcz needs specific python3 version
« Last post by Juanito on February 13, 2026, 02:36:39 PM »That’s not a bad idea - I’ll have a look in the next couple of days.

On ARM64, they simply don’t exist."
$ blueman-applet &
eileen@blaptop:~$ Traceback (most recent call last):
File "/usr/local/bin/blueman-applet", line 15, in <module>
from blueman.Functions import create_logger, create_parser, set_proc_title
ModuleNotFoundError: No module named 'blueman'
$ tce-status -i | grep python
python3.14
python3.9
python3.9-olefile
python3.9-pillow
$ sudo ln -sf /usr/local/bin/python3.9 /usr/local/bin/python3
$ blueman-applet &
-> now it workstc@box:~$ ls -l /var/log
total 208
-rw-r--r-- 1 root staff 58837 Feb 13 10:09 Xorg.0.log
-rw-r--r-- 1 root root 0 Feb 13 10:09 autologin
-rw-r--r-- 1 root root 147372 Feb 13 10:09 messages
-rw-rw-r-- 1 root staff 1536 Feb 13 10:09 wtmptc@box:~$ tce-load -i nginx
nginx.tcz: OKtc@box:~$ ls -l /var/log
total 212
-rw-r--r-- 1 root staff 58837 Feb 13 10:09 Xorg.0.log
-rw-r--r-- 1 root root 0 Feb 13 10:09 autologin
-rw-r--r-- 1 root root 148146 Feb 13 10:12 messages
drwxr-xr-x 2 root root 40 Dec 12 02:09 nginx/
-rw-rw-r-- 1 root staff 1536 Feb 13 10:09 wtmptc@box:~$ ls -l /var/log/nginx
total 0tc@box:~$ nginx -V
nginx version: nginx/1.29.4
built by gcc 14.2.0 (GCC)
built with OpenSSL 3.5.2 5 Aug 2025
TLS SNI support enabled
configure arguments: --prefix=/usr/local --sbin-path=/usr/local/sbin/nginx --modules-path=/usr/local/lib/nginx/modules --conf-path=/usr/local/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --pid-path=/var/run/nginx.pid --lock-path=/tmp/nginx/lock --user=nobody --group=nogroup --with-threads --with-file-aio --with-compat --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-http_addition_module --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_auth_request_module --with-http_random_index_module --with-http_secure_link_module --with-http_degradation_module --with-http_slice_module --with-http_stub_status_module --http-log-path=/var/log/nginx --http-client-body-temp-path=/tmp/nginx/client --http-proxy-temp-path=/tmp/nginx/proxy --http-fastcgi-temp-path=/tmp/nginx/fastcgi --http-uwsgi-temp-path=/tmp/nginx/uwsgi --http-scgi-temp-path=/tmp/nginx/scgi --with-mail=dynamic --with-mail_ssl_module --with-stream=dynamic --with-stream_ssl_module --with-stream_realip_module --with-stream_ssl_preread_moduletc@box:~$ sudo cp /usr/local/etc/nginx/original/*.default /usr/local/etc/nginx/tc@box:~$ for F in /usr/local/etc/nginx/*.default; do sudo mv -- "$F" "${F%.default}"; donetc@box:~$ sudo nginx
nginx: [emerg] open() "/var/log/nginx" failed (21: Is a directory)tc@box:~$ ls -l /var/log/nginx
total 4
-rw-r--r-- 1 root root 91 Feb 13 10:33 error.log
tc@box:~$ cat /var/log/nginx/error.log
2026/02/13 10:33:54 [emerg] 3920#3920: open() "/var/log/nginx" failed (21: Is a directory)