• Recent
    • Docs
    • Github
    • 百度网盘
    • Onedrive
    • Official
    • Shop
    • Register
    • Login
    1. Cool Pi For You
    2. 大法师
    3. Posts
    • Profile
    • Following 2
    • Followers 10
    • Topics 86
    • Posts 401
    • Groups 2

    Posts

    Recent Best Controversial
    • RE: CM5 如何升级内核?

      @asdf
      一般的ARM开发板没有并入主线内核,不在ubuntu官方维护范围,所以更新没有变化。

      posted in Pi CM5
      大法师大
      大法师
    • RE: Coolpi 4b bootloader upgrade

      @JohnConnor
      使用最新版本load程序

      posted in News
      大法师大
      大法师
    • RE: 反映问题

      @wuming
      串口信号和4b一样位置
      5ee28065-fc6c-48fe-b1d0-a489be8fdd5b-1683883403593.png

      posted in Pi CM5
      大法师大
      大法师
    • RE: 反映问题

      @wuming 有没有串口工具,接上看下串口信息输出

      posted in Pi CM5
      大法师大
      大法师
    • RE: 4B 内核开发环境编译RTL88XX网卡驱动

      @jugg

      提供insmod ko之后的完整dmesg信息

      posted in Ubuntu
      大法师大
      大法师
    • RE: 4B 内核开发环境编译RTL88XX网卡驱动

      @jugg said in 4B 内核开发环境编译RTL88XX网卡驱动:

      @大法师
      打开就行
      但是不是应该只有2个吗
      现在怎么有3个wlan
      40dcee7f-a60b-4ae9-9146-d4d88de55e00-image.png

      nmcli查看

      板载的wifi模组支持ap、sta共存,占两个节点

      posted in Ubuntu
      大法师大
      大法师
    • RE: 4B 内核开发环境编译RTL88XX网卡驱动

      @jugg said in 4B 内核开发环境编译RTL88XX网卡驱动:

      @大法师
      驱动编译完 并且已经安装好
      130d39ce-3260-479d-be6d-1a65bff3b23b-image.png

      01a59804-69f1-4e22-a65c-728c06bcf621-image.png

      但是还是识别不到无线网卡

      dmesg 查看网卡固件是否加载正常

      posted in Ubuntu
      大法师大
      大法师
    • RE: 4B 内核开发环境编译RTL88XX网卡驱动

      @jugg said in 4B 内核开发环境:

      @george
      https://github.com/kimocoder/rtw88-usb

      cd rtw88-usb
      
      git checkout kernel-5.10
      
      make KERNELDIR=coolpi_kernel_src_path
      
      posted in Ubuntu
      大法师大
      大法师
    • RE: 4B 内核开发环境编译RTL88XX网卡驱动

      @jugg
      驱动版本与内核版本兼容性错误

      posted in Ubuntu
      大法师大
      大法师
    • RE: Ubuntu23.04 for CoolPi

      @wuming said in Ubuntu23.04 for CoolPi:

      @大法师 give up.等u盘刷机版出来吧。

      位置没错吧
      43c44fbd-ceeb-4d46-bf2c-aa66583fd40c-1683629257203.png

      posted in Pi CM5
      大法师大
      大法师
    • RE: Ubuntu23.04 for CoolPi

      @wuming
      不着急,cpu加载也要时间。正常操作就好

      posted in Pi CM5
      大法师大
      大法师
    • RE: 每个开发者都需要的私有化git服务器

      nice board for server!

      4b local gitlab.png

      posted in Maker
      大法师大
      大法师
    • RE: Ubuntu23.04 for CoolPi

      @wuming
      如果是关机状态:
      上电开机,短按3~5次pwr按键

      如果是开机状态:
      按一次reset键,使系统复位,再短按3~5次pwr按键

      posted in Pi CM5
      大法师大
      大法师
    • RE: 安装位置问题

      @qys2022
      相同的

      wiki有结构图纸参考
      https://wiki.cool-pi.com/en/home

      posted in Pi 4B
      大法师大
      大法师
    • RE: Ubuntu23.04 for CoolPi

      @wuming

      CM5主板按一次reset键复位,右侧pwr键按3~5次,进入UMS模式;接双头TYPE-A USB线连接电脑与USB OTG端口(U3 蓝色上层),电脑打开etcher烧录软件,选择img镜像进行烧录。

      posted in Pi CM5
      大法师大
      大法师
    • How to add swap file with cool pi 4b

      Swap is a space on a disk that is used when the amount of physical RAM memory is full. When a Linux system runs out of RAM, inactive pages are moved from the RAM to the swap space.

      Swap space can take the form of either a dedicated swap partition or a swap file. In most cases, when running Linux on a virtual machine, a swap partition is not present, so the only option is to create a swap file.

      Example Add 8GB swap memory

      sudo dd if=/dev/zero of=/swapfile bs=1M count=8096
      
      sudo chmod 0600 /swapfile
      
      sudo mkswap /swapfile 
      
      sudo swapon /swapfile
      
      echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab
      
      

      sudo mount -a or reboot

      ubuntu@ubuntu:~$ free -h
                    total        used        free      shared  buff/cache   available
      Mem:          3.8Gi       3.2Gi       133Mi       110Mi       458Mi       443Mi
      Swap:         7.9Gi       1.0Mi       7.9Gi
      ubuntu@ubuntu:~$
      

      How to adjust the swappiness value

      refer info

      posted in Maker
      大法师大
      大法师
    • RE: ubuntu 录屏问题

      @jugg said in ubuntu 录屏问题:

      我用ssh 使用
      ffmpeg -f x11grab -i :1.0 o.mp4 录屏能录
      但是在系统里面
      使用上面的命令 录出来的是黑屏
      而且这个屏幕编号是怎么得出的
      试了:0.0不行
      试了:10.0 卡住

      举例加参数 -f mpeg 或 -f flv

      posted in Pi 4B
      大法师大
      大法师
    • RE: ubuntu 录屏问题

      @jugg 登陆选择gnome xorg试试

      posted in Pi 4B
      大法师大
      大法师
    • RE: ubuntu 录屏问题

      @jugg

      -i Screen 0 is selected (run xrandr to view the available connected screens).

      xdpyinfo 查看编号

      posted in Pi 4B
      大法师大
      大法师
    • RE: ubuntu 录屏问题

      @jugg
      https://trac.ffmpeg.org/wiki/Capture/Desktop

      posted in Pi 4B
      大法师大
      大法师
    • 1 / 1