Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../.././../../../lib/svc/method/fs-root
Real path: /lib/svc/method/fs-root
Zurück
#!/usr/sbin/sh # # Copyright (c) 1992, 2016, Oracle and/or its affiliates. All rights reserved. # # Make sure that the libraries essential to this stage of booting can be found. LD_LIBRARY_PATH=/lib; export LD_LIBRARY_PATH libc_mount() { # # If there is an optimized libc available in /usr that fits this # processor, mount it on top of the base libc. # LIBC_MOE_32=`/usr/bin/moe -32 '/usr/lib/libc/$HWCAP'` if [ -n "$LIBC_MOE_32" ]; then /usr/sbin/mount | egrep -s "^/lib/libc.so.1 on " if [ $? -ne 0 ]; then /usr/sbin/mount -O -F lofs $LIBC_MOE_32 /lib/libc.so.1 fi fi ARCH64=`isainfo | awk '{print $1}'` LIBC_MOE_64=`/usr/bin/moe -64 /usr/lib/$ARCH64/libc/'$HWCAP'` if [ -n "$LIBC_MOE_64" ]; then /usr/sbin/mount | egrep -s "^/lib/$ARCH64/libc.so.1 on " if [ $? -ne 0 ]; then /usr/sbin/mount -O -F lofs $LIBC_MOE_64 \ /lib/$ARCH64/libc.so.1 fi fi } . /lib/svc/share/smf_include.sh libc_mount # # Most of the operations in this script are only necessary in the global # zone but due to the way initialization scripts like this are packaged, # it needs to currently exist for all zones. # if smf_is_nonglobalzone; then exit $SMF_EXIT_OK fi # # Update kernel driver.conf cache with any additional driver.conf # files found on /usr, and device permissions from /etc/minor_perm. # This code is generally run from /etc/inittab; an immutable global # zone doesn't have permission to run "devfsadm -P" so late in boot. # if [[ -w / ]]; then /usr/sbin/devfsadm -I -P else /usr/sbin/devfsadm -I fi exit $SMF_EXIT_OK