linux/windows转mac的习惯设置
Posted chenguang9239
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux/windows转mac的习惯设置相关的知识,希望对你有一定的参考价值。
外接键盘
常用快捷键设置
- 中英文快捷键名都重新设置一遍
- 使用ctrl替代command(对__内置__键盘操作)
- https://jingyan.baidu.com/article/6f2f55a14652e0b5b93e6ca2.html
Command-Z 撤消 Command-X 剪切 Command-C 拷贝(Copy) Command-V 粘贴 Command-A 全选(All) 下两个待定? Command-S 保存(Save) Command-F 查找(Find)
- 外接键盘交换command与alt键(对__外接__键盘操作)
- 系统会默认把外接键盘的win映射成command,需要把外接键盘的alt键与win键功能交换
- 使用"修饰键"完成这个交换:https://bbs.feng.com/read-htm-tid-10959060.html
- https://bbs.feng.com/read-htm-tid-8746599.html
其他快捷键
- command+L 定位到地址栏
- ctrl+Tab 切换到下一个标签
- command+2 切换到第2个标签
- command+左右 定位到行首与行尾
- command+上下 定位到文件头与文件尾
- option(映射到alt上,又交换到win上)+左右 定位到上一个与下一个单词末尾
- 参考https://jingyan.baidu.com/article/08b6a591aac09614a909224f.html
安装软件
- clion chrome
- 安装完成把图标拖到文件夹上才OK
- 如何查找软件安装路径:
/Applications/CLion.app/Contents/bin/clion.vmoptions
- 如何查找软件安装路径: 右键->选项->在访达中显示;右键程序图标->显示包内容
- 破解软件: https://www.jianshu.com/p/f404994e2843
- iterm2,用户环境变量配置如下:
~ $pwd
/var/root
~ $cat .bash_profile
#enables colorin the terminal bash shell export
export CLICOLOR=1
#setsup thecolor scheme for list export
export LSCOLORS=gxfxcxdxbxegedabagacad
#sets up theprompt color (currently a green similar to linux terminal)
export PS1=‘[ 33[01;32m][email protected]h[ 33[00m]:[ 33[01;36m]w[ 33[00m]$ ‘
#enables colorfor iTerm
export TERM=xterm-256color
alias wk="cd /Users/admin/wangzhiyi"
alias ll="ls -lrta"
find_git_branch () {
local dir=. head
until [ "$dir" -ef / ]; do
if [ -f "$dir/.git/HEAD" ]; then
head=$(< "$dir/.git/HEAD")
if [[ $head = ref: refs/heads/* ]]; then
git_branch=" (${head#*/*/})"
elif [[ $head != ‘‘ ]]; then
git_branch=" → (detached)"
else
git_branch=" → (unknow)"
fi
return
fi
dir="../$dir"
done
git_branch=‘‘
}
PROMPT_COMMAND="find_git_branch; $PROMPT_COMMAND"
black=$‘[e[1;30m]‘
red=$‘[e[1;31m]‘
green=$‘[e[1;32m]‘
yellow=$‘[e[1;33m]‘
blue=$‘[e[1;34m]‘
magenta=$‘[e[1;35m]‘
cyan=$‘[e[1;36m]‘
white=$‘[e[1;37m]‘
normal=$‘[e[m]‘
PS1="[ 33[0;31m]u [ 33[00;36m]W$yellow$git_branch [ 33[0;33m]$[e[1;37m]"
- 普通用户设置.bash_profile后,打开item2,其配置生效;但sudo su到root下,即使root用户目录下编写了.bash_profile,但却是不生效
- sudo su 登录到root后会使用当前的环境
- sudo su 登录到root后,passwd root重新设置密码给su - root登录使用
- su - root并输入__新密码__后 会加载/etc/bashrc(把原.bash_profile内容追加在这个文件里)
- 但sudo su的密码没有改变
- sudo su 与 su - root 的区别?
以上是关于linux/windows转mac的习惯设置的主要内容,如果未能解决你的问题,请参考以下文章
设置java.library.path的值(Mac/Linux/Windows)