Mac系统的使用


早就想好了要记录一篇Mac系统使用的文章,但迟迟没有开始,草稿躺在那里都快2个月了(刚看了一下日历发现——从入职那天起我到新公司刚好整整2个月,一切都是那么巧合)。

因为换公司的缘故,现在办公用的是Mac OS(Yosemite)系统,从刚开始的不太习惯,到现在的非常习惯以至于不太习惯Windows系统了。这期间整理了一些Mac系统的使用方法和技巧,在此记录一下,做个总结。

=Start=

=首先=
  1. 查看系统信息 #左上角苹果标志-关于本机
  2. 学会锁屏 #系统偏好设置-安全与隐私 && 系统偏好设置-桌面与屏幕保护程序-屏幕保护程序-触发角
  3. 软件安装 #强烈推荐先安装Homebrew(cask)之后再用它来安装别的软件
  4. 系统/软件的快捷键 #可自定义
  5. 系统偏好设置
=常用软件列表=
  • Xcode
  • Homebrew(cask)
  • iTerm-2
  • Zsh(oh-my-zsh)
  • Alfred
  • Chrome
  • SublimeText2 / Vim
  • PyCharm
  • Dash
  • Mou
  • The Unarchiver
  • VLC
  • 百度拼音输入法 for Mac
  • =
  • Java / Python / IPython / Ruby / Nodejs / PHP / Perl / Golang / Git / MySQL / Postgresql / Redis / MongoDB / Memcache
  • Tunnelblick
  • =
  • Xmind
=常用快捷键=
  • 「ctrl + space」获取「spotlight」,在其中,搜索所有你想要的东西:应用、文件、单词
  • 「alt + space」获取「Alfred」
  • 「command + space」输入源切换
  • 「command + k」Terminal清屏快捷键(clear没鸟用)

http://www.nooidea.com/2011/01/mac-os-x-keyboard-shortcuts.html

=

系统偏好设置 – 键盘 – 修饰键

=额外的技巧=
Mac Tips
Mac Dev Setup
Mac Setup/Tips

=EOF=

, ,

