安装包:http://pan.baidu.com/s/1eSdR0Wi/usr/local/java把安装包上传到这里;解压jdk:sudotarxvfjdk1.7.0_79.tar修改配置文件:vim.bash_profile#.bash_profile#Getthealiasesandfunctionsif[-f~/.bashrc];then.~/.bashrcfi#Userspecificenvironmentandstartupprograms#PATH..
分类:
其他好文 时间:
2016-06-29 01:26:26
阅读次数:
1455
1.在用户目录下的.bash_profile中添加(在当前用户有效):#.bash_profile#Getthealiasesandfunctionsif[-f~/.bashrc];then.~/.bashrcfi#UserspecificenvironmentandstartupprogramsPATH=$PATH:$HOME/binexportPATHexporta=123#新添加环境变量[root@localhost~]#..bash_profile..
分类:
其他好文 时间:
2016-06-27 12:29:33
阅读次数:
149
/etc/profile:此文件为系统的每个用户设置环境信息,当用户第一次登录时,该文件被执行并从/etc/profile.d目录的配置文件中搜集shell的设置. /etc/bashrc:为每一个运行bash shell的用户执行此文件.当bash shell被打开时,该文件被读取~/.bash_ ...
分类:
其他好文 时间:
2016-06-25 20:21:07
阅读次数:
151
参考:http://www.mkyong.com/java/how-to-set-java_home-environment-variable-on-mac-os-x/ 如果用bash,修改~/.bash_profile 或 ~/.profile; 如果用zsh,修改~/.zshrc 修改这些文件之 ...
分类:
编程语言 时间:
2016-06-21 12:24:33
阅读次数:
462
在 Linux 下习惯使用 ll、la、l 等ls别名的童鞋到 mac os 可就郁闷了~~ 其实只要在用户目录下建立一个脚本“.bash_profile”, vim .bash_profile 并输入以下内容即可: alias ll='ls -alF' alias la='ls -A' alias ...
分类:
系统相关 时间:
2016-06-21 10:49:48
阅读次数:
142
站在用户登陆的角度来说,SHELL的类型:登陆式shell:正常通过某终端登陆su-用户名su-l用户名非登陆式shell:su用户名图形终端下打开命令窗口自动执行的shell脚本bash的配置文件:全局配置/etc/profile,/etc/profile.d/*.sh,/etc/bashrc个人配置~/.bash_profile,~/.bashrcprofile类..
分类:
其他好文 时间:
2016-06-17 19:48:59
阅读次数:
172
bash:sqlplus:commandnotfound解决方法环境变量已经配好,但是仍报错:#vi.bash_profile#.bash_profile#Getthealiasesandfunctionsif[-f~/.bashrc];then.~/.bashrcfi#UserspecificenvironmentandstartupprogramsPATH=$PATH:$HOME/bin#AddORACLE_SID,ORACLE_BASE,ORACLE_HOMEAND..
分类:
数据库 时间:
2016-06-17 08:34:20
阅读次数:
165
Mac上安装Java7 首先我们需要去oracle下载最新的jdk,笔者拿到的最新的版本是1.7.0_45-b18,这里没有什么好说的,直接下载安装即可,安装完毕后需要在.bash_profile或者.zshrc文件中设置JAVA_HOME,代码如下 1 2 3 JAVA_HOME=/Library ...
分类:
系统相关 时间:
2016-06-15 22:01:29
阅读次数:
189
eclipse调试Android自动化脚本的时候一直无法找到adb,遇到这么坑的问题,折腾死了,记录一下。 mac os x10.11.2系统GUI程序(eclipse)无法读取~/.bash_profile下配置的环境变量。 需要用终端open /User/sun/tools/eclipse/ec ...
分类:
系统相关 时间:
2016-06-15 12:34:45
阅读次数:
137