init-env.sh

来自「lustre 1.6.5 source code」· Shell 代码 · 共 41 行

SH
41
字号
## Source this file. It will craft a usable name space for your testing.## Lee; Sun Feb  8 18:02:16 EST 2004## Note: We really should support symlinks someday.#unset _root_flagsunset _extrasif [ "x${SYSIO_AUTOMOUNT}" == "xyes" ]; then	_root_flags="2"	#	# Add a /auto directory for automounted file systems. We	# craft one automount that mounts /usr/home from the native	# file system. Further automounts in the sub-mounts are not enabled.	#	_extras=" \		{mnt,	dev=\"incore:0755\",dir=\"/mnt\",fl=2} \		{creat, ft=dir,nm=\"/mnt/home\",pm=04755} \		{creat, ft=file,nm=\"/mnt/home/.mount\",pm=0600, \			str=\"native:/home\"} \	"fiexport SYSIO_NAMESPACE="\	{mnt,	dev=\"native:/\",dir=/,fl=${_root_flags:-0}} \	{mnt,	dev=\"incore:0755\",dir=\"/dev\"} \	{creat,	ft=chr,nm=\"/dev/stdin\",pm=0400,mm=0+0} \	{creat,	ft=chr,nm=\"/dev/stdout\",pm=0200,mm=0+1} \	{creat,	ft=chr,nm=\"/dev/stderr\",pm=0200,mm=0+2} \	{creat,	ft=dir,nm=\"/dev/fd\",pm=0755} \	{creat,	ft=chr,nm=\"/dev/fd/0\",pm=0400,mm=0+0} \	{open,	nm=\"/dev/fd/0\",fd=0,m=0} \	{creat,	ft=chr,nm=\"/dev/fd/1\",pm=0200,mm=0+1} \	{open,	nm=\"/dev/fd/1\",fd=1,m=1} \	{creat,	ft=chr,nm=\"/dev/fd/2\",pm=0200,mm=0+2} \	{open,	nm=\"/dev/fd/2\",fd=2,m=1} \	${_extras} \"unset _root_flagsunset _extras

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?