《“Mac系统的使用”》 有 36 条评论

  1. 在Mac上校验文件的哈希值
    `
    MD5值:md5 /path/to/file
    SHA1值:shasum /path/to/file
    `

  2. 在Mac上用Homebrew安装VirtualBox虚拟机
    `
    brew search virtualbox
    brew info Caskroom/cask/virtualbox
    brew info virtualbox
    brew cask info virtualbox
    brew cask install virtualbox
    `

  3. 重装 Mac 系统 #nice & latest
    http://superdanny.link/2017/02/05/Reinstall-the-MacOS/

    Mac重装记录
    http://blog.devtang.com/2014/04/12/install-mavericks-note/

    通过 U 盘启动重装 macOS 系统
    http://www.mayanlong.com/archives/2016/315.html
    `
    恢复MacBook Pro出厂设置
    这个方法会清除掉计算机存储的所有数据。所以备份数据后再进行重置,否则你将遗失所有数据。

    重新安装 macOS 不会抹掉您的信息。【重要事项】若要重新安装 macOS,您的电脑必须接入互联网。
    `

  4. 重装macOS
    http://blog.ykqmain.com/mac/

    Mac 系统的安装
    https://github.com/pubyun/macdev/blob/master/install.md

    MAC抹盘重装记
    https://www.binss.me/blog/reinstall-the-system-of-my-mac/

    苹果电脑Mac怎么恢复出厂系统
    http://www.xitongcheng.com/jiaocheng/xtazjc_article_16403.html

    OS X 系统如何重装?
    https://www.zhihu.com/question/21454213

    简单制作 macOS Sierra 正式版U盘USB启动安装盘方法教程 (全新安装 Mac 系统)
    http://www.iplaysoft.com/macos-usb-install-drive.html

  5. macOS用户15个基本Safari技巧汇总
    https://www.sysgeek.cn/macos-15-safari-tricks/
    `
    1.画中画
    2.自定义工具栏
    3.搜索标签
    4.关闭弹出通知窗口
    5.固定标签页
    6.静音标签页
    7.启用状态栏URL预览
    8.自定义个人收藏屏
    9.导出为PDF
    10.使用AirDrop分享页面
    11.使用Handoff更好地进行浏览
    12.阅读器视图
    13.使用iCloud选项卡
    14.快速搜索不同网站
    15.使用Ghostery阻止不需要的脚本
    `

  6. Mac下更换Homebrew的更新源为国内加速镜像
    https://lvtao.net/tool/2117.html
    `
    Homebrew的更新源由三部分组成:本体(brew.git)、核心(homebrew-core.git)以及二进制预编译包(homebrew-bottles)

    # 替换brew.git:
    $ cd “$(brew –repo)”
    # 中国科大:
    $ git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
    # 清华大学:
    $ git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git

    # 替换homebrew-core.git:
    $ cd “$(brew –repo)/Library/Taps/homebrew/homebrew-core”
    # 中国科大:
    $ git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
    # 清华大学:
    $ git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git

    # 替换homebrew-bottles:
    # 中国科大:
    $ echo ‘export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles’ >> ~/.bash_profile
    $ source ~/.bash_profile
    # 清华大学:
    $ echo ‘export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles’ >> ~/.bash_profile
    $ source ~/.bash_profile

    # 应用生效:
    $ brew update
    以上在中国科大和清华大学任选其一即可,在使用其他源的时候,最好先尝试访问其链接看看是否健在,并且因为历史原因,最初的brew.git是叫homebrew.git的,而现在部分更新源早已随官方更名,所以切记要验证。

    # 诊断Homebrew的问题:
    $ brew doctor

    # 重置brew.git设置:
    $ cd “$(brew –repo)”
    $ git fetch
    $ git reset –hard origin/master

    # homebrew-core.git同理:
    $ cd “$(brew –repo)/Library/Taps/homebrew/homebrew-core”
    $ git fetch
    $ git reset –hard origin/master

    # 应用生效:
    $ brew update
    重置更新源

    # 重置brew.git:
    $ cd “$(brew –repo)”
    $ git remote set-url origin https://github.com/Homebrew/brew.git

    # 重置homebrew-core.git:
    $ cd “$(brew –repo)/Library/Taps/homebrew/homebrew-core”
    $ git remote set-url origin https://github.com/Homebrew/homebrew-core.git
    `

  7. Alfred神器使用手册
    http://louiszhai.github.io/2018/05/31/alfred/
    `
    如何安装alfred

    一个例子说明为什么要用alfred

    alfred能做什么?
    1.应用搜索
    2. 文件或目录搜索
    3. 文本内容搜索
    4. 标记搜索
    5. 快捷网页搜索
    6. 书签搜索
    7. 计算器
    8. 词典搜索
    9. 通讯录搜索
    10. 剪切板搜索
    14. 系统常用命令快捷操作
    15.直接唤起指定终端并执行命令
    小结

    alfred workflow
    常用的workflow
    workflow是什么
    如何创建第一个workflow
    workflow支持什么功能
    哪些语言能编写workflow
    workflow的不足
    我的一些心得

    为什么会有这篇文章
    到这,文章就快结束了,从 2015 年 3 月 28 日 接触 alfred 起,我便迷上了它的超强工作流。alfred 几乎可以做任何自动化工作流的事情(只要能用代码描述这个工作流就行),它彻底改变了我对 mac 的认知。此后,我曾多次向团队同学安利并分享它的神奇之处,他们鼓励我开一个在线直播,有偿分享,但对我而言,能写一篇介绍它的文章,几乎是我的荣幸!最后,写得不好的地方欢迎批评斧正,感谢您的阅读!
    `

  8. Mac上如何隐藏顶部的菜单栏? (mac how to hide the top menu bar)
    https://www.cnet.com/how-to/how-to-hide-the-menu-bar-in-os-x-el-capitan/
    `
    System Preferences > General > Automatically hide and show the menu bar
    系统偏好设置 -> 通用 -> 自动隐藏和显示菜单栏
    `

    Mac底部的那一行中文名叫「程序坞」 (bottom bar (Dock))
    https://www.pntbrother.com/how-to-hide-bottom-bar-dock-macbook-os-x/
    `
    系统偏好设置 -> 程序坞 -> 自动显示和隐藏程序坞
    `

  9. 如何在Windows, Mac, 和 Linux上禁用USB存储设备?
    How to Disable USB Storage Devices on Windows, Mac, and Linux
    https://www.makeuseof.com/tag/disable-usb-storage-devices/
    `
    # Windows
    方法一:手工编辑注册表
    Win + R
    regedit
    Agree to the User Account Control message, then browse to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR. Here, double-click Start (or right-click > Modify) and edit the value.
    To disable, change the value to 4. Should you need to re-enable USB storage at any time, simply change back to 3. Click OK when you’re done.

    方法二:创建一个修改注册表的脚本

    方法三:使用组策略编辑器

    # Mac
    第一步:先停掉 SIP 的功能;
    第二步:卸载相关驱动 $(kextunload /System/Library/Extensions/IOUSBMassStorageClass.kext/)
    第三步:将相关驱动删除or重命名 /System/Library/Extensions/IOUSBMassStorageClass.kext

    # Linux
    将相关USB驱动重命名
    `

    • 实测,因为苹果系统的限制,在 Big Sur 及以后的系统里面,已经无法通过删除 kext 文件来实现USB封禁的功能了。
      常规手动卸载的时候会提示in use or retained导致卸载失败(可能可以通过launchctl将此操作放在启动后尽早执行来实现,但暂未测试)。
      `
      Executing: /usr/bin/kmutil unload -p /System/Library/Extensions/IOUSBMassStorageDriver.kext
      Error Domain=KMErrorDomain Code=71 “Kernel request failed: (libkern/kext) kext is in use or retained (cannot unload) (-603946984)” UserInfo={NSLocalizedDescription=Kernel request failed: (libkern/kext) kext is in use or retained (cannot unload) (-603946984)}
      `

      如何在 Mac OS X 中禁用 USB 存储设备
      https://www.bilibili.com/video/BV1N34y157rd/

      MAC机如何禁用U盘及光驱?
      https://zhidao.baidu.com/question/1574117364975175580.html
      `
      1、可以删除或停用每台机器内的以下三个文件来禁用U盘及光驱:
      /系统/资源库/Extensions/IOUSBMassStorageClass.kext
      /系统/资源库/Extensions/IOCDStorageFamily.kext
      /系统/资源库/Extensions/IODVDStorageFamily.kext

      2、可以使用终端或Shell Script来删除:
      rm -rf /System/Library/Extensions/IOUSBMassStorageClass.kext
      rm -rf /System/Library/Extensions/IOCDStorageFamily.kext
      rm -rf /System/Library/Extensions/IODVDStorageFamily.kext
      touch /System/Library/Extensions
      reboot
      注意:如果是通过终端输入来完成上述命令,要在每个命令前加上“sudo ”
      `

    • 以前的macOS系统还可以通过profiles描述文件来控制USB存储等媒体管理,但是后来给废弃了,也不知道在现在最新的Big Sur/Monterey/Ventura系统里面怎么禁用USB存储?

      profiledocs/source/_static/examples/com.apple.systemuiserver.mobileconfig
      https://github.com/mosen/profiledocs/blob/master/source/_static/examples/com.apple.systemuiserver.mobileconfig

      MediaManagementAllowedMedia #Deprecated (macOS 10.7–11.0 Deprecated)
      https://developer.apple.com/documentation/devicemanagement/mediamanagementallowedmedia

  10. macOS 如何才能用快捷键锁屏?
    https://www.zhihu.com/question/20094264/answer/153670327
    `
    方法1:
    (仅适用于MacOS High Sierra 10.13或更高版本)
    系统自带锁屏快捷键:Ctrl + Command + Q
    注意:QQ的快捷键和这个有冲突,需要修改QQ的快捷键。

    方法2-使用触发角,更简单快速:
    先将「系统偏好设置」-「安全与隐私」-「通用」中,将「进入睡眠或开始屏幕保护程序」的时间设置为「立即」。
    然后在「系统偏好设置」 —> 「桌面与屏幕保护程序」 —> 「屏幕保护程序」 —> 「触发角」 -> 选择一个习惯的角用于设置「启动屏幕保护程序」
    `

    Mac 电脑锁屏快捷方法
    https://blog.mimvp.com/article/17617.html

    OS X 快速锁定屏幕,还有这种方法 | 一日一技 · Mac
    https://sspai.com/post/33094

    Mac 锁屏的各种方法
    https://www.yewen.us/blog/2014/06/lock-a-mac/

    mac系统修改锁屏快捷键 #未测试成功……
    https://blog.csdn.net/junzi528/article/details/78518411

  11. 在 iPhone、iPad、iPod touch、Apple TV 或 Mac 上退出登录 iCloud
    https://support.apple.com/zh-cn/HT208242
    `
    在 Mac 上退出登录
    如果您使用的是 macOS High Sierra 或更高版本:

    1、前往苹果菜单 >“系统偏好设置”>“iCloud”。
    2、点按“退出登录”。
    3、如果您想要在退出登录之前在 Mac 上保留 iCloud 数据的副本,请确保选择相应的复选框。然后点按“保留副本”。
    4、如果您想要在 Mac 上保留 Safari 浏览器密码的副本,请点按“保留在此 Mac 上”。
    `

  12. MacOS catalina 如何创建/home 目录,显示 mkdir: /home: Read-only file system
    https://www.v2ex.com/t/607387
    `
    更新到macOS Catalina 10.15后,所有的系统文件分配到一个单独的卷宗,该卷宗文件系统属性为只读

    正确解法:

    第一步:关闭SIP
    首先禁用SIP,Command+R启动到恢复模式,打开终端,运行:
    # csrutil disable
    # reboot

    第二步:
    $ csrutil status
    System Integrity Protection status: disabled.

    $ sudo mount -uw /
    $ sudo mkdir -p /home/xxx

    注意:重新挂载行为在重启电脑后会失效的,需要重新挂载。
    为安全起见,修改完根分区,建议将SIP修改为激活状态。
    `

  13. 罗技 K380
    https://www.logitech.com.cn/zh-cn/product/multi-device-keyboard-k380
    罗技k380使用说明
    http://h5.china.com.cn/pc/doc_1_1_6825619.html
    `
    # 用 K380 键盘切换设备
    在您将最多三个设备与键盘连接之后,按下一个“易于切换”按钮即可在这些设备之间切换。
    按钮的状态指示灯在稳定亮起前会缓慢闪烁 5 秒,以确认您的选择。 之后键盘便已准备就绪,可以与您的设备配合使用。

    # 重新将蓝牙设备与 K380 键盘配对
    可以轻松地将设备与 K380 键盘重新配对。 具体操作方式如下:
    按住键盘上的“易于切换”按钮之一,直到状态 LED 开始快速闪烁。
    在接下来的三分钟,键盘将处于配对模式。
    `

  14. macOS 上能否查看 USB 的连接记录?
    https://apple.stackexchange.com/questions/226816/can-i-view-history-of-recently-connected-usb-devices-in-os-x

    macOS 上能否查看 Bluetooth(蓝牙) 的连接记录?
    https://stackoverflow.com/questions/44467031/how-do-i-find-bluetooth-connections-in-mac-system-logs

    在 Mac 和蓝牙设备间共享文件
    https://support.apple.com/zh-cn/guide/mac-help/mchle7fa9e15/10.15/mac/10.15.2

    在 Mac 上使用“隔空投送”
    https://support.apple.com/zh-cn/HT203106

    How to see your AirDrop history
    https://discussions.apple.com/thread/6517349
    `
    The answer is “no.” AirDrop does not keep a log of these transactions so you can audit them later.
    `

  15. AirDrop: Bluetooth or Wi-Fi?
    https://apple.stackexchange.com/questions/146644/airdrop-bluetooth-or-wi-fi

    What Is AirDrop? How Does It Work?
    https://www.lifewire.com/what-is-airdrop-how-does-it-work-1994512
    `
    AirDrop uses Bluetooth to create a peer-to-peer Wi-Fi network between the devices. Each device creates a firewall around the connection and files are sent encrypted, which actually makes it safer than transferring via email. AirDrop will automatically detect nearby supported devices, and the devices only need to be close enough to establish a good Wi-Fi connection, making it possible to share files across several rooms.

    Both Wi-Fi and Bluetooth are automatically switched on when AirDrop is enabled as they are both utilized.
    `
    https://en.wikipedia.org/wiki/AirDrop

  16. 在Mac上校验文件的哈希值 sha256 …
    `
    $ man shasum
    Usage: shasum [OPTION]… [FILE]…

    -a, –algorithm 1 (default), 224, 256, 384, 512, 512224, 512256

    The following command shows how to compute digests for typical inputs such as the NIST test vector “abc”:
    perl -e “print qq(abc)” | shasum

    Or, if you want to use SHA-256 instead of the default SHA-1, simply say:
    perl -e “print qq(abc)” | shasum -a 256
    `
    https://blog.csdn.net/TurkeyCock/article/details/85200635
    http://emn178.github.io/online-tools/

  17. What’s new in the updates for macOS Big Sur
    https://support.apple.com/en-us/HT211896
    `
    macOS Big Sur 11.4 # 发布于 2021 年 5 月 24 日
    macOS Big Sur 11.3.1 # 发布于 2021 年 5 月 3 日
    macOS Big Sur 11.3 # 发布于 2021 年 4 月 26 日
    macOS Big Sur 11.2.3 # 发布于 2021 年 3 月 8 日
    macOS Big Sur 11.2.2 # 发布于 2021 年 2 月 25 日
    macOS Big Sur 11.2.1 # 发布于 2021 年 2 月 9 日
    macOS Big Sur 11.2 # 发布于 2021 年 2 月 1 日
    macOS Big Sur 11.1 # 发布于 2020 年 12 月 14 日
    macOS Big Sur 11.0.1 # 发布日期:2020 年 11 月 12 日
    `

    Apple 安全性更新
    https://support.apple.com/zh-cn/HT201222

    关于 macOS Big Sur 11.0.1 的安全性内容
    https://support.apple.com/zh-cn/HT211931

    关于 macOS Big Sur 11.1、安全性更新 2020-001 Catalina、安全性更新 2020-007 Mojave 的安全性内容
    https://support.apple.com/zh-cn/HT212011

    关于 macOS Big Sur 11.2、安全性更新 2021-001 Catalina、安全性更新 2021-001 Mojave 的安全性内容
    https://support.apple.com/zh-cn/HT212147

  18. Why does sharing take so much CPU?
    https://www.quora.com/Why-does-sharing-take-so-much-CPU
    `
    The sharingd process is responsible for enabling connections to shared computers, connecting to remote disks such as a CD or DVD installed in another Mac, and it also runs AirDrop. It sounds like something has gone awry with your OS install. Otherwise, the sharingd process would not be doing this. First, reboot, and also check what processes and apps are starting up when you login. Startup processes are found in /Library/LaunchDaemons/. You will see a lot of propertly list (plist) files there. If some of them don’t look familiar to you, you should remove them. It’s easy to use the App Store to download and then reinstall macOS, so that’s a good thing to try. Just make sure that you have a full backup of your Mac before doing this just in case something goes awry. I use iStat menus too. It’s a very good tool for monitoring your Mac. There is one caveat though… You may see a lot of things running that you don’t understand, and you are likely to get worried. My advice is that you take some time to study what these processes are so that you know what you’re looking at. Apple’s developer library is a good place to get this information. You can register an Apple ID at Apple Developer even if you are not a developer, and it’s free to register and get access to the developer library. Apple only charges if you want access to beta software that is not already part of the public beta program.
    `

  19. 有了 Spotlight,为什么还要用 Alfred、Quicksilver 之类的软件呢? 后者到底好在哪里?
    https://www.zhihu.com/question/19998102

    2022 年, Alfred 比 Spotlight 好用吗?
    https://www.v2ex.com/t/826521
    `
    最近刚入手 MacBook Pro ,第一次接触 macOS 系统。很久之前就听人说 Alfred 比 Spotlight 好用,我两个都体验了一下,并没有感觉出 Alfred 相比 Spotlight 特殊的优势在哪里。

    因为 Workflow 是付费功能,我并没有体验到。Alfred 的免费功能超越 Spotlight 的点有哪些呢?
    ==

    utools
    Raycast

    ==
    你没啥特殊需求的话没必要. 不用折腾.. 我就用他的剪切板了. 其他都没用到..剪切板 装个 clipy + spotlight 照样用.
    还是看你需求

    我就感觉这 2 者现在差别不大,本着能用系统的就用系统的想法,就专用 Spotlight 了

    alfred 只要花点心思去配置一下也是可以很好看的,另外,我觉得 alfred 的优势是 workflows+历史剪贴板,workflows 我装的也不多(基本就 dash 、github 、mweb 、search 、terminalFinder 、youdao 这几个 wf 吧),但日常用的真的挺多的

    早期没有 Spotlight ,只有 Alfred 可以用。现在如果不用 Alfred 的 Workflow 的话,Spotlight 是没差别的。
    但是用了 Workflow 就回不去了。类似 Paste 这种收费软件的功能,Alfred Workflow 都可以实现了,一体化管理。
    常用的:
    剪切板、翻译、隐藏桌面、简体繁体中文、隐藏桌面文件、隐藏所有窗口展示桌面等等
    `

    效率启动不止搜索,比 Spotlight 更好用的 Alfred 了解一下
    https://shunyu.wang/2018/alfred-how-to/

    https://sspai.com/search/post/spotlight

  20. 为什么对于是否买 mbp 的评价都是能否用它赚钱?
    https://www.v2ex.com/t/912545
    `
    question:
    刚看了几个测评,大部分测评主对于 mbp 的评价都是要看这玩意能不能为你赚钱,能赚钱就要毫不犹疑的买。

    为什么不能是纯消费? mac 根本无法为我赚钱,事实上我买的主流 win 本也很难为我赚钱,我是没看出大部分人上几个网站,写个 ppt 看个电影能赚什么钱……我单纯想消费高素质屏幕和音响不行吗?

    啥时候主流话语把 mbp 当成赚钱工具了…

    answer(s):
    因为还是心疼
    如果从赚钱角度,就是占在商家角度,把自己忽悠了,心里好受一点
    ==
    因为其他用途的话 mbp 毫无性价比
    类似的产品还有 dell precision 工作站
    ==
    因为市场共识(如果你有别的看法那就是你对)就是 macbook 存在溢价,消费者需要为购买溢价产品进行心理建设。
    ==
    这。。。阅读理解能力有点弱。

    能赚钱就毫不犹豫的买,潜台词就是不能赚钱纯消费就得好好考虑考虑它值不值。

    因为 mbp 作为纯消费溢价是很严重的。
    ==
    你问问你身边的人如果买一台电脑预算是多少,动辄上万 RMB 的电脑你以为人均都买得起?人家博主做的视频面向的观众类型也很杂,并且人家的评价是你有需求那就买。如果你问一个月薪六千的人会不会买 MBP 人家的回答大概率是不会,因为这东西对他来讲没有什么用处,不如买个配置好点的 Windows 主机打游戏。
    ==
    照你这么说, 那喜欢就买呀, 想那么多干嘛.
    有些人买是因为需要在鄙视链顶端装逼, 有些人买是为了干活, 有些人买只是拿来玩, 除了干活的, 其他不都是想买就买吗?
    需要看评测的, 一般都是用来干活或者准备用来干活居多, 那评测站在工作者的角度说能不能用做赚钱工具有什么问题?
    ==
    别人好心担心你们不要乱花钱 花钱买了又后悔 你们总觉得别人有优越感 向💰看 人与人之间不能少点怀疑猜忌 多点爱吗
    ==
    钱多的无所谓评测,买就行了,你们说它好或者不好关我啥事?

    来问值不值得买的就是心疼钱,不找个理由怎么安心花钱?

    凡是买的时候有一点点犹豫,要么是没钱,要么是不喜欢。
    `

  21. iPhone 传输文件到 windows 最佳方式
    https://www.v2ex.com/t/918098
    `
    question:
    工作经常用手机拍摄视频,需要传输很多视频文件到 windows 电脑,不想采用 USB 传输。目前用的自带文件 app smb 连接 windows 共享文件,配合快捷指令一键传输。问题是体验很不好,经常传输出错,需要进文件 app 重新确认是否已经连接上共享文件夹,然后再到相册里一键保存到共享文件夹,有没有大佬有更便捷,稳定的 ios 传输文件到 windows 办法?

    answer(s):
    https://github.com/localsend/localsend
    全平台开源且免费
    =
    感谢推荐,这款软件应该是最干净的局域网传输软件了
    ==

    onedrive 啊
    ==
    用新 edge 的 drop
    ==
    sharik
    kde connect
    localsend
    ==
    文件少的话,用浏览器的 SnapDrop 也可以,不需要装客户端。
    文件数量多就不太合适了。
    ==
    我目前是装群晖 Drive ,可以直接在系统文件管理器里访问群晖目录,比 SMB 好。
    还有就是群晖 Chat ,我现在直接当多平台推送用。
    ==

    苹果全家桶肯定是 AirDrop 更好用
    `

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注