@顾真牛 在规划部署。
Posts made by jack_admin
-
RE: PC 端 ADB 连接到 Cool Pi 4B rknn_server失败
@xingzhan2012 没配置该服务,另外默认otg端口也是主机host模式。如果走网络adb,起个服务
-
RE: 升级到 ubuntu 22.04
@macthree 建议全新安装会更好,0303版本是纯净版系统,您也可以下载我们github ubuntu仓库构建纯净版本镜像
-
Welcome to OpenEmbedded
Welcome to OpenEmbedded, the build framework for embedded Linux. OpenEmbedded offers a best-in-class cross-compile environment. It allows developers to create a complete Linux Distribution for embedded systems. Some of the OpenEmbedded advantages include:
-
adopted as the build system for the Yocto Project in March 2011.
-
support for many hardware architectures
-
multiple releases for those architectures
-
tools for speeding up the process of recreating the base after changes have been made
-
easy to customize
-
runs on any Linux distribution
-
cross-compiles 1000's of packages including GTK+, Qt, the X Windows system, Mono, Java, and about anything else you might ever need
https://www.openembedded.org/wiki/Main_Page
https://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines
-
-
RE: coolpi 4b python3 gpio operation compatable with raspberry pi
@Macs said in coolpi 4b python3 gpio operation compatable with raspberry pi:
Does the coolpi have a DPI mode for the gpio like the RPI4?
WiringPi ?
-
RE: 如何关闭小核,只保留大核运行
@edwardzhou
一种方法是通过改变cpu亲和性,绑定运行中的线程[coolpi@localhost ~]$ taskset -h Usage: taskset [options] [mask | cpu-list] [pid|cmd [args...]] Show or change the CPU affinity of a process. Options: -a, --all-tasks operate on all the tasks (threads) for a given pid -p, --pid operate on existing given pid -c, --cpu-list display and specify cpus in list format -h, --help display this help -V, --version display version The default behavior is to run a new command: taskset 03 sshd -b 1024 You can retrieve the mask of an existing task: taskset -p 700 Or set it: taskset -p 03 700 List format uses a comma-separated list instead of a mask: taskset -pc 0,3,7-11 700 Ranges in list format can take a stride argument: e.g. 0-31:2 is equivalent to mask 0x55555555 For more details see taskset(1). [coolpi@localhost ~]$
-
RE: 如何关闭小核,只保留大核运行
切换到root权限,参考如下操作,动态关闭4个核
echo 0 > /sys/devices/system/cpu/cpu0/online echo 0 > /sys/devices/system/cpu/cpu5/online echo 0 > /sys/devices/system/cpu/cpu6/online echo 0 > /sys/devices/system/cpu/cpu7/online
-
RE: 20230306-ubuntu-22.04-preinstalled 新建的用户无法启动firefox及其他程序,也不能登出.
@edwardzhou 问题已复现。新建用户在logout之后的t登录界面(输密码窗口)位置,点击屏幕右下角,选择Ubuntu on Xorg,可以正常切换用户,firefox也能运行
-
RE: mini DP 诱骗器无效
5寸电容触摸屏切换操作参考,使用ubuntu 22.04 20230306版本
coolpi@coolpi:~/Desktop$ cat /boot/firmware/ Image cmdline.txt extlinux/ modules.tar.gz rk3588s-cp4.dtb System Volume Information/ config.txt initrd.img rk3588s-cp4-dsi.dtb vmlinuz coolpi@coolpi:~/Desktop$ cat /boot/firmware/extlinux/extlinux.conf default Linux coolpi label Linux coolpi kernel /Image initrd /initrd.img fdt /rk3588s-cp4-dsi.dtb append root=LABEL=writable rw rootfstype=ext4 console=ttyS0,115200n81 quiet splash plymouth.ignore-serial-consoles vt.global_cursor_default=1 irqchip.gicv3_pseudo_nmi=0 net.ifnames=0 coolpi@coolpi:~/Desktop$