博客

  • nextcloud报certificate is not valid异常

    这是某个app的签名不正确导致的,但是具体哪个app并不知道,以下脚本可以找到出错的app

    #!/bin/bash
    
    for file in /var/www/nextcloud/apps/*
    do
        if test -d file
        then
            app={file##*/}
    
            echo check app
            sudo -u nobody php /var/www/nextcloud/occ integrity:check-appapp
        fi
    done
    

    然后找到有问题的app进行重装,这样就能解决大部分问题,如果还有问题则干脆删除app所在目录的appinfo/signature.json文件。

    Views: 1

  • nextcloud报此实例中的 php-imagick 模块不支持 SVG

    nextcloud报“此实例中的 php-imagick 模块不支持 SVG。为了获得更好的兼容性,建议安装它”
    安装以下包解决:
    apt install libmagickcore-6.q16-6-extra

    Views: 1

  • AutoCAD免费版下载

    • AutoCAD 2022 64bit

      https://pan.hetao.me/s/L8Y5JnAgEqFD6Yi

    • AutoCAD 2023

      https://pan.hetao.me/s/PQyLfZaHkB3fDMp

    • AutoCAD 2024

      https://pan.hetao.me/s/Rxqx73q9GNgqrRR

    • AutoCAD 2025

      https://pan.hetao.me/s/qocGaN8NQ3i4HrM

    AutoCAD 2022版以后不再有32位版本。
    下载只支持IPv6,不支持IPv4下载

    AutoCAD哪果没有正确卸载的话再安装别的版本会无法正常运行,可以用 https://rj818.com/ 提供的AutoBox工具箱来清理残余信息,用这个工具需要充值10块钱。

    Views: 4

  • Windows本地部署deepseek

    1. 下载安装oolama

    https://ollama.com/download/OllamaSetup.exe

    1. 设置环境变量(优化性能)

      set OLLAMA_FLASH_ATTENTION=1

    2. 拉取模型

      ollama pull deepseek-r1:7b

    3. 运行模型

      ollama run deepseek-r1:7b

    4. 运行web前端

      docker run -d -p 3000:8080 --add-host=host.docker.internal:host-gateway -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:main

    查看模型列表
    https://ollama.com/search

    Views: 1

  • go语言fmt占位符

    • 通用

      %v the value in a default format
      when printing structs, the plus flag (%+v) adds field names
      %#v a Go-syntax representation of the value
      (floating-point infinities and NaNs print as ±Inf and NaN)
      %T a Go-syntax representation of the type of the value
      %% a literal percent sign; consumes no value

    • 布尔值

      %t the word true or false

    • 整型

      %b base 2
      %c the character represented by the corresponding Unicode code point
      %d base 10
      %o base 8
      %O base 8 with 0o prefix
      %q a single-quoted character literal safely escaped with Go syntax.
      %x base 16, with lower-case letters for a-f
      %X base 16, with upper-case letters for A-F
      %U Unicode format: U+1234; same as “U+%04X”

    • 浮点型

      %b decimalless scientific notation with exponent a power of two,
      in the manner of strconv.FormatFloat with the ‘b’ format,
      e.g. -123456p-78
      %e scientific notation, e.g. -1.234456e+78
      %E scientific notation, e.g. -1.234456E+78
      %f decimal point but no exponent, e.g. 123.456
      %F synonym for %f
      %g %e for large exponents, %f otherwise. Precision is discussed below.
      %G %E for large exponents, %F otherwise
      %x hexadecimal notation (with decimal power of two exponent), e.g. -0x1.23abcp+20
      %X upper-case hexadecimal notation, e.g. -0X1.23ABCP+20

      The exponent is always a decimal integer.
      For formats other than %b the exponent is at least two digits.

    • 字符串

      %s the uninterpreted bytes of the string or slice
      %q a double-quoted string safely escaped with Go syntax
      %x base 16, lower-case, two characters per byte
      %X base 16, upper-case, two characters per byte

    • 切片

      %p address of 0th element in base 16 notation, with leading 0x

    • 指针

      %p base 16 notation, with leading 0x
      The %b, %d, %o, %x and %X verbs also work with pointers,
      formatting the value exactly as if it were an integer.

    %v格式在不同类型下等效于:
    bool: %t
    int, int8 etc.: %d
    uint, uint8 etc.: %d, %#x if printed with %#v
    float32, complex64, etc: %g
    string: %s
    chan: %p
    pointer: %p

    对于复合对象,使用以下规则以递归方式打印元素

    struct:             {field0 field1 ...}
    array, slice:       [elem0 elem1 ...]
    maps:               map[key1:value1 key2:value2 ...]
    pointer to above:   &{}, &[], &map[]
    

    宽度由紧接在动词前面的可选十进制数指定。如果不存在,则宽度为表示值所需的任何值。精度由(可选)宽度后面的句点和十进制数指定。如果没有句点,则使用默认精度。没有后续数字的句点指定精度为零。示例:
    %f default width, default precision
    %9f width 9, default precision
    %.2f default width, precision 2
    %9.2f width 9, precision 2
    %9.f width 9, precision 0
    对于字符串,宽度的单位是unicode点位而不是字节。

    其它占位符

    '+' always print a sign for numeric values;
        guarantee ASCII-only output for %q (%+q)
    '-' pad with spaces on the right rather than the left (left-justify the field)
    '#' alternate format: add leading 0b for binary (%#b), 0 for octal (%#o),
        0x or 0X for hex (%#x or %#X); suppress 0x for %p (%#p);
        for %q, print a raw (backquoted) string if [strconv.CanBackquote]
        returns true;
        always print a decimal point for %e, %E, %f, %F, %g and %G;
        do not remove trailing zeros for %g and %G;
        write e.g. U+0078 'x' if the character is printable for %U (%#U)
    ' ' (space) leave a space for elided sign in numbers (% d);
        put spaces between bytes printing strings or slices in hex (% x, % X)
    '0' pad with leading zeros rather than spaces;
        for numbers, this moves the padding after the sign
    

    参考:
    https://pkg.go.dev/fmt

    Views: 0

  • go配置仓库镜像

    • 七牛云
    go env -w GO111MODULE=on
    go env -w GOPROXY=https://goproxy.cn,direct
    go env -w "GOSUMDB=sum.golang.org https://goproxy.cn/sumdb/sum.golang.org"
    
    • nexus

    添加go proxy仓库
    名称为goproxy.cn,remote为https://proxy.golang.org/
    添加go group仓库
    name为go,添加goproxy.cn为成员
    添加raw仓库
    name为golang-sum-proxy,remote为https://sum.golang.org/
    然后客户端配置

    go env -w GO111MODULE=on
    go env -w GOPROXY=https://mirrors.hetao.me/go,direct
    go env -w "GOSUMDB=sum.golang.org https://mirrors.hetao.me/golang-sum-proxy"
    

    Views: 0

  • 3GPP R19特性

    性能

    • UE触发beam reporting

      UE-initiated beam reporting enhancements to allow the UE to trigger beam reporting rather than waiting for the gNB to trigger.
      用于降低beam reporting的开销和延迟

    • channel state information (CSI) reporting的端口数从32增加到128

    • non-ideal synchronization 和 backhaul 场景下的 inter-site CJT

      non-ideal synchronization指的是接收和发送使用不同的基站,backhaul指的是无线回程

    • SBFD

      带内全双工,在TDD中引入SBFD可以降低延迟,改善覆盖范围,增加容量。SBFD的难点主要是干扰问题。

    • intra-CU layer 1(L1)/layer 2 (L2)-triggered mobility (LTM)

      LTM可以减少漫游的延迟和中断时间,但是在R18中公支持CU内的LTM,R19中引入了跨CU的LTM

    拓朴

    • 5G femtocell

      一个Wifi路由器大小的设备,插到光猫上,可以中继5G信号

    • multi-hop sidelink relay

      R18仅支持single-hop UE-to-network sidelink relay,single-hop UE-to-network sidelink relay,但是R19可以多个UE串起来中继来扩展传输距离

    • additional reference satellite payload parameters

      用于增强下行覆盖

    • Regenerative payload with full gNodeB

      5G system functions onboard the NTN platform.
      我的理解是NR-NTN可以作为gNodeB(全功能的基站)使用,在R17和R18中卫星只能作为中继站。使用Regenerative payload会增加卫星的成本。

    • Improved uplink capacity and throughput

    • NR-NTN支持RedCap和eRedCap

    • store-and-forward satellite operation with regenerative payload for IoT NTN
      为IoT NTN提供卫星转发能力,这样不需要地面站也能工作

    节能

    • LP-WUR

      低功耗唤醒无线电,在以前使用的是DRX机制定期唤醒radio,LP-WUR则使用一个低功耗无线电来接收LP-WUS信号来唤醒主radio。RRM测量也从主radio卸载到LP-WUR.当UE处于连接模式时LP-WUR也可以触发主radio去监听physical downlink control channel (PDCCH)
      LP-WUR主要用于物联网设备

    • On-demand SSB transmission for devices in CONNECTED MODE with intra-/inter-band CA

      Specify triggering based on device uplink wake-up signal (WUS), cell on/off indication via backhaul, Scell activation/deactivation signaling

    • On-demand SIB1 transmission for devices in IDLE / INACTIVE mode

      Study triggering based on uplink WUS
      Study WUS configuration provisioning to device
      Study information exchange between gNodeBs for the configuration of WUS

    • adaptation of common signal/channel transmissions

      Specify adaptation of PRACH and SSB in time domain (e.g., periodicity)
      Study adaptation of PRACH in spatial domain (e.g., non-uniform resources)
      Specify adaptation of paging occasions

    以上3个特定主要用于节省基站的能耗,基本思路是使用按需的广播信号而不是周期发送,是对R18中Study on network energy savings for NR工作的延续。

    • 6G

      R19研究6G用例和需求,R20进行6G技术研究

    R20功能预测

    • 能源效率
    • AI/ML
    • MIMO增强
    • 3TR上行增强
    • NTN增强
    • XR和沉浸式通信体验(基于ATSSS和AI)
    • 通感一体化
    • 6G相关
      R20是5G通往6G的桥梁,6G可能是R20的主要工作

    参考:
    https://arxiv.org/pdf/2312.15174
    https://www.qualcomm.com/content/dam/qcomm-martech/dm-assets/documents/5G-A-Rel-19-Presentation.pdf

    Views: 0

  • securefx中文文件名乱码

    打开以下目录

    %userprofile%\appdata\roaming\vandyke\config\Sessions

    找到对应会话的配配置文件

    在配置文件中找到Filenames Always Use UTF8,然后修改其值为00000001

    Views: 11

  • 国内主要IPv6前缀

    • 2409开头的

      2409:6000::/20 吉利 2020-10-22
      2409:8000::/20 中国移动 2011-08-23
      2409:2000::/21 华为 2020-07-20

    • 2408开头的

      2408:4000::/22 阿里巴巴 2015-12-21
      2408:8000::/22 中国联通 2011-07-07
      2408:8400::/22 中国联通 2012-05-31
      2408:8800::/21 中国联通 2012-05-31
      这3个段是分3次申请的,可以合并为2408:8000::/20

    • 240a开头的

      240a:2000::/24 北京光环新网 2020-11-03
      240a:4000::/21 广电 2017-12-29
      240a:6000::/24 水利部 2021-01-14
      240a:8000::/21 铁通 2013-01-30 现为中国移动所有
      240a:a000::/20 未来互联网试验设施,简称FITI 2021-04-01
      240a:c000::/20 中国石油 2018-08-20

    • 240e开头的

      240e::/24 中国电信 2010-05-20
      240e:100::/24 中国电信 2011-12-14
      240e:200::/23 中国电信 2011-12-14
      240e:400::/22 中国电信 2011-12-14
      240e:800::/21 中国电信 2011-12-14
      240e:1000::/20 中国电信 2018-12-27
      240e:2000::/19 中国电信 2018-12-27
      以上几个段聚合为240e::/18

    • 其它

      240c:c000::/20 教育网 CERNET2 2019-01-29 AS23910
      240b:6000::/20 字节跳动 2022-10-20
      240b:2000::/22 国家石油天然气管网集团有限公司 2021-11-24
      240b:8000::/21 电子政务网 2013-08-16
      240c:8000::/21 中国石油 2014-09-05
      240d:4000::/21 赛尔网络下一代互联网商用网 2019-02-03 AS133111,其实就是教育网推出的商业网络
      240c:4000::/22 百度 2018-11-13
      240d:8000::/24 北京国科云计算技术有限公司 2015-02-05
      240f:4000::/24 腾讯 2019-07-09
      240f:8000::/24 AMAZON-CN 2015-04-27
      240f:c000::/24 京东 2019-09-17
      2001:4510::/29 长城互联网 2005-08-15
      240c:c000::/20 CERNET2 2019-01-29
      2001:da8::/32 CNGI-CERNET2 2003-11-10
      2001:250::/32 CERNET2主干网 2000-04-26 – 2002-07-26

    • APNIC持有的所有IPv6前缀

      2001:B000::/20
      2001:4400::/23
      2001:0200:/23
      2001:0C00:/23
      2001:0E00:/23
      2001:07FA:/32
      2001:8000::/23
      2001:8200::/23
      2001:8400::/23
      2001:8600::/23
      2001:8800::/23
      2001:8A00::/23
      2001:8C00::/23
      2001:8E00::/23
      2001:9000::/23
      2001:9200::/23
      2001:9400::/23
      2001:9600::/23
      2001:9800::/23
      2001:9A00::/23
      2001:9C00::/23
      2001:9E00::/23
      2001:A000::/23
      2001:A200::/23
      2001:A400::/23
      2001:A600::/23
      2001:A800::/23
      2001:AA00::/23
      2001:AC00::/23
      2001:AE00::/23
      2400:0000::/12
      由此可见亚太地址的前缀主要是2400开头的,少部分是2001开头的,因为2001段的地址数太少,所以使用2001前缀的主要是企业和一些早期的实验网。
      参考:
      https://stat.ripe.net/app/launchpad
      https://ispip.clang.cn/all_cn_ipv6.html
      https://blog.csdn.net/jayjaydream/article/details/123528274

    Views: 23

  • ppa.launchpad.net下载速度慢

    /etc/apt/sources.list.d下找到对应ppa源的配置,把其中的ppa.launchpad.net替换为launchpad.proxy.ustclug.org

    Views: 0