Reference: http://h20565.www2.hp.com/hpsc/doc/public/display?docId=emr_na-c02018888
QUESTION: 10
Refer to the exhibit
Which configuration produces the output?
A. "omni 5555/tcp" in/etc/inetd.conf
"omni strean tcp6 nowait root /opt/omni/lbin/inet inet" in /etc/inetsvcs.conf
B. "omni 5555/tcp" in/etc/services
"omni strean tcp6 nowait root /opt/omni/lbin/inet inet" in /etc/inetd.conf
C. "omni 5555/tcp" in/etc/services
"omni strean tcp6 nowait root /opt/omni/lbin/inet inet" in /etc/inetsvcs.conf
D. "omni 5555/tcp" in/etc/inetd.conf
"omni strean tcp6 nowait root /opt/omni/lbin/inet inet" in /etc/services
Answer(s): D
Reference: http://wiki.loovsys.eu/index.php/HP_Data_Protector_installation_on_qnap_TS-X69U
#!/bin/sh
PATH=/opt/bin:/bin:/usr/bin:/usr/sbin:$PATH
export PATH
if [ ! -s "/etc/opt" ]
then
echo "Linking /etc/opt to /opt/dp_etc/opt"
ln -s /opt/dp_etc/opt /etc/opt
fi
if [ ! -s "/var/opt" ]
then
echo "Linking /var/opt to /opt/dp_var/opt"
ln -s /opt/dp_var/opt /var/opt
fi
if [ ! -f /etc/redhat-release ]
then
echo "I am redhat, true story"
cp /opt/dp_misc/redhat-release /etc/redhat-release
fi
cat /etc/mtab | grep -q "tmpfs / tmpfs"
if [ $? -ne 0 ]
then
echo "Adding nicer mountpoint of root to mtab"
echo "tmpfs / tmpfs rw 0 0" >> /etc/mtab