Shell komisches Problem
-
- Posts: 288
- Joined: 2013-04-14 05:08
- Location: Holzgerlingen
Shell komisches Problem
Komisch ist das und wo kommt es her?
Siehe Bild:
http://prntscr.com/6j5ijr
Sobald ich irgendwas mit service mache kommt diese Informationen und ich weiß nicht wie ich sie aktiviert geschweige davon es wieder deaktiviert bekomme. Hat jemand ein Tipp?
Siehe Bild:
http://prntscr.com/6j5ijr
Sobald ich irgendwas mit service mache kommt diese Informationen und ich weiß nicht wie ich sie aktiviert geschweige davon es wieder deaktiviert bekomme. Hat jemand ein Tipp?
LG
Proti
https://phoenix-blog.de
"Die Kamera wird bei hohen ISO Werten aber rauschen. Nichts ahnend hielt er sich die Kamera ans Ohr!"
Proti
https://phoenix-blog.de
"Die Kamera wird bei hohen ISO Werten aber rauschen. Nichts ahnend hielt er sich die Kamera ans Ohr!"
-
- Project Manager
- Posts: 11164
- Joined: 2003-02-27 01:00
- Location: Hamburg
Re: Shell komisches Problem
Was sagen denn:
und
Code: Select all
which service
whereis service
Code: Select all
cat /usr/sbin/service
PayPal.Me/JoeUser ● FreeBSD Remote Installation
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task, and one
of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task, and one
of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
-
- Posts: 288
- Joined: 2013-04-14 05:08
- Location: Holzgerlingen
Re: Shell komisches Problem
Mir fällt ein das ich Varnish installiert hatte um was zu testen, aber mein Vorhaben gleich wieder verwarf. Ich habe das Gefühl das mein Server etwas langsam ist daher wollte ich meinen Blog besser cachen. Mir kommt es zumindest so vor als würde mein Blog etwas langsam laden!Joe User wrote:Was sagen denn:undCode: Select all
which service whereis service
Code: Select all
cat /usr/sbin/service
Code: Select all
/usr/sbin/service
Code: Select all
service: /usr/sbin/service /usr/share/man/en.ISO8859-1/man8/service.8.gz /usr/src/usr.sbin/service
Code: Select all
. /etc/rc.subr
load_rc_config 'XXX'
usage () {
echo ''
echo 'Usage:'
echo "${0##*/} -e"
echo "${0##*/} -R"
echo "${0##*/} [-v] -l | -r"
echo "${0##*/} [-v] <rc.d script> start|stop|etc."
echo "${0##*/} -h"
echo ''
echo '-e Show services that are enabled'
echo "-R Stop and start enabled $local_startup services"
echo "-l List all scripts in /etc/rc.d and $local_startup"
echo '-r Show the results of boot time rcorder'
echo '-v Verbose'
echo ''
}
while getopts 'ehlrRv' COMMAND_LINE_ARGUMENT ; do
case "${COMMAND_LINE_ARGUMENT}" in
e) ENABLED=eopt ;;
h) usage ; exit 0 ;;
l) LIST=lopt ;;
r) RCORDER=ropt ;;
R) RESTART=Ropt ;;
v) VERBOSE=vopt ;;
*) usage ; exit 1 ;;
esac
done
shift $(( $OPTIND - 1 ))
if [ -n "$RESTART" ]; then
skip="-s nostart"
if [ `/sbin/sysctl -n security.jail.jailed` -eq 1 ]; then
skip="$skip -s nojail"
fi
[ -n "$local_startup" ] && find_local_scripts_new
files=`rcorder ${skip} ${local_rc} 2>/dev/null`
for file in `reverse_list ${files}`; do
if grep -q ^rcvar $file; then
eval `grep ^name= $file`
eval `grep ^rcvar $file`
checkyesno $rcvar 2>/dev/null && run_rc_script ${file} stop
fi
done
for file in $files; do
if grep -q ^rcvar $file; then
eval `grep ^name= $file`
eval `grep ^rcvar $file`
checkyesno $rcvar 2>/dev/null && run_rc_script ${file} start
fi
done
exit 0
fi
if [ -n "$ENABLED" -o -n "$RCORDER" ]; then
# Copied from /etc/rc
skip="-s nostart"
if [ `/sbin/sysctl -n security.jail.jailed` -eq 1 ]; then
skip="$skip -s nojail"
fi
[ -n "$local_startup" ] && find_local_scripts_new
files=`rcorder ${skip} /etc/rc.d/* ${local_rc} 2>/dev/null`
fi
if [ -n "$ENABLED" ]; then
for file in $files; do
if grep -q ^rcvar $file; then
eval `grep ^name= $file`
eval `grep ^rcvar $file`
checkyesno $rcvar 2>/dev/null && echo $file
fi
done
exit 0
fi
if [ -n "$LIST" ]; then
for dir in /etc/rc.d $local_startup; do
[ -n "$VERBOSE" ] && echo "From ${dir}:"
[ -d ${dir} ] && /bin/ls -1 ${dir}
done
exit 0
fi
if [ -n "$RCORDER" ]; then
for file in $files; do
echo $file
if [ -n "$VERBOSE" ]; then
case "$file" in
*/${early_late_divider})
echo '========= Early/Late Divider =========' ;;
esac
fi
done
exit 0
fi
if [ $# -gt 1 ]; then
script=$1
shift
else
usage
exit 1
fi
cd /
for dir in /etc/rc.d $local_startup; do
if [ -x "$dir/$script" ]; then
[ -n "$VERBOSE" ] && echo "$script is located in $dir"
exec env -i HOME=/ PATH=/sbin:/bin:/usr/sbin:/usr/bin $dir/$script $*
fi
done
# If the script was not found
echo "$script does not exist in /etc/rc.d or the local startup"
echo "directories (${local_startup})"
exit 1
LG
Proti
https://phoenix-blog.de
"Die Kamera wird bei hohen ISO Werten aber rauschen. Nichts ahnend hielt er sich die Kamera ans Ohr!"
Proti
https://phoenix-blog.de
"Die Kamera wird bei hohen ISO Werten aber rauschen. Nichts ahnend hielt er sich die Kamera ans Ohr!"
-
- Project Manager
- Posts: 11164
- Joined: 2003-02-27 01:00
- Location: Hamburg
Re: Shell komisches Problem
Ich habe mal einen kurzen Blick aufs System geworfen und Du hast in /etc/rc.conf ein einzelnes "w" stehen, dieses verursacht das von Dir beobachtete Verhalten. Das "w" löschen und gut is.
PayPal.Me/JoeUser ● FreeBSD Remote Installation
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task, and one
of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task, and one
of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
-
- Posts: 288
- Joined: 2013-04-14 05:08
- Location: Holzgerlingen
Re: Shell komisches Problem
Wie kommt das da rein ich habe nichts an der rc.conf gebastelt *g* ich habe varnish mit onestart gestartet!
Danke für die Hilfe
Danke für die Hilfe
LG
Proti
https://phoenix-blog.de
"Die Kamera wird bei hohen ISO Werten aber rauschen. Nichts ahnend hielt er sich die Kamera ans Ohr!"
Proti
https://phoenix-blog.de
"Die Kamera wird bei hohen ISO Werten aber rauschen. Nichts ahnend hielt er sich die Kamera ans Ohr!"
-
- Posts: 288
- Joined: 2013-04-14 05:08
- Location: Holzgerlingen
Re: Shell komisches Problem
Wie empfindest du die Ladezeit, kommt es dir auch so schleppend vor?
LG
Proti
https://phoenix-blog.de
"Die Kamera wird bei hohen ISO Werten aber rauschen. Nichts ahnend hielt er sich die Kamera ans Ohr!"
Proti
https://phoenix-blog.de
"Die Kamera wird bei hohen ISO Werten aber rauschen. Nichts ahnend hielt er sich die Kamera ans Ohr!"
-
- Project Manager
- Posts: 11164
- Joined: 2003-02-27 01:00
- Location: Hamburg
Re: Shell komisches Problem
Könnte etwas besser sein, ist aber für die Seitengrösse auch nicht allzu schlecht: http://tools.pingdom.com/fpt/#!/biaZ4U/
PayPal.Me/JoeUser ● FreeBSD Remote Installation
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task, and one
of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task, and one
of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
-
- Posts: 288
- Joined: 2013-04-14 05:08
- Location: Holzgerlingen
Re: Shell komisches Problem
Jo kenne ich. Ich habe grundsätzlich um die 88 Punkte. Ich nehme meist https://developers.google.com/speed/pagespeed/insights/ Aber trotzdem kommt es mir etwas schleppend vor.
LG
Proti
https://phoenix-blog.de
"Die Kamera wird bei hohen ISO Werten aber rauschen. Nichts ahnend hielt er sich die Kamera ans Ohr!"
Proti
https://phoenix-blog.de
"Die Kamera wird bei hohen ISO Werten aber rauschen. Nichts ahnend hielt er sich die Kamera ans Ohr!"
-
- Project Manager
- Posts: 11164
- Joined: 2003-02-27 01:00
- Location: Hamburg
Re: Shell komisches Problem
Wenn Du die Widgets von Facebook, Twitter und Google+ sowie den Tracker von Wordpress rauswirfst, sollte es deutlich schneller sein.
PayPal.Me/JoeUser ● FreeBSD Remote Installation
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task, and one
of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task, and one
of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
-
- Posts: 288
- Joined: 2013-04-14 05:08
- Location: Holzgerlingen
Re: Shell komisches Problem
Jetzt sollte es glaube ich besser sein. Denke ich.
LG
Proti
https://phoenix-blog.de
"Die Kamera wird bei hohen ISO Werten aber rauschen. Nichts ahnend hielt er sich die Kamera ans Ohr!"
Proti
https://phoenix-blog.de
"Die Kamera wird bei hohen ISO Werten aber rauschen. Nichts ahnend hielt er sich die Kamera ans Ohr!"
-
- Project Manager
- Posts: 11164
- Joined: 2003-02-27 01:00
- Location: Hamburg
Re: Shell komisches Problem
Ja, ist 2-3 Mal schneller.
PayPal.Me/JoeUser ● FreeBSD Remote Installation
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task, and one
of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task, and one
of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
-
- Posts: 288
- Joined: 2013-04-14 05:08
- Location: Holzgerlingen
Re: Shell komisches Problem
*g* Schon gelesen? https://www.leblogger.de/2015/03/in-eig ... -joe-user/
LG
Proti
https://phoenix-blog.de
"Die Kamera wird bei hohen ISO Werten aber rauschen. Nichts ahnend hielt er sich die Kamera ans Ohr!"
Proti
https://phoenix-blog.de
"Die Kamera wird bei hohen ISO Werten aber rauschen. Nichts ahnend hielt er sich die Kamera ans Ohr!"