mac基本安装软件


1、时间机器:备份+磁盘抹除

(1)磁盘抹除为exFAT格式时出现“无法抹除问题”

参考:https://blog.csdn.net/weixin_30478923/article/details/96456719?depth_1-utm_source=distribute.pc_relevant.none-task&utm_source=distribute.pc_relevant.none-task

  • 原因:mac初始化的磁盘空间不不足;

  • 解决方法:打开磁盘工具,然后左上角点击“显示卷宗”,对整个卷宗进行抹除即可

(2)mac时间机器 Time Machine 备份速度太慢

参考:https://www.digit77.com/skills/macos/speed-up-time-machine.html

  • 原因:macOS本身对其进行了限流措施,对硬盘读写的频率和内存使用都做了一定的限制。

  • 解决方法:“解除封印”,关闭系统对时间机器的限流;


解除:

sudo sysctl debug.lowpri_throttle_enabled=0
开启限流:
sudo sysctl debug.lowpri_throttle_enabled=1

2、extFS for mac 实现读写linux文件

参考:https://www.digit77.com/macapps/utilities/paragon-extfs-for-mac.html
在飞猫云中下载后,解压密码为:digit77.com
Paragon ExtFS 是一款Mac上读写Linux Ext分区的驱动工具,可以让我们在Mac上读写Ext2/3/4分区格式,
Ext分区是Linux系统以及大部分手机SD卡所使用的分区格式,通过这个驱动,就可以读写这些分区了,很实用!

3、NTFS for mac 实现读写NTFS文件,即windows文件

参考:https://aibotech.cn/ad/ntfs-mac.html
免费下载,使用15天

4、xnip for mac截图工具

直接在app store下载即可使用,然后配置快捷键即可

5、mathtype for mac 数学公式工具破解版——(不建议安装,太卡)

参考:https://www.digit77.com/macapps/productivity/mathtype.html#download-explan
飞猫云下载:hugechuanqi
解压密码:digit77.com

6、在word for mac中插入latex公式:Pages

参考:https://sspai.com/post/52655
Pages 方程

7、macOS系统测试硬盘读写速度:Disk Speed Test

直接在appstroe上免费下载即可
(1)选择测试硬盘
(2)选择压力测试大小:一般为5GB

8、mac安装homebrew及基本使用

参考:https://brew.sh(此链接为官网地址,按照页面显示复制代码即可安装)
Homebrew是一款Mac OS平台下的软件包管理工具,拥有安装、卸载、更新、查看、搜索等很多实用的功能。
简单的一条指令,就可以实现包管理,而不用你关心各种依赖和文件路径的情况,十分方便快捷。

  • 要求:intel CPU
    (1)安装
    /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
    (2)卸载
    参考:https://www.jianshu.com/p/de6f1d2d37bf
$ cd `brew --prefix`
$ rm -rf Cellar
$ brew prune
$ rm `git ls-files`
$ rm -r Library/Homebrew Library/Aliases Library/Formula Library/Contributions
$ rm -rf .git
$ rm -rf ~/Library/Caches/Homebrew

(3)homebrew基本使用

# 安装任意包
brew install <packageName>
# 卸载任意包
brew uninstall <packageName>
# 卸载git
brew install git
# 查询可用包
brew search <packageName>
# 查看已安装包列表
brew list
# 查看任意包信息
brew info <packageName>
# 更新Homebrew版本
brew -v
# Homebrew帮助信息
brew -h

9、改变HomeBrew源(国外源太慢且容易出现问题)

参考:https://www.jianshu.com/p/1911a9b3f506
参考:https://mirrors.tuna.tsinghua.edu.cn/help/homebrew/

  • 问题:由于国外源太慢,有时导致不通,则代码下不来;
  • 解决方法:更换国内镜像源;
git clone git://mirrors.ustc.edu.cn/homebrew-core.git/ 
/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core --depth=1

(1)替换核心软件仓库:把homebrew-core的镜像地址也设为中科院的国内镜像

cd "$(brew --repo)"

git remote set-url origin https://mirrors.ustc.edu.cn/brew.git

cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"

git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git

# 然后执行更新

brew update

# 检查有无错误

brew doctor

  • 注意:如果没有相应的目录,那就自主建立一个mkdir director

(2)替换cask软件仓库:提供 macOS 应用和大型二进制文件

cd "$(brew --repo)"/Library/Taps/caskroom/homebrew-cask
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git

(3)替换Bottles源:Homebrew 预编译二进制软件包

# bash(默认 shell)用户:

echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile
source ~/.bash_profile

10、安装xcode(根据合适版本选择)

官方网站参考:https://developer.apple.com/download/more/

原文地址:https://www.cnblogs.com/hugechuanqi/p/12604123.html