macos8
macos在Finder中查看隐藏文件
Shift + Command + .
...
macos禁用独显
sudo pmset -a GPUSwitch 0 # 强制使用核显
sudo pmset -a GPUSwitch 1 # 强制使用独显
sudo pmset -a GPUSwitch 2
...
macos通过brew安装python2
原文地址:https://stackoverflow.com/questions/60298514/brew-reinstalling-python2
起因:在mac上想安装pytho
...
MacOS在Finder顶部显示当前目录的完整路径
Finder 默认的标题栏只显示当前目录的名字,可以打开终端,复制粘贴以下命令:
defaults write com.apple.finder _FXShowPosixPathInTitle
...
mac应用全面时,dock栏不自动隐藏的解决方法
终端执行:
killall Dock
...
查看端口占用、查看进程
linux:
查看9090端口:
netstat -antup | grep 9090
查看30658进程:
ps aux | grep 30658
mac
...
查看本机IP
curl cip.cc
...
设置终端走代理的方法
1. 打开配置文件
vim ~/.bash_profile
2. 修改配置
function proxy(){
export http_proxy=http://127.0
...