树莓派-官方刷系统教程 树莓派系统下载https://www.raspberrypi.com/software/https://www.raspberrypi.com/software/operating-systems/ 烧录镜像工具下载 Etcherhttps://mac.softpedia.com/get/Utilities/Etcher.shtml Raspberry Pi Imagerhttps://www. 2019-10-14 #树莓派 #RaspberryPi
树莓派-安装Pixel桌面环境 https://diyprojects.io/install-pixel-desktop-raspbian-stretch-lite-10-essential-software-raspberry-pi-3/ 2019-10-14 #树莓派 #RaspberryPi
macOS-开启macOS系统自带的NTFS写入功能 打开系统自带功能 需要在/etc/目录下建立一个名为fstab的文件 1sudo vi /etc/fstab 编辑fstab文件内容LABEL=XXXX为卷显示出来的名称,如果名称中含有空格要用 \040 替换。UUID=YYYY为卷的UUID,可以通过diskutil info /Volumes/DRIVENAME | grep UUID命令获取这个硬盘的UUID 123LABEL=XX 2019-10-12 #macOS #NTFS
Windows-将Windows启动到审计模式 https://docs.microsoft.com/zh-cn/windows-hardware/manufacture/desktop/boot-windows-to-audit-mode-or-oobe 2019-09-23 #Windows #Windows部署
Windows-Windows的KMS激活 [TOC] KMS 服务器激活 WindowsKMS 密钥 Windows Thin PC : 3KQTC-D9G6K-7TQG6-6MRPC-QN22C KMS 激活https://moeclub.org/2018/12/02/710/?spm=70.9 激活步骤请前往: http://moeclub.org/kmsKMS激活命令: slmgr /skms kms.moeclub.o 2019-09-10 #Windows #WES7 #激活
CocoaPods-更新官方pod库版本 修改podspec文件,更新好对应的s.version版本号。 将库文件上传到对应的代码仓库,打好tag。 进入项目目录,清缓存,校验podspec文件 12345678# 清除 pod 缓存pod cache clean --all# 校验pod lib lint XXXXX.podspec# 提交到官方索引仓库pod trunk push XXXXX.podspec 如果提示You n 2019-08-29 #CocoaPods #pod
macOS-通过Shell查看系统信息 http://teczd.com/2015/09/23/osx-get-system-info-from-command-line/ ioreg系统信息获取工具 system_profiler将系统信息保存为可以被系统信息APP读取的格式 system_profiler -xml > "MacBook Pro (Apple M3 Pro, 16英寸,2023年11月)_$(date 2019-08-15 #ioreg #system_profiler
macOS-通过defaults命令来设置macOS https://pawelgrzybek.com/change-macos-user-preferences-via-command-line/ 2019-08-14 #macOS
macOS-macOS中文件的扩展属性 查看扩展属性 查看文件是否具有扩展属性 1ls -lart 查看文件具体扩展属性信息 1234ls -laeO@# 或者xattr some.file xattr 编辑扩展属性命令12# 递归删除目录下所有文件的扩展属性xattr -r -d com.apple.quarantine [Path] 移除所有扩展属性 1xattr -r -c some.file 其他人平台类似的命 2019-08-13 #macOS #xattr
macOS-提示“已损坏,打不开。 您应该将它移到废纸篓。” 123sudo spctl --master-disablexattr -r -d com.apple.quarantine [App_path] 2019-07-19 #macOS