PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Anleitung gesucht


obelixpro
23.07.2012, 19:14
Hallöchen zusammen :)

Ich wollte mal nachfragen ob es hier evtl. ne gute Anleitung gibt zum thema rootserver Linux Debian6 .... Bis jetzt hab ich nur einzelne dinge gefunden wie zB rutorrent installen ...

grüße Obelixpro :)

tantetoni2
23.07.2012, 19:19
zweiter treffer bei google, man ey stellt euch doch nicht immer so an

http://www.galileocomputing.de/download/dateien/2534/galileocomputing_linux_server_einrichten_administrieren.pdf

Thunder™
23.07.2012, 19:21
[Tutorial] rTorrent mit WebUI unter Debian - NetVision-Technik (http://www.netvision-technik.de/forum/showthread.php?t=6281)

Linux verstehen und einsetzen - NetVision-Technik (http://www.netvision-technik.de/forum/showthread.php?t=3270&highlight=debian+howto)

obelixpro
23.07.2012, 19:27
genau danke Thunder diese anleitung hatte ich hier schon gefunden ... nur halt die sachen die voher gemacht werden müssen ...

zB Kernel update / ftp zugang / ovh zugänge löschen und sowas alles ...

Ich hatte noch eine Anleitung hier aber wenn ich mich daran halte passiert ab einem bestimmten punkt nix mehr so sondern es kommen eher nur noch fehler über fehler ..
liegt evtl. daran dass die von 2011 ist und sich in der zeit evtl. schon einiges wieder geändert hat ? Ich mein mit den ftp zugängen kernel ect. klappt alles aber sobald ich dann anfangen will mit rutorrent installen und so dann fangen die fehler an ... :(

ike
23.07.2012, 20:23
sobald ich dann anfangen will mit rutorrent installen und so dann fangen die fehler an ... :(

Nach was fürner Anleitung machste das denn? Die hier außem Forum?

Ne "all-in-one" Anleitung gibts glaub ich nicht.

Was für eine Fehlermeldung wird angezeigt?

Es ist übrigends auch problemlos möglich sich auf den kimsufi Kisten Windows Server 2003 zu installieren, hab das letztens getestet, ist ne ganz lustige spielerei und sofern man ne eigene Lizenz hat kann man sich die Monatlichen Lizenzgebühren sparen :D

obelixpro
23.07.2012, 20:46
ja ich hab ne allinone anleitung hier .. da bin ich jetzt grad dran .. hab jetzt den ftp ect. fertig und bin jetzt bei dem schritt rtorrent zu installen ...und ab da bin ich am überlegen ob ich es überhaupt machen soll weil gleich ja die fehler anfangen würden ...hm

ich würde jetzt c-ares / xmlrpc-c / installen und dann wäre ich bei libtorrent und sobald ich dann ./autogen.sh eingeben würde fangen die ersten fehler schon an .. soweit ich mich erinnern kann , stand da jedes mal was von nicht gefunden oder unbekannt oder sowas ...

Zero111
23.07.2012, 23:40
Ich hatte diese Probleme auch.. mit Ubuntu 12.04

Ich glaube einfach dass libtorrent und rtorrent nicht mit dieser Version kompatibel sind.

mit Ubuntu 10.04 bzw. 11.04 klappt es Problemlos

obelixpro
23.07.2012, 23:41
so alles OHNE fehler installieren können !

jetzt kommt am ende diese meldung :

Starting daemon-ized dtach session for: rtorrent/usr/bin/dtach: No mode was specified.
Try '/usr/bin/dtach --help' for more information.
/etc/init.d/rtorrent: Zeile 124: -n: Kommando nicht gefunden.
failed!


was jetzt ?

obelixpro
24.07.2012, 00:27
das mag ja alles richtig sein was du schreibst ... normalerweise hatte ich dafür auch immer jemanden der mir geholfen hat und erklährt hat ... der hatte mir dann mal ein pdf tut fertig gemacht und mir mal alles gezeigt ... was bis jetzt auch immer geklappt hat ...nun hab ich einfach nur das selbe wiederholt wie sonst auch nur halt mit den updates von den rtorrent sachen ... naja und dadurch läuft es jetzt nicht und da wollt ich doch nur nachfragen ob mir jemand was dazu sagen kann ;)

wenn derjenige momentan vorerst nicht da ist was soll ich machen ? server auslaufen lassen oder lieber selbst machen wie sonst auch ? dann frag ich doch lieber mal nach ist doch dann mein problem wenn was passiert ... :(



--======================================--
--== Beitrag erstellt: 00:27 um 00:06 ==--
--== geantwortet auf Beitrag vom ==--
--== automatische Beitragszusammenführung ==--
--======================================--


obelixpro schrieb nach 20 Minuten und 53 Sekunden:

das ist mein rtorrent init-Script und in Zeile 124 soll etwas falsch sein hm

#!/bin/bash
# Start / Stop rtorrent
### BEGIN INIT INFO
# Provides: rtorrent
# Required-Start: $local_fs $network
# Required-Stop: $local_fs $network
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Start rtorrent as a daemon
### END INIT INFO
. /lib/lsb/init-functions
#############
###<Notes>###
#############
# This script depends on dtach.
# To access to rtorrent, use :
# dtach -a /var/lib/rtorrent/rtorrent.dtach -r winch
##############
###</Notes>###
##############
#######################
##Start Configuration##
#######################
# You can specify your configuration in a different file
# (so that it is saved with upgrades, saved in your home directory,
# or whateve reason you want to)
# by commenting out/deleting the configuration lines and placing them
# in a text file (say /home/user/.rtorrent.init.conf) exactly as you would
# have written them here (you can leave the comments if you desire
# and then uncommenting the following line correcting the path/filename
# for the one you used. note the space after the ".".
# . /etc/rtorrent.init.conf
#Do not put a space on either side of the equal signs e.g.
# user = user
# will not work
# system user to run as
#user="www-data"
user=$2
if [ -z $user ] ; then
exit 0
fi
# the system group to run as, not implemented, see d_start for beginning implementation
group=`id -ng "$user"`
#group="www-data"
# the full path to the filename where you store your rtorrent configuration
config="/home/rtorrent/users/${user}/rtorrent.rc"
# default directory for screen, needs to be an absolute path
#base="/home/${user}"
base="/var/run/screen"
# name of screen session
srnname="rtorrent_${user}"
# file to log to (makes for easier debugging if something goes wrong)
logfile="/home/rtorrent/rtorrent.log"
#######################
###END CONFIGURATION###
#######################
PATH=/usr/bin:/usr/local/bin:/usr/local/sbin:/sbin:/bin:/usr/sbin
DESC="rtorrent_${user}"
NAME=rtorrent
DAEMON=$NAME
SCRIPTNAME=/etc/init.d/${NAME}
RTPIDFILE=/var/run/${NAME}_${user}.pid
DTPIDFILE=/var/run/dtach-${NAME}_${user}.pid
OPTIONS="-n /home/rtorrent/users/${user}/${NAME}.dtach /usr/local/bin/rtorrent -n -o import=$
{config}"
#Functions
checkconfig() {
exists=0
for i in `echo "$PATH" | tr ':' '\n'` ; do
if [ -f $i/$DAEMON ] ; then
exists=1
appdir=$i
apppath=$i/$DAEMON
break
fi
done
if ! [ -x "$apppath" ] ; then
echo "cannot find executable rtorrent binary in PATH $appdir" | tee -a "$logfile" >&2
exit 3
fi
if [ $exists -eq 0 ] ; then
echo "cannot find rtorrent binary in PATH $PATH" | tee -a "$logfile" >&2
exit 3
fi
if ! [ -r "${config}" ] ; then
echo "cannot find readable config ${config}. check that it is there and permissions are
appropriate" | tee -a "$logfile" >&2
exit 3
fi
session=`getsession "$config"`
if ! [ -d "${session}" ] ; then
echo "cannot find readable session directory ${session} from config ${config}. check
permissions" | tee -a "$logfile" >&2
exit 3
fi
}
getsession() {
session=`awk '/^session/{print($3)}' "$config"`
echo $session
}
makepidfiles() {
#make sure files don't exist before we start
if [ -r "$DTPIDFILE" ] ; then
rm -f "$DTPIDFILE"
fi
if [ -r "$RTPIDFILE" ] ; then
rm -f "$RTPIDFILE"
fi
dtpid=`ps -u ${user} | egrep dtach | awk '!/egrep/' | awk '{print($1)}'`
rtpid=`ps -u ${user} | egrep ${DAEMON} | awk '!/egrep/' | awk '{print($1)}'`
if [ -z $rtpid ] ; then
echo "Finding PID(s) failed"
exit 3
else
echo $rtpid > $RTPIDFILE
echo $dtpid > $DTPIDFILE
fi
}
start() {
log_daemon_msg "Starting daemon-ized dtach session for" "$NAME"
echo "starting daemon-ized dtach session for ${NAME}; command = start-stop-daemon --start
--chuid ${user} --pidfile $DTPIDFILE --startas /usr/bin/dtach -- ${OPTIONS}" > "$logfile"
start-stop-daemon --start --chuid ${user} --pidfile "$DTPIDFILE" --startas /usr/bin/dtach --
$OPTIONS
if [ $? != 0 ]; then
log_end_msg 1
exit 1
else
makepidfiles
log_end_msg 0
fi
}
stop() {
SIGNAL="TERM"
if [ -f "$RTPIDFILE" ]; then
log_daemon_msg "Stopping daemon-ized dtach session for" "$NAME"
start-stop-daemon --stop --signal $SIGNAL --quiet --pidfile "$RTPIDFILE"
if [ $? = 0 ]; then
start-stop-daemon --stop --signal $SIGNAL --quiet --pidfile "$DTPIDFILE"
if [ $? = 0 ]; then
rm -f "$DTPIDFILE"
fi
log_end_msg 0
rm -f "$RTPIDFILE"
else
SIGNAL="KILL"
log_daemon_msg "Couldn't stop $NAME daemon gracefully. Trying to $SIGNAL" "$NAME
instead"
#Trying to find the PIDs again
makepidfiles
start-stop-daemon --stop --signal $SIGNAL --quiet --pidfile "$RTPIDFILE"
if [ $? = 0 ]; then
start-stop-daemon --stop --signal $SIGNAL --quiet --pidfile "$DTPIDFILE"
if [ $? = 0 ]; then
rm -f "$DTPIDFILE"
fi
rm -f "$RTPIDFILE"
log_daemon_msg "$NAME has been killed. This is not optimal, so please check if there
were failures during session startup."
log_end_msg 0
else
log_daemon_msg "Script could not kill"" $NAME. Please try stopping the dtach session
manually"
log_end_msg 1
fi
fi
fi
}
#End Functions
#Script
checkconfig
case "$1" in
start)
start
;;
stop)
stop
;;
*)
echo "Usage: ${SCRIPTNAME} {start|stop} {USER}" >&2
exit 1
;;
esac
exit 0

Cerberus
28.07.2012, 00:44
wo ist das init-Script her?

Thunder™
28.07.2012, 01:15
aus dem Forum (forums.rutorrent.org) würde ich behaupten...da es identisch ist mit deren..