ChinaUnix.net
相关文章推荐:

profile文件夹

Firefox 在不同的操作系统,配置文件夹的默认路径分别是: 操作系统 文件夹 Windows 9x/Me C:\WINDOWS\Application Data\Mozilla\Firefox\profiles\xxxxxxxx.default\ Windows 2000/XP/2003 C:\Documents and Settings\[User Name]\Application Data\Mozilla\Firefox\profiles\xxxxxxxx.default\ Windows Vista C:\Users\[user name]\AppData\Roaming\Mozilla\Firefox\profiles\xxxxxxxx.default\ Linux ~/.mozilla/fir...

by hghw1776 - Linux文档专区 - 2006-12-17 11:12:08 阅读(1010) 回复(0)

相关讨论

背景: home目录下的配置文件只能控制一个用户,如果所有用户的某些设置相同的话,而且在启动时就进行设置,则可将相应的设置入入/etc/profie中 正文: # /etc/profile: system-wide .profile file for the Bourne shell (sh(1)) # and Bourne compatible shells (bash(1), ksh(1), ash(1), ...). if [ "$PS1" ]; then if [ "$BASH" ]; then PS1='\u@\h:\w\$ ' if [ -f /etc/bash.bashrc ]; then . /etc/bash...

by bing_fox - Linux文档专区 - 2008-06-17 23:11:09 阅读(599) 回复(0)

####################UNIX /etc/profile################# 1 umask 007 2 # @(#)B.11.11_LR 3 4 # Default (example of) system-wide profile file (/usr/bin/sh initialization). 5 # This should be kept to the bare minimum every user needs. 6 7 # Ignore HUP, INT, QUIT now. 8 9 trap \"\" 1 2 3 10 11 # Set the default paths - Do NOT modify the...

by diveming - HP-UX - 2008-03-18 09:41:54 阅读(3439) 回复(1)

PATH=$PATH:/usr/bin:/usr/DynamicLinkManager/bin:/usr/es/sbin/cluster/utilities:. export PATH export PS1=`hostname`:`id -un`:['$PWD']# #The following line is added by License Use Management installation export PATH=$PATH:/usr/local/bin:/usr/opt/ifor/ls/os/aix/bin

by unixasdfg - AIX - 2007-09-17 11:12:47 阅读(2120) 回复(1)

PATH=$PATH:/usr/bin:/usr/DynamicLinkManager/bin:/usr/es/sbin/cluster/utilities:.\r\nexport PATH\r\n\r\nexport PS1=`hostname`:`id -un`:[\'$PWD\']#\r\n\r\n#The following line is added by License Use Management installation\r\nexport PATH=$PATH:/usr/local/bin:/usr/opt/ifor/ls/os/aix/bin

by unixasdfg - AIX - 2007-09-17 10:54:58 阅读(3687) 回复(0)

我的.profile 里只有一行:PATH=$PATH:/usr/local/bin:/usr/ccs/bin:/usr/j2se/bin;export PATH 在etc/profile里有: #ident "@(#)profile 1.18 98/10/03 SMI" /* SVr4.0 1.3 */ # The profile that all logins get before using their own .profile. trap "" 2 3 export LOGNAME PATH if [ "$TERM" = "" ] then if /bin/i386 then TERM=sun-color else T...

by hao4212 - Solaris - 2005-01-30 14:05:58 阅读(1092) 回复(3)

我的.profile 里只有一行:PATH=$PATH:/usr/local/bin:/usr/ccs/bin:/usr/j2se/bin;export PATH\r\n在etc/profile里有:\r\n#ident \"@(#)profile 1.18 98/10/03 SMI\" /* SVr4.0 1.3 */\r\n\r\n# The profile that all logins get before using their own .profile.\r\n\r\ntrap \"\" 2 3\r\nexport LOGNAME PATH\r\n\r\nif [ \"$TERM\" = \"\" ]\r\nthen\r\n if /bin/i386\r\n then\r\n ...

by hao4212 - Solaris - 2005-01-30 14:05:58 阅读(2828) 回复(3)

请问对于每一个用户是否需要配置不同的profile,在给用户配置profile时各类参数设成什么值比较好?特别是对于内存的设置!

by newoen - Oracle - 2003-03-03 14:44:33 阅读(1144) 回复(2)

看到老熊前辈的文章profiles-partii.html#more-659" target="_blank">http://www.laoxiong.net/sql-profiles-partii.html#more-659受益匪浅,不过对于已经有hint的SQL语句SQL Tuning Advisor能不能更上一层楼呢?
 

by jiangxiaoyu - Oracle - 2011-12-19 13:56:42 阅读(568) 回复(0)

为了安装Oracle,按照资料在/etc/profile 里面 添加了如下几行 if [$USER = "oracle"] ; then if[$SHELL = "/bin/ksh"] ; then ulimit -p 16384 ulimit -n 65536 else ulimit -u 16384 -n 65536 fi fi 但是添加后,在登陆的时候则出现如下 Linux-5 login: root Password: Last login: Fri Aug 27 14:50:38 on tty1 -bash: [root: command not found [root@Linux-5 ~]# 有个命令没找到的提示.然...

by jimmymaster - Linux新手园地 - 2010-08-27 19:05:03 阅读(1126) 回复(2)

1、Linux是一个多用户的操作系统。每个用户登录系统后,都会有一个专用的运行环境。通常每个用户默认的环境都是相同的,这个默认环境实际上就是一组环境变量的定义。用户可以对自己的运行环境进行定制,其方法就是修改相应的系统环境变量。   2、常在/etc/profile文件中修改环境变量,在这里修改的内容是对所有用户起作用的。以下主要操作将在该文件中进行。   3、如何添加环境变量。   例如添加”NAME=liheng“ 。 在profi...

by coolcoolrain - Linux文档专区 - 2010-01-11 12:45:25 阅读(796) 回复(0)