V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
gpnu
V2EX  ›  macOS

macos26 beta6 刚升级完有什么变化吗?

  •  
  •   gpnu · 26 天前 · 2778 次点击

    这次更新好快啊!

    23 条回复    2025-08-12 21:41:49 +08:00
    hoogle
        1
    hoogle  
       26 天前
    beta 5 遇到个锁屏后解锁变黑的 bug ,应该算很严重。。等会就升。。
    goopoh
        2
    goopoh  
       26 天前
    聚焦搜素内存溢出的 BUG 没有修复,刚升级完直接内存拉爆
    gpnu
        3
    gpnu  
    OP
       26 天前
    @goopoh 怎么我没有碰到你的这个问题
    qijiefan
        4
    qijiefan  
       26 天前
    @goopoh 我 M1pro 没有遇到你这个问题
    Mregret
        5
    Mregret  
       26 天前 via iPhone
    iPad 通用版软件卸载了再没法再安装依旧没修
    goopoh
        6
    goopoh  
       26 天前
    @goopoh 这个 BUG 应该是某种情况才会出现,上一个版本也不是全部人都有这个 BUG
    merpyzf
        7
    merpyzf  
       26 天前
    应用打开的动画变快了,感觉有点生硬。
    shwintan
        8
    shwintan  
       26 天前
    你们截图会有一种屏幕缩小又放大的奇怪 bug 吗
    HB9527
        9
    HB9527  
       26 天前
    升级 macOS 26 后,APP STORE 无法升级 Things 3 ,删除 Things 3 再下载也不行,:(
    snsn
        10
    snsn  
       26 天前 via iPhone
    这个版本 太丝滑了 特别 iOS26 动画也有变化 丝滑的不像话
    Sh15
        11
    Sh15  
    PRO
       26 天前   ❤️ 2
    爽,上一版本是最差的,卡死了,现在很流畅
    zzsong
        12
    zzsong  
       26 天前
    @goopoh #2 刚看了下,聚焦搜索吃了我 52G 内存。
    tmac6740
        13
    tmac6740  
       26 天前 via iPhone
    iOS 的切换动画有点太快了
    atone
        14
    atone  
       26 天前
    系统的拼音输入法的图标圆角调整了
    Crump
        15
    Crump  
       26 天前

    聚焦问题,可以屏蔽一些不要的文件目录,以下仅供参考,自行增删
    ```
    # 屏蔽常见碎文件目录
    sudo mdutil -i off /private/var/folders
    sudo mdutil -i off /private/var/tmp
    sudo mdutil -i off /private/var/log
    sudo mdutil -i off /private/tmp
    sudo mdutil -i off /Library/Caches
    sudo mdutil -i off /System/Library/Caches
    sudo mdutil -i off ~/Library/Caches
    sudo mdutil -i off ~/Library/Logs
    sudo mdutil -i off ~/Library/Safari/Favicon\ Cache
    sudo mdutil -i off ~/Library/Developer/Xcode/DerivedData
    sudo mdutil -i off /Volumes
    sudo mdutil -i off /.Spotlight-V100
    sudo mdutil -i off /.fseventsd
    sudo mdutil -i off /.TemporaryItems
    sudo mdutil -i off ~/VirtualBox\ VMs
    sudo mdutil -i off ~/Parallels
    sudo mdutil -i off ~/Library/Containers
    sudo mdutil -i off ~/Library/Application\ Support/Docker
    sudo mdutil -i off ~/Library/CloudStorage
    sudo mdutil -i off ~/Library/Application\ Support/CloudDocs
    sudo mdutil -i off ~/Downloads
    ```
    18k
        16
    18k  
       26 天前
    版本 26.0 Beta 版(25A5327h),M1 相对不卡了,上一版真的一卡一卡的
    EDD
        17
    EDD  
       26 天前
    从上一个 Beta 就开始了,iPhone 镜像无法连接到 Mac ,始终显示弹窗,
    确认设置都是没有问题的,搞不懂哪里的问题 🤷‍♂️
    --
    Unable to Connect to iPhone
    To set up iPhone Mirroring, make sure your iPhone is nearthis Mac, powered on, running iOS 18 or later, withBluetooth and Wi-Fi enabled, and signed in with the sameiCloud account as this Mac.
    PainAndLove
        18
    PainAndLove  
       26 天前
    @Crump #15 mdutil 支持目录级别的过滤吗? 15.6 提示 Error: invalid operation.
    Error: unknown indexing state.
    Crump
        19
    Crump  
       26 天前
    @PainAndLove 不行,自己写个脚本处理好了

    ```
    #!/bin/bash
    EXCLUDE_PATHS=(
    "/private/var/folders"
    )

    echo "开始批量屏蔽 Spotlight 索引..."

    for path in "${EXCLUDE_PATHS[@]}"; do
    if [ -d "$path" ]; then
    echo "关闭索引: $path"
    sudo mdutil -i off "$path" >/dev/null 2>&1
    sudo mdutil -E "$path" >/dev/null 2>&1 # 删除已有索引
    else
    echo "跳过(目录不存在): $path"
    fi
    done

    echo "已完成所有目录的索引关闭"
    ```
    pricky777
        20
    pricky777  
       26 天前
    beta5 卡到不行,现在好很多了,M2 Pro
    rocky2024
        21
    rocky2024  
       26 天前
    @zzsong #12 看我历史的帖子, 我直接禁用聚焦搜索了, 内存占用最高 159M



    Beta 阶段我就 不使用 聚焦了, 没有新意
    gpnu
        22
    gpnu  
    OP
       26 天前
    为什么你们都这么多问题
    yooomu
        23
    yooomu  
       26 天前
    spotlight 内存泄露,重建索引就会恢复正常。sudo mdutil -X /; sudo mdutil -X /System/Volumes/Preboot; sudo mdutil -X /System/Volumes/Data 执行完重启就行
    关于   ·   帮助文档   ·   自助推广系统   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   910 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 24ms · UTC 19:39 · PVG 03:39 · LAX 12:39 · JFK 15:39
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.