今天配置一个代理,正儿八经的把我搞蒙了,不就是export http_porxy=xxx.xxx.xxx.xxx:xxxx 然后重启服务service network restart ,依然连接不了外网! 前提:我是通过ssh连接过去的 1>当我把环境变量写到.bashrc,重启服务,不生效 2>当 ...
分类:
其他好文 时间:
2016-05-25 01:46:27
阅读次数:
230
linux启动后环境变量加载的顺序为:etc/profile → /etc/profile.d/*.sh → ~/.bash_profile → ~/.bashrc → [/etc/bashrc] 想修改某用户登录后shell字体的颜色,可在~/.bashrc中添加PS1内容即可,以下是我机器的设置 ...
分类:
系统相关 时间:
2016-05-24 15:17:24
阅读次数:
171
在linux下的目录/u01/oracle/sqlplus/admin下编写了一个login.sql,代码如下---login.sql--define_editor=vimsetserveroutputonsize1000000settrimspoolonsetlong5000setlinesize100setpagesize9999columnplan_plus_expformata80columnglobal_namenew_valuegnamesettermoutoffd..
分类:
数据库 时间:
2016-05-24 10:38:32
阅读次数:
571
交互式登陆shell的执行顺序:/etc/profile->~/.bash_profile->~/.bashrc->/etc/bashrc->~/.bash_logout(退出时执行)交互式非登陆shell的执行顺序:~/.bashrc->/etc/bashrc在非交互模式下,bash读取的startup文件由环境变量BASH_ENV来决定参考:http://yujia20..
分类:
其他好文 时间:
2016-05-19 19:35:20
阅读次数:
151
mac的用户在家目录下面,查看有没有.bash_profile有则直接打开编辑,没有则新建一个。添加exportGOROOT=/usr/local/go go的安装目录exportGOPATH=$HOME/mygo 自己创建的工作目录,我这里创建在家目录下面在。这里$HOME就是你的家目录路径exportPATH=$PATH:$GOROOT/bin 把g..
分类:
系统相关 时间:
2016-05-19 06:50:52
阅读次数:
351
1、mysql-connector-java-5.1.7-bin.jar的添加位置为:jdk根目录下的/jre/lib/ext/目录下面;2、配置linux的环境变量:(记得source.bash_profile).修改/etc/profile文件(全局所有用户)vi此文件/etc/profile在profile文件末尾加入:exportJAVA_HOME=/usr/java/jdk1.6.0_20expo..
分类:
数据库 时间:
2016-05-18 22:12:52
阅读次数:
667
1、#vi.bash_profile在PATH……后加上mysql启动目录如:PATH=$PATH:$HOME/bin:/usr/local/mysql/bin/2、#wq!保存退出3、logout注销4、重新登陆5、OK
分类:
数据库 时间:
2016-05-18 22:12:41
阅读次数:
202
1、#vi.bash_profile在PATH……后加上mysql启动目录如:PATH=$PATH:$HOME/bin:/usr/local/mysql/bin/2、#wq!保存退出3、logout注销4、重新登陆5、OK
分类:
数据库 时间:
2016-05-18 12:53:13
阅读次数:
1637
当一个用户登录linux系统时,Loginshell按如下顺序执行报需的脚本。一、执行/etc/profile这个启动脚本(startupscript),在/etc/profile这个startupscript中会调用/etc/profile.d目录下的所有startupscripts。二、执行~/.bash_profile(用记家目录中的.bash_profile)这个startup..
分类:
系统相关 时间:
2016-05-15 12:42:28
阅读次数:
205
1.Tab大小写敏感修复 2.修改配色 下载地址:http://iterm2colorschemes.com/ 修改~/.bash_profile文件,添加以下代码: ...
分类:
其他好文 时间:
2016-05-13 12:47:11
阅读次数:
144