You are on page 1of 17

9/15/2015 Linux in My Box: Utorrent Server on Linux, Step by Step How To

0 More NextBlog

Linux in My Box
MyLinuxExperiences...WhatmorecanIsay?

FRIDAY,DECEMBER30,2011 Therewasanerr

UtorrentServeronLinux,StepbyStepHowTo TOTALPAGEVIE

IthasbeensixyearssinceImigratedtoLinux(fromwindows)andneverlookedback.IusedtouseuTorrentonwindowsasmytorrentclient.It
wassmall,lightweightandveryuserfriendly.Franklyspeakinginthesesixyearsofmylinuxvoyage,Ineverfoundanyalternativetothat.Until
recentlyIheardthatutorrentisnowavailableforlinux.Keepingmyhopeshigh,Igaveitatryanditliveduptomyexpectations.Asexpectedit ABOUTME
isfreebutclosedsource,withalittlehopefromtheforumsthatitmightbecomeopensourceinthefuture.Butanyways,Iamreallythankfulto
theutorrentteamforbrinigingoututorrentforlinux.

Acoupleofthingsfeltmissingbutstillitisbetterthanthemost,infactall!Itiscurrentlyanalphareleaseofversion3.0build,withonlyweb
basedGUIand32bitrelease(requires32bitlibrariesonx64systems). sometimesIdon't
singlewordofwh
Hereisacompletestepbystepinstallationguide: Viewmycomplet

Step0:PreRequisites
POPULARPOST

Accordingtothewebsite: UtorrentServero
StepHowTo
SystemRequirements: Ithasbeensixye
migratedtoLinux
x86Ubuntu9.10+,Debian5+,Fedora12+ andneverlooked
useuTorrentonw
Linuxkernel2.6.13ornewerrequired torrentcli...

utserverbinaryrequiresglibc2.11ornewer.Docheckthisbeforecontinuing.Tocheckyourversionofglibc: LoggingShellCo
Ifyouown/admin
rpmqglibc machineorserve
usedbymultipleu
timeyoumustha
(Note:Ifyouhaveoldlibraries,orfacinganylibraryrelatederror,IhaveadifferentguideforyouHERE) logand...

Iamusinga32bitCentos6.2,butthisguideshouldworkwithmostlinuxdistributions.Ifyouareusingax64distribution,you'llneedtoinstallall UtorrentonCento
the32bitlibraries. notfoundProblem
Note:Thisisaqu
whoarefacingG
Incaseofa32bitdistro,therearehardlyanydependenciestobeinstalled.Theyareinstalledbydefaultevenintheminimalinstallations.Here libraryissueswith
isthelistofdependenciesanyway: arenotfacingthe
h...
glibc>=2.11
libgcc StandaloneUtorr
(64bit)onLinuxw
openssl dependecies
krb5libs Utorrenthasrelea
forLinuxplatform
libcom_err here).Thereleas
zlib Ubuntu12.04(LT
is...
keyutilslibs
libselinux FORMERRinBin
RecentlyIwasco
Ifyouareusinga32bitdistro: onCentos6.2.Th
prettystraightforw
yuminstallglibclibgccopensslkrb5libslibcom_errzlibkeyutilslibslibselinux nameserverwith
locald...
Ifyouareusinga64bitdistro,installthe32bitlibraries:
ReverseSSHtun
(remotesshforwa
Portforwardingo
yuminstallglibcglibc.i[36]86libgcclibgcc.i[36]86opensslopenssl.i[36]86krb5libskrb5libs.i[36]86libcom_err featureofssh(a.k
libcom_err.i[36]86zlibzlib.i[36]86keyutilslibskeyutilslibs.i[36]86libselinuxlibselinux.i[36]86 provideyouextra
andaccessibility.

Migratingyoursq
Step1:Makebasicdirectories contactstoround
Asimplescriptth
Iwillkeepitin/opt(ofcourseyoucankeepitanywherefeasible) squirrelwebmail
usertovcardform
beimportedtoro
mkdir/opt/utorrent
#...
mkdir/opt/utorrent/conf
mkdir/opt/utorrent/data
mkdir/opt/utorrent/pid HowIgotstarted
mkdir/opt/utorrent/webui WellasfarasIam
mkdir/opt/utorrent/log wasintroducedto

http://blog.kxr.me/2011/12/utorrent-server-on-linux-step-by-step.html 1/17
9/15/2015 Linux in My Box: Utorrent Server on Linux, Step by Step How To
whenmy"OSCo
(Mr.Adeel)introd
c...
Step2:DownloadTorrentServer

Atthetimeofthiswriting,TorrentServeralpha(3.0build25053)wasthelatestavailableone.Youcanfindthelatestreleasehere.Download
thepackagetoatmplocation,extractandthencopytherequiredfiles:

wgetO/tmp/utorrentserver3.025053.tar.gzhttp://download.utorrent.com/linux/utorrentserver3.025053.tar.gz
tardirectory/tmpxzf/tmp/utorrentserver3.025053.tar.gz

cp/tmp/utorrentserverv3_0/utserver/opt/utorrent/

cp/tmp/utorrentserverv3_0/webui.zip/opt/utorrent/webui/

Step3:Librariescheck

Beforeproceedingfurther,itwillbeagoodideatolocateanymissinglibraries.
Uselddcommandtofindoutanymissinglibrary:

lddr/opt/utorrent/utserver

Youmightgetthefollowingerror:

/opt/utorrent/utserver:errorwhileloadingsharedlibraries:libssl.so.0.9.8:cannotopensharedobjectfile:No
suchfileordirectory

or

/opt/utorrent/utserver:errorwhileloadingsharedlibraries:libcrypto.so.0.9.8:cannotopensharedobjectfile:No
suchfileordirectory

Ifopensslisinstalledproperly,thismightbebecauseyouhaveanewerversionofthesharedlibrary.Creatingasoftlinkshouldsolvethe
problem.

Firstfindoutwhatversionyouhave:

find/*/lib/*libtypefname"libssl.so.*"

find/*/lib/*libtypefname"libcrypto.so.*"

Thiswillshowyouthelibraryyouhaveinstalled,forexampleinmycaseitshowedmethatI'velibssl.so.1.0.0andlibcrypto.so.1.0.0installed:

[root@localhost~]#find/*/lib/*libtypefname"libssl.so.*"
/usr/lib/libssl.so.1.0.0

[root@localhost~]#find/*/lib/*libtypefname"libcrypto.so.*"
/usr/lib/libcrypto.so.1.0.0

Nowsimplycreateasoftlinkfromtheoneyouhavetotheonerequiredbyutserver:

lns/usr/lib/libssl.so.1.0.0/usr/lib/libssl.so.0.9.8

lns/usr/lib/libcrypto.so.1.0.0/usr/lib/libcrypto.so.0.9.8

(ofcourseyoucanalwaysinstallthecorrectversionofopensslinsteadofdoingthissoftlinktrick)

Ifeverythingisfineyoushouldgetoutputsomewhatlikethis:

[root@hisapps]$lddr/opt/utorrent/utserver
/opt/utorrent/utserver:/usr/lib/libcrypto.so.0.9.8:noversioninformationavailable(requiredby
/opt/utorrent/utserver)
/opt/utorrent/utserver:/usr/lib/libssl.so.0.9.8:noversioninformationavailable(requiredby
/opt/utorrent/utserver)
linuxgate.so.1=>(0x0042c000)
libssl.so.0.9.8=>/usr/lib/libssl.so.0.9.8(0x00cb8000)
libcrypto.so.0.9.8=>/usr/lib/libcrypto.so.0.9.8(0x009dc000)
libpthread.so.0=>/lib/libpthread.so.0(0x00110000)
libm.so.6=>/lib/libm.so.6(0x00800000)
librt.so.1=>/lib/librt.so.1(0x001a2000)
libgcc_s.so.1=>/lib/libgcc_s.so.1(0x00465000)
libc.so.6=>/lib/libc.so.6(0x001ab000)
/lib/ldlinux.so.2(0x005a8000)
libgssapi_krb5.so.2=>/lib/libgssapi_krb5.so.2(0x00c25000)
libkrb5.so.3=>/lib/libkrb5.so.3(0x0033b000)
libcom_err.so.2=>/lib/libcom_err.so.2(0x0012b000)
libk5crypto.so.3=>/lib/libk5crypto.so.3(0x00622000)
libresolv.so.2=>/lib/libresolv.so.2(0x00130000)
libdl.so.2=>/lib/libdl.so.2(0x0045b000)
libz.so.1=>/lib/libz.so.1(0x00767000)

http://blog.kxr.me/2011/12/utorrent-server-on-linux-step-by-step.html 2/17
9/15/2015 Linux in My Box: Utorrent Server on Linux, Step by Step How To
libkrb5support.so.0=>/lib/libkrb5support.so.0(0x004be000)
libkeyutils.so.1=>/lib/libkeyutils.so.1(0x00991000)
libselinux.so.1=>/lib/libselinux.so.1(0x0014a000)

(Youcanignorethe"noversioninformation"warning).Thisshowseveryrequirementisfulfilledandutorrentservercannowrunonthis
machine.Letsnowdosomefinalconfigtweaks.

Step4:Createconfigfile

Intheoryyoucanjustruntheutserverbinary(likeyoudidinthepreviousstep),andutorrentservershouldbereadyanduseable.Youdon't
necessarilyneedaconfigfileButitisalwaysagoodideatohaveaconfigfileinhand,it'llmakeeditingandexperimentingwiththe
configurationsmucheasierandgiveyoualotmoreoptionstoplaywith.

Iwasn'tabletofindacompleteandcomprehensiveconfigfile.Usersareeithernotusingconfigfileorusingitjustforacoupleofoptions.
I'vecreatedthisconfigfilefromthedocumentationandaddedalltheoptionsIfound.Allthedirectivesareexplainedinthecommentsandsetto
thedefaultvalue.

Hereitis(onlydir_rootissetto/opt/utorrent/dataallothervaluesaredefault):

###########################################
######
###UtorrentServerv3.0ConfigFile###
######
###ByKhizerNaeem###
###khizernaeem@gmail.com###
###Date:29/12/2011###
######
###########################################
###########################################
#Note:Don'tusequotesordoublequoteswhengivingavalue
#Don'taddtrailing/whenspecifyinganydirectory

#####################
##RegularSettings#
#####################

#bind_port(integer):
#Defaultvalue:6881.PortusedforBitTorrentprotocol.Thiscanbeanyvalueintherange102565000.
bind_port:6881

Don'tworrymostofthelinesintheconfigarecomments(only34directivesintotal).Irecommendgoingthroughitonce.

CopyPastethisconfigurationintothefileutserver.confin/opt/utorrent/conf/directoryusingyourfavouritetexteditorlikevimordownloadit
directly:

wgetO/opt/utorrent/conf/utserver.confhttp://kxr.me/blog/uts/utserver.conf

Nowyoucanstarttheutorrentserverwiththefollowingcommand:

/opt/utorrent/utserversettingspath"/opt/utorrent/webui/"configfile"/opt/utorrent/conf/utserver.conf"logfile
"/opt/utorrent/log/ut.log"pidfile"/opt/utorrent/pid/utserver.pid"daemon

andstopitwith:

kill`cat/opt/utorrent/pid/utserver.pid`

Thatisnotveryconvenient,soletscreateascripttomakethingseasier.

#!/bin/sh

uts_bin="/opt/utorrent/utserver"
pid_file="/opt/utorrent/pid/utserver.pid"
settings_path="/opt/utorrent/webui/"
config_file="/opt/utorrent/conf/utserver.conf"
log_file="/opt/utorrent/log/ut.log"

start(){

if[s"$pid_file"]
then
kills0`cat$pid_file`>/dev/null2>&1
if["$?"=="0"]
then
echo"Err:Utorrentseemstoberunning,PID`cat$pid_file`"
else
echo"StartingUtorrentServer.."
cd$settings_path$uts_binsettingspath$settings_pathconfigfile$config_filelogfile
$log_filepidfile$pid_filedaemon
Createafilecalledutsctlin/opt/utorrentandcopypastethecodeintoitusingyourfavouriteeditorordownloaditdirectly:

wgetO/opt/utorrent/utsctlhttp://kxr.me/blog/uts/utsctl

http://blog.kxr.me/2011/12/utorrent-server-on-linux-step-by-step.html 3/17
9/15/2015 Linux in My Box: Utorrent Server on Linux, Step by Step How To
Onceyouhavecreatedthisscriptfile,letsmakeitexecuteable:

chmod+x/opt/utorrent/utsctl

Andalsomakeiteasilyaccessible,sothatwedon'thavetotypethewholepathagainandagain:

lns/opt/utorrent/utsctl/usr/bin/utsctl

Nowstartingstopingandcheckingthestatusisaseasyasthis:

utsctlstart

utsctlstop

utsctlstatus

Step5:StartTorrentServer

Letsnowstarttheutorrentserver:

utsctlstart

Itshouldoutput"serverstartedusinglocaleen_US.UTF8"andreturnbacktobashprompt.(Optionally,youcanaddthiscommandtorc.local
toautostartitatstartup)

Youshouldnowbeabletoaccesstheutorrentserverguionlocalhost:

http://localhost:8080/gui

orviatheipaddress/hostnameifaccessingfromaremotecomputer:

http://1.2.3.4:8080/gui

(don'tforgettoallowthisportinthesystem'siptablefirewallandanyotherfirewallinbetween)

Hereisascreenshot:

Playingwiththeconfiguration:

Whenyouchangeaconfigurationinutserver.conf,justrestartingtheutserverdaemonwon'tupdatethechangesinWebUI.You'llhaveto
removethesettings.datfilesandthenstarttheserveragaini.e,

utsctlstop
rmf/opt/utorrent/webui/settings.dat*
utsctlstart

I'veaddedthe"reload"optionintheutsctlscriptthatwilldoallthesethreethings:

utsctlreload

GoodLuck:)

Questions/Suggestions/Comments/Corrections/AdditionsaboutthisHowToarewelcome.
PostedbyKhizerNaeemat2:14AM
Labels:64bit,howto,stepbystepguide,utorrent,utorrenton64bit,utorrentoncentos,utorrentonfedora,utorrentonlinux,utorrentonredhat,utorrent
server,utserver,utserver.conf,x64,TorrentServer

100comments:

Anonymous January29,2012at11:45PM

Thiscommenthasbeenremovedbyablogadministrator.

Reply

http://blog.kxr.me/2011/12/utorrent-server-on-linux-step-by-step.html 4/17
9/15/2015 Linux in My Box: Utorrent Server on Linux, Step by Step How To

Replies

J.Albert July1,2012at4:21PM

Iappreciateyourdedicationtothoroughness.You'vecreatedaspotontutorialhere.

KhizerNaeem July2,2012at9:49AM

Thanks

Reply

Anonymous January31,2012at4:56AM

yoursoftlinkdoesntworkcorrectlyorit`sjustotherprobleminmycase((

lns/usr/lib/libssl.so.1.0.0/usr/lib/libssl.so.0.9.8
lns/usr/lib/libcrypto.so.1.0.0/usr/lib/libcrypto.so.0.9.8
afterthiscommandsitrytostartmyutorrserver:

/opt/utorrent/utserver:errorwhileloadingsharedlibraries:libssl.so.0.9.8:cannotopensharedobjectfile:Nosuchfileordirectory

P.S.openSUSE12.1

maybetheeselibrariesshouldbeupdatedbeforewheniappliedtheesecommands?:
lns/usr/lib/libssl.so.1.0.0/usr/lib/libssl.so.0.9.8
lns/usr/lib/libcrypto.so.1.0.0/usr/lib/libcrypto.so.0.9.8

Reply

Replies

KhizerNaeem January31,2012at8:06AM

Whatistheoutputof:
find/*/lib/*libtypefname"libssl.so.*"
and
find/*/lib/*libtypefname"libssl.so.*"

Reply

Anonymous January31,2012at11:07PM

infirstcommand:
/lib/libssl.so.1.0.0
andinthesecondcasewehavethis:
/lib/libssl.so.1.0.0

wheresdifferencebetweentheesecommandswhichushowme?ormaybeididntunderstanduproperly?yourideaits..?

Reply

Replies

KhizerNaeem January31,2012at11:51PM

I think I found the problem, in redhat/centos systems the libssl and libcrypto are in /usr/lib, in your case (openSuse) its in /lib. So These
commandsshouldworkforyou:

lns/lib/libssl.so.1.0.0/lib/libssl.so.0.9.8
lns/usr/libcrypto.so.1.0.0/lib/libcrypto.so.0.9.8

Ihopethishelps:)

Reply

Anonymous February1,2012at12:30AM

yesitstruewhatusayaboutsystemdirectoriesformyos.
theniused2commandswhichushowme:
lns/lib/libssl.so.1.0.0/lib/libssl.so.0.9.8
lns/usr/libcrypto.so.1.0.0/lib/libcrypto.so.0.9.8
butfirstwaytolibssl098ihave
andthesecondwaydoesntexistbecauseicantfindthisfileinwaythatushowme:ibcrypto.so.1.0.0
andididntfoundhimwithsearch
sowhat`snow?

Reply

http://blog.kxr.me/2011/12/utorrent-server-on-linux-step-by-step.html 5/17
9/15/2015 Linux in My Box: Utorrent Server on Linux, Step by Step How To
Anonymous February1,2012at12:43AM

WOW!ifoundhim!
thewayishere:/lib/libcrypto.so.0.9.8>/usr/libcrypto.so.1.0.0
libcrypto.so.1.0.0

))

Reply

Anonymous February1,2012at12:48AM

/lib/libcrypto.so.0.9.8>/usr/libcrypto.so.1.0.0
there'sanerroroccurredisn'tit?
andhighlightinginredinconsolemode..
thisshouldbecorrected..buthow?)

Reply

Anonymous February1,2012at12:55AM

ln:failedtocreateasymboliclink/lib/libcrypto.so.0.9.8:Thefileexists
andfirstcaseihave:libssl.so.0.9.8>/lib/libssl.so.1.0.0withouterrorandredhighlight

Reply

Replies

KhizerNaeem February1,2012at1:15AM

Whatstheoutputof

find/*/lib/*libtypefname"libcrypto.so.*"

Anonymous February1,2012at1:41AM
/lib/libcrypto.so.1.0.0

Reply

Anonymous February1,2012at1:40AM

well..itsfinallycompletetocreateserverbutnowihavenewtroublewithhim)))
http://localhost:8080/gui
whenitryingtoconnecttohimthroughgooglechrome,heasksmeaboutmyloginandpassword,butwhenienterrequesteddataintotheformthen
utorrdontacceptingthisdataandrepeathisrequest..andthisisiterate(imeancycle)

Reply

Anonymous February1,2012at1:50AM

andyes,Iforgottellyoutheserversuccessfullystartedandworksitisviewedintothesystemmonitor

Reply

Anonymous February1,2012at2:21AM

lol!!ilookatconffileandseewhatstheproblemihavewithloginandpwd))))
Thanksalotforall!

Reply

Anonymous February2,2012at9:51PM

Hi
Newbieinlinux,Itrytoworkutorrentinxubuntu11.10,theerrorwas"./utserver:errorwhileloadingsharedlibraries:libssl.so.0.9.8:cannotopenshared
objectfile:Nosuchfileordirectory",andnochancetofixit.
Itryeverythingfromherebutfailed.
WhatcanIdo?
Thanks

Reply

Replies

KhizerNaeem February3,2012at4:30PM

Whatistheoutputof:
find/*/lib/*libtypefname"libssl.so.*"
and
find/*/lib/*libtypefname"libcrypto.so.*"

http://blog.kxr.me/2011/12/utorrent-server-on-linux-step-by-step.html 6/17
9/15/2015 Linux in My Box: Utorrent Server on Linux, Step by Step How To

Reply

Patricio February6,2012at8:23PM

Ahowtoverygood!!
Ipreferruntheutserverwithauserspecific(utorrentinmycase)toavoidsecurityproblems:

InStep1
useraddutorrentd/opt/utorrents/bin/bash

InStep4
Changepermision:
chownutorrent:utorrent/opt/utorrent

Andaddininitscript:
!/bin/sh

shell_user="utorrent"
uts_bin="/opt/utorrent/utserver"
pid_file="/opt/utorrent/pid/utserver.pid"
settings_path="/opt/utorrent/webui/"
config_file="/opt/utorrent/conf/utserver.conf"
log_file="/opt/utorrent/log/ut.log"

start(){

if[s"$pid_file"]
then
kills0`cat$pid_file`>/dev/null2>&1
if["$?"=="0"]
then
echo"Err:Utorrentseemstoberunning,PID`cat$pid_file`"
else
echo"StartingUtorrentServer.."
suc"$uts_binsettingspath$settings_pathconfigfile$config_filelogfile$log_filepidfile$pid_filedaemon"$shell_user
fi
else
echo"StartingUtorrentServer.."
suc"$uts_binsettingspath$settings_pathconfigfile$config_filelogfile$log_filepidfile$pid_filedaemon"$shell_user
fi
}

.....(thesameoforiginalscript)

Reply

Replies

KhizerNaeem February6,2012at11:15PM

Nice,Verythoughtfulindeed!InmycaseIamrunningitbehindclosedports(NAT)sorunningitasarootuserdidn'tbotheredme:)

Alexander July6,2012at3:10PM

Thanksforthisscript!

Danny January26,2014at11:30AM

I'mgettinganerrorwiththesuwhenIrunutsctlstart.Itasksmeforapassword(nottheadmin/nopassworddefinedintheconffile)and
thengivesanauthenticationfailurewhenIcan'tprovideone.

Outputlookslikethis:
$utsctlstart
/usr/bin/utsctl:15:[:1:unexpectedoperator
StartingUtorrentServer..
Password:
su:Authenticationfailure

Btw,Icreatedtheuserasyoudid"useraddutorrentd/opt/utorrents/bin/bash"andthendeletedtheuserandtriedagainwith"useraddr
utorrentd/opt/utorrents/bin/bash"tomakeitasystem(nopassword,nologin)account.

Itriedanumberofotherflags(e.g.,"M"fornopassword)butstillhavethesameproblem.I'mgoingtoremovetheutorrentuserstuff,but
that'stoobadbecauseitlookedcleaner.

Danny January26,2014at11:58AM

2thingsIdidn'tresolvetheauthenticationerror(yet?Imayormaynottrythatagain),butmyoutputpastedabovehadanothererrorinit
thatIjustsolved.

http://blog.kxr.me/2011/12/utorrent-server-on-linux-step-by-step.html 7/17
9/15/2015 Linux in My Box: Utorrent Server on Linux, Step by Step How To
Theline:
"/usr/bin/utsctl:15:[:1:unexpectedoperator"
ishappeningbecauseutsctliscalling#!/bin/shratherthan#!/bin/bash.shandbashusedifferentsyntaxforcomparisons.Runningthisin
bashworksperfectlyforme.

Reply

Anonymous May28,2012at12:20AM

Everithingworkfine(Verycorrectmanual).Lookatutserver.confforusernameandpassw.Thanks.

Reply

Anonymous May30,2012at8:14PM

greatjobbro

Reply

Anonymous June11,2012at6:35PM

Hello,

Ican'chmod+x/opt/utorrent/utsctl.
op:chmod:cannotaccess`/opt/utorrent/utsctl':Nosuchfileordirectory

Howtosolvethisproblem.

Reply

Replies

KhizerNaeem June23,2012at10:39PM

lookslikeyoudon'thavethescriptinplace.Whatistheouputof"lslah/opt/utorrent"?

Reply

Chinnu June23,2012at6:39PM

[root@*******/]#utsctlstatus
Utorrentseemstobestopped,PIDfile/opt/utorrent/pid/utserver.pidnotfoundorempty

I'mgettingthaterrorcanyouhelpme.

Reply

Replies

KhizerNaeem June23,2012at6:50PM

Thismeansutorrentisnotrunning.Startutorrentserverby"utsctlstart".

Reply

Chinnu June24,2012at4:19AM

SorrySirIforgottomentionwhenIdidthatIsgettingstoppedandwhenIcheckthestatusIgotthatline

Reply

Chinnu June24,2012at4:24AM

[root@******/]#utsctlstart
StartingUtorrentServer..
/usr/bin/utsctl:line21:settingspath:commandnotfound
[root@******/]#utsctlstatus
Utorrentseemstobestopped,PIDfile/opt/utorrent/pid/utserver.pidnotfoundorempty

Reply

Replies

KhizerNaeem June24,2012at8:17AM

Thereseemtobesomeprobleminthescript.Areyousurethescriptisfine?
Canyoucompareyourscript(/opt/utorrent/utsctl)withthisone:(http://configs.ucoz.com/ut30/utsctl.sh.orig).

Justtobesurerunthefollowingcommand:

wgetO/opt/utorrent/utsctlhttp://configs.ucoz.com/ut30/utsctl.sh.orig

http://blog.kxr.me/2011/12/utorrent-server-on-linux-step-by-step.html 8/17
9/15/2015 Linux in My Box: Utorrent Server on Linux, Step by Step How To

andtryagain

Reply

Chinnu June24,2012at4:52PM

It'snotallowingmetopastethewholelogsoI'mdoingitonpastebinpleasehavealookatit.

Link:http://tinypaste.com/0bb120a0

ThisiswhatI'mgettingSir,SorryI'manoobinLinux,Ijustneedatorrentonmyvpstoseedsomeofmytorrents

Canyouhelpmesir?

Reply

Replies

KhizerNaeem June24,2012at8:22PM

Oh,Ithinkyouareusinganolddistribution.

removetheoldsetup:("rmrf/opt/utorrent")

Andthenfollowthisguide:http://blog.kxr.me/2012/01/utorrentoncentos5glibc211notfound.html

Reply

Chinnu June25,2012at3:30AM

Thiscommenthasbeenremovedbytheauthor.

Reply

Anonymous July6,2012at5:38PM

nice

Reply

Kyleey July8,2012at5:35PM

Awesome,thankyouforthis!IsawapostonuTorrent'sforumslinkinghere,andtheywereright.Ifollowedyourinstructionsanditworkedbrilliantly!
Noerrors,noproblems!Thankyouonceagain!

Regards,
~kyleey.

Reply

Anonymous July24,2012at3:26AM

Thankyou,thisworkedperfectlyonOpenSUSE12.1

Reply

Gae July24,2012at3:04PM

Hello

whatarethestepstoinstallinLinuxMint13derivedformUbuntu12.04?

Thanks
Gae

Reply

Replies

KhizerNaeem July24,2012at3:18PM

Stepshouldbeprettymuchthesameexcepttheyumandtherpmpartinthebeginning.IncaseofMintyoucansimplyskipthosesteps
(becauseIthinkyou'llhavethosepackagesbydefault),ifyoufindanymissingpackage,installitwithaptget.Restofthestepsshouldbe
thesame.

Reply

http://blog.kxr.me/2011/12/utorrent-server-on-linux-step-by-step.html 9/17
9/15/2015 Linux in My Box: Utorrent Server on Linux, Step by Step How To
Anonymous July27,2012at2:53PM

ThanksmanIusedthisbeforeanditwasworkinglikecharm.butnowihavetoinstallitagainbutIhaveproblemwithlogindetail.
asbeforeiusedthis:
username:admin
pass:[blank]
butitisn'tworkingnow.whyisthatfor?whatshouldido?
thanks

Reply

Replies

KhizerNaeem July27,2012at4:38PM

Thatisveryodd!Trythefollowing:
Doublechecktheutsserver.conf,makesuretheadmin_namedirectiveissetto"admin"andadmin_passworddirectiveisblank.Youcan
redownloadtheconfigfile[wgetO/opt/utorrent/conf/utserver.confhttp://kxr.me/blog/uts/utserver.conf].Tryreloadingtheconfigurationby
[utsctlreload]

Ifnoneofthatworks,trystartingtheutserverwithoutanyconfiguration,removetheconfigurationfile[rm/opt/utorrent/conf/utserver.conf
touch/opt/utorrent/conf/utserver.conf],andthendoautsctlreload.Seeifthisworks.

Anonymous July27,2012at6:20PM

nonofthoseworks

Anonymous July28,2012at5:45PM

whatshouldidoman?pleasehelp!
Iinstalleditonce.andagainiremovedtheutserverdirectoryandthenreinstalledit.butihaveproblemwithusernameandpassword.
!!!!

KhizerNaeem July28,2012at5:50PM

Howaboutyousetasimplepasswordintheconfigurationfileandtryaccessingitwiththatpassword?

Anonymous July28,2012at6:15PM

itriedthatbutitwasnotworkingtoo.
isthereanywaytofindoutwhatisthematterwiththis?

KhizerNaeem July28,2012at6:17PM

Wellyoucantryremovingthe/opt/utorrent[rmvrf/opt/utorrent],andredoallthestepsfromthebeginning

Anonymous July28,2012at8:06PM

ididittoo.butnothing

KhizerNaeem July28,2012at9:20PM

WellIamrunningoutofoptions.Isuspectyouaredoingsomethingwrong.Itwillbereallyhardformetodebugthathere.Youcantrythe
utorrenthelpforums.Ifthereiswayyoucangivemeremoteaccess,maybeIcanhelpyouout,ifso,emailme@khizernaeem[@]gmail

Anonymous July28,2012at9:24PM

thanksforanswering...
canusolvethisproblem?

KhizerNaeem July28,2012at9:26PM

WellIcantry,atleastIcanlookintoit.

Anonymous July28,2012at10:07PM
Iemaileduwithsubject:NimaAzizzadeh
thanksagain

KhizerNaeem July28,2012at10:30PM

Problemsolved:).Checkyourinboxfordetails,youwererunningsomeoldinstances,thatweren'tgettingkilled.

Reply

http://blog.kxr.me/2011/12/utorrent-server-on-linux-step-by-step.html 10/17
9/15/2015 Linux in My Box: Utorrent Server on Linux, Step by Step How To
AnneFluitman July30,2012at12:13AM

Heythere,thankssomuchformakingthis!I'manabsolutenewbieatlinuxandwhenithadmesimplydownloadthefilewithoutanyinstructions,Iwas
justabitstunned...Anyway,I'vefiguredmostofitout,butIseemtobestuckattheveryend.WhenItrytostartutsctlIgetthefollowing:

Anne@Bit~$utsctlstart
StartingUtorrentServer..
/opt/utorrent/utserver:/lib/libcrypto.so.0.9.8:noversioninformationavailable(requiredby/opt/utorrent/utserver)
/opt/utorrent/utserver:/usr/lib/libssl.so.0.9.8:noversioninformationavailable(requiredby/opt/utorrent/utserver)
serverstartedusinglocaleen_US.utf8
Anne@Bit~$serverexitedwith1

Thelastlinefollowsdirectlyontheonesaboveit.Canyouhelpme?

Thankssomuch!

Reply

Replies

KhizerNaeem July30,2012at5:08AM
Which linux distribution are you using? Can you paste the output of utorrent log? If you followed the instructions of this howto, the log
shouldbein/opt/utorrent/log/ut.log

Arm4n August17,2012at12:00AM

ihavesameproblemasAnneFluitmanandthisismylog:
01:11:19]Usinglocaleen_US.UTF8
[01:11:19]GetNodeIDfailed,using/dev/random
[01:11:19]totalphysicalmemory1maxdiskcache33554432
[01:11:19]Filenotfoundduringintegritycheck:/opt/utorrent/webui//dht.dat
[01:11:19]Filenotfoundduringintegritycheck:/opt/utorrent/webui//dht.dat.new
[01:11:19]Filenotfoundduringintegritycheck:/opt/utorrent/webui//dht.dat.old
[01:11:19]Filenotfoundduringintegritycheck:/opt/utorrent/webui//rss.dat
[01:11:19]Filenotfoundduringintegritycheck:/opt/utorrent/webui//rss.dat.new
[01:11:19]Filenotfoundduringintegritycheck:/opt/utorrent/webui//rss.dat.old
[01:11:19]Loadedipfilter.dat(0entries)
[01:11:19]IPv6isinstalled
[01:11:19]Filenotfoundduringintegritycheck:/opt/utorrent/webui//resume.dat
[01:11:19]Filenotfoundduringintegritycheck:/opt/utorrent/webui//resume.dat.new
[01:11:19]Filenotfoundduringintegritycheck:/opt/utorrent/webui//resume.dat.old
[01:11:24]Filenotfoundduringintegritycheck:/opt/utorrent/webui//webcache.dat
[01:11:24]Filenotfoundduringintegritycheck:/opt/utorrent/webui//webcache.dat.new
[01:11:24]Filenotfoundduringintegritycheck:/opt/utorrent/webui//webcache.dat.old

KhizerNaeem August17,2012at6:25AM
canyoudoublecheck:
1Configfile(usethewgetmethodifyoucopypastedtheconfigfile).
2Filepermissions(try"chmodR777/opt/utorrent")
3Makesureselinuxisnotinterrupting

Reply

TafhimUlIslam August3,2012at12:23AM

Forbuntuornonfedorausersiguess
don'tusethesoftlink,justinstalllibssl0.9.8usingaptget
fixedmyproblem
Reply

Replies

KhizerNaeem August3,2012at4:01AM

Thankyoufortheinfo:)

Anonymous September25,2012at6:02AM

Thiscommenthasbeenremovedbyablogadministrator.

Anonymous September25,2012at6:03AM
Thiscommenthasbeenremovedbyablogadministrator.

Reply

http://blog.kxr.me/2011/12/utorrent-server-on-linux-step-by-step.html 11/17
9/15/2015 Linux in My Box: Utorrent Server on Linux, Step by Step How To
yuehuang October9,2012at2:47PM

Thiscommenthasbeenremovedbytheauthor.
Reply

Anonymous December13,2012at1:28AM

PleasecouldyouhelpmeinuninstallingitandremovingallfilesIhavedownloadedorusedintheprocess.Sorryforbeingan00binLinux.
Reply

Marius February8,2013at8:38PM

Thanksman!stillworkingin2013!:)
Reply

Replies

KhizerNaeem February8,2013at9:27PM

Goodtoknow:)

Reply

Anonymous February18,2013at11:45AM
HellohowcanIchangethedirectoryfrom/opt/utorrent/datato/home/down?

Reply

Replies

KhizerNaeem February18,2013at1:00PM
Intheconfigurationfile,setthefollowingvariables:

Keepdir_rootempty(otherwiseallotherpathswouldberelativetothis)
Setdir_activeanddir_completedto/home/down

Reply

Anonymous February18,2013at9:06PM

Thanksitworks
Reply

Anonymous February19,2013at12:49AM

HowcanIuseipfilterserverinutorrent?
Reply

Anonymous March6,2013at5:24PM
whenitypeutsctlstopdoesitmakexxx.com:8080/guiunreachableorstillopen?

Reply

CarlosMaureira March19,2013at10:24PM
ifsomeoneaskinstallinginubuntu,thescripthavetochangethispart
if["$?"=="0"]
to
if[$?=0]
Reply

RodrigoBorrozino March26,2013at4:10AM
Orchange#/bin/shto#/bin/bash

Reply

Julius April17,2013at2:32PM
Hello,mayIaskyouhowtochangethelisteningportfrom8080toanotherport?Ichangeut_webui_portto7777(example)anditdoesn'tworkatall.

Ineedadvice..
Thanks

http://blog.kxr.me/2011/12/utorrent-server-on-linux-step-by-step.html 12/17
9/15/2015 Linux in My Box: Utorrent Server on Linux, Step by Step How To
Reply

phanatic May7,2013at12:22AM
Hithisdoesnotworkformeoncentos6.4

Isymlinkedtothelibsbutitstilldoesnotstart,Ihavealsotriedthe"e"versions
libssl.so.0.9.8>/usr/lib/libssl.so.1.0.0
libcrypto.so.0.9.8>/usr/lib/libcrypto.so.1.0.0

find/*/lib/*libtypefname"libssl.so.*"
/usr/lib/plexmediaserver/libssl.so.1.0.0
/usr/lib/libssl.so.0.9.8e
/usr/lib/libssl.so.1.0.0

find/*/lib/*libtypefname"libcrypto.so.*"
/usr/lib/plexmediaserver/libcrypto.so.1.0.0
/usr/lib/libcrypto.so.0.9.8e
/usr/lib/libcrypto.so.1.0.0

lddr/opt/utorrent/utserver
linuxvdso.so.1=>(0x00007fff15023000)
libssl.so.0.9.8=>notfound
libcrypto.so.0.9.8=>notfound
libpthread.so.0=>/lib64/libpthread.so.0(0x0000003026200000)
libm.so.6=>/lib64/libm.so.6(0x0000003026600000)
librt.so.1=>/lib64/librt.so.1(0x0000003027200000)
libgcc_s.so.1=>/lib64/libgcc_s.so.1(0x000000302ba00000)
libc.so.6=>/lib64/libc.so.6(0x0000003025e00000)
/lib64/ldlinuxx8664.so.2(0x0000003025600000)
undefinedsymbol:SSL_CTX_free,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:SSL_library_init,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:BIO_read,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:SSL_CTX_new,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:SSL_load_error_strings,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:SSL_free,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:SSL_new,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:SSL_connect,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:BIO_s_mem,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:BIO_test_flags,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:OPENSSL_add_all_algorithms_noconf,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:SSL_write,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:SSL_read,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:BIO_new,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:BIO_write,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:BIO_ctrl_pending,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:SSLv23_client_method,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:SSL_set_bio,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:SSL_state,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:ERR_get_error,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:ERR_load_BIO_strings,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:ERR_reason_error_string,versionOPENSSL_0.9.8(/opt/utorrent/utserver)

Reply

Anonymous May24,2013at6:10AM
Dude!Iappreciateverymuchwhatyou'vedonehere.
Thanksfortakingthetime.Yousavedalotofminehehehe.
Maytheforcebewithyou!

Reply

Anonymous June5,2013at8:47AM
alwaysusingandworking:D

testedworkproperlyoncentos6.4:D
Reply

Anonymous August1,2013at11:16AM

heyguys,it'saskingforusernamepassword,
Whichoneihavetouseforit.

http://blog.kxr.me/2011/12/utorrent-server-on-linux-step-by-step.html 13/17
9/15/2015 Linux in My Box: Utorrent Server on Linux, Step by Step How To
Replysoonaspossible..........
Reply

Replies

KhizerNaeem August2,2013at1:30AM
Thedefaultuserisadminwithnopassword.Youcansetthepasswordin/opt/utorrent/conf/utserver.conf,ifyoudosodon'tforgettodoa
"utsctlreload".

Reply

Anonymous August5,2013at10:46PM

Soidideverythingtheguidesaysandthesymboliclinksworkedwellbutnowihavethisproblem:

whenrunning:/etc/init.d/utserverstart

Igetthefollowingoutput:

[....] Starting uTorrent Server: utserver/usr/bin/utserver: /usr/lib/x86_64linuxgnu/libcrypto.so.0.9.8: version `OPENSSL_0.9.8' not found (required by
/usr/bin/utserver)
/usr/bin/utserver:/usr/lib/x86_64linuxgnu/libssl.so.0.9.8:version`OPENSSL_0.9.8'notfound(requiredby/usr/bin/utserver)
failed!

Ilinkedthelibcryptoandlibsslusingthecommandsabovebutihadtochangethedirectoriestofitwithmyoswhichisdebianbytheway.

Anyhelpwouldbeappericated.Ididnotgetpaststartingtheserverbecauseitneverworked.
Reply

Replies

KhizerNaeem August5,2013at10:52PM

Ifyouarerunningitona64bitOS,trythis:http://blog.kxr.me/2013/08/standaloneutorrentserverx6464bit.html

Anonymous August5,2013at10:53PM
Hereistheoutputfromthelddbytheway:

linuxgate.so.1=>(0xf7773000)
libssl.so.0.9.8=>notfound
libcrypto.so.0.9.8=>notfound
libpthread.so.0=>/lib/i386linuxgnu/i686/cmov/libpthread.so.0(0xf7736000)
libm.so.6=>/lib/i386linuxgnu/i686/cmov/libm.so.6(0xf7710000)
librt.so.1=>/lib/i386linuxgnu/i686/cmov/librt.so.1(0xf7707000)
libgcc_s.so.1=>/lib/i386linuxgnu/libgcc_s.so.1(0xf76ea000)
libc.so.6=>/lib/i386linuxgnu/i686/cmov/libc.so.6(0xf7587000)
/lib/ldlinux.so.2(0xf7774000)
undefinedsymbol:SSL_CTX_free,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:SSL_library_init,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:BIO_read,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:SSL_CTX_new,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:SSL_load_error_strings,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:SSL_free,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:SSL_new,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:SSL_connect,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:BIO_s_mem,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:BIO_test_flags,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:OPENSSL_add_all_algorithms_noconf,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:SSL_write,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:SSL_read,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:BIO_new,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:BIO_write,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:BIO_ctrl_pending,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:SSLv23_client_method,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:SSL_set_bio,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:SSL_state,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:ERR_get_error,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:ERR_load_BIO_strings,versionOPENSSL_0.9.8(/opt/utorrent/utserver)
undefinedsymbol:ERR_reason_error_string,versionOPENSSL_0.9.8(/opt/utorrent/utserver)

Reply

Anonymous August13,2013at12:46PM

Hi,howcanIautorunutorrentonboot?
Reply

http://blog.kxr.me/2011/12/utorrent-server-on-linux-step-by-step.html 14/17
9/15/2015 Linux in My Box: Utorrent Server on Linux, Step by Step How To

davidnguyen August18,2013at3:05PM

1.cd/etc/rc.d

2.virc.local

3.andaddthisline:
utsvtlstart
Reply

Replies

Anonymous August19,2013at11:22AM

??!!
hmyoumean:

utsctlstart
thankyou

Reply

davidnguyen August18,2013at3:07PM
Iinstalleditandeverythingworkfine.Butoneerroris:Idownloadafile,thenrestartmyserverandgoback,myfilearedownloadingbeforegotoerror
andcan'tdownloadagain.
Thankforanyhelp.

Reply

RolandCLEMENCEAU August31,2013at8:56AM
Hi,thanksforthetutorial.I'vefollowedittotheletterandgotexactlythesameoutputasshownhereand
launchingutsctlstartgetsme:
StartingUtorrentServer..
/opt/utorrent/utserver:/usr/lib/libcrypto.so.0.9.8:noversioninformationavailable(requiredby/opt/utorrent/utserver)
/opt/utorrent/utserver:/usr/lib/libssl.so.0.9.8:noversioninformationavailable(requiredby/opt/utorrent/utserver)
serverstartedusinglocaleen_US.utf8

whichshouldbefine,buttheproblemis,theprocessorhangsandnoGUIshowsup,idon'tknowwhatwentwrong,canyouhelp?thanks

Reply

RolandCLEMENCEAU August31,2013at8:57AM
bythewayi'musingCentOS6.4ona64bitAMDlaptop

Reply

Nima September1,2013at6:09PM
HiKhizer
Thankyouforthis...
Ihaveaproblem.Iwouldbeappreciatedifyouhelpme...
Iinstalleditanditabsolutelyworkesbutwheniaddedafilefordownloading,nothinghappened.theprogresswontgoforwardandwillstayon%0.can
utellmehowcanIsolvethisissue?
thankyou
Reply

Anonymous September11,2013at3:48PM

hellomyserverCentOS5.6Minimal(32Bit)problem
whyproblemhelpmepls

[root@91~]#utsctlstart
StartingUtorrentServer..
/opt/utorrent/utserver:errorwhileloadingsharedlibraries:libssl.so.0.9.8:cannotopensharedobjectfile:Nosuchfileordirectory

Reply

Anonymous October5,2013at1:11PM

hellomyserverREDHAT6.4(64bit)
whenitrytoaccessutorrentonlocalhost"http://localhost:8080/gui"
itaskforusernameandpassword"Ausernameandpasswordarebeingrequestedbyhttp://localhost:8080.Thesitesays:"uTorrent""
pleasehelpmetosortoutthisproblem

Reply

http://blog.kxr.me/2011/12/utorrent-server-on-linux-step-by-step.html 15/17
9/15/2015 Linux in My Box: Utorrent Server on Linux, Step by Step How To
Unknown November8,2013at11:01PM
Thanksdude.IhaveinstalleduTorrentinmyCentOS6.4server.NowIwanttogenerateuTorrentlinksothatIcansharemyfilestoeveryone.In
windowsthisiseasyandworking.ButinCentOS,whenIpressthesamebuttontogeneratelink,theboxcomefor"AddRSSfeed"andrequiresfeed
URL.CouldyoupleasetellmehowcouldIgenerateuTorrentfile?

Reply

Anonymous November26,2013at6:36AM
Welldone!

Reply

Anonymous December6,2013at11:43AM

Hello,
Ivegotnewproblemhere:
IhavenewversionofOpensslwiththisfiles:
libcrypto.so.10
libcrypto.so.1.0.1e
libssl.so.10
libssl.so.1.0.1e

WhenIcreatenewlinks:
lns/usr/lib/libssl.so.1.0.1e/usr/lib/libssl.so.0.9.8
lns/usr/lib/libcrypto.so.1.0.1e/usr/lib/libcrypto.so.0.9.8

andtrytostartuTorrentIgeterror:
/opt/utorrent/utserver:/usr/lib/libcrypto.so.0.9.8:version`OPENSSL_0.9.8'notfound(requiredby/opt/utorrent/utserver)
/opt/utorrent/utserver:/usr/lib/libssl.so.0.9.8:version`OPENSSL_0.9.8'notfound(requiredby/opt/utorrent/utserver)

WhatIcando?IneedtoreplacemyOpensslinstallation?

Reply

Anonymous December7,2013at5:08PM
Meetoo.Pleasehelpme!

AnonymousDecember6,2013at11:43AM
Hello,
Ivegotnewproblemhere:
IhavenewversionofOpensslwiththisfiles:
libcrypto.so.10
libcrypto.so.1.0.1e
libssl.so.10
libssl.so.1.0.1e

WhenIcreatenewlinks:
lns/usr/lib/libssl.so.1.0.1e/usr/lib/libssl.so.0.9.8
lns/usr/lib/libcrypto.so.1.0.1e/usr/lib/libcrypto.so.0.9.8

andtrytostartuTorrentIgeterror:
/opt/utorrent/utserver:/usr/lib/libcrypto.so.0.9.8:version`OPENSSL_0.9.8'notfound(requiredby/opt/utorrent/utserver)
/opt/utorrent/utserver:/usr/lib/libssl.so.0.9.8:version`OPENSSL_0.9.8'notfound(requiredby/opt/utorrent/utserver)

WhatIcando?IneedtoreplacemyOpensslinstallation?

Reply

Reply

Anonymous April10,2014at10:00AM
Hi,

Didyoufindfixforabovefix,iamalsogettingsameissue.

./utserver:/lib64/libssl.so.0.9.8:version`OPENSSL_0.9.8'notfound(requiredby./utserver)
./utserver:/lib64/libcrypto.so.0.9.8:version`OPENSSL_0.9.8'notfound(requiredby./utserver)
Reply

Anonymous May20,2014at12:48AM

Hello,I'munderlinuxmint16andI'vegotutorrentserverv3_0,isthereastart/stopscriptIcanuseforit?ifnot,isthereapossibilityyoumaywantto
writeoneforitandshare?
Ifnot,shouldIinstallyourversion?
Thankyou

Reply

http://blog.kxr.me/2011/12/utorrent-server-on-linux-step-by-step.html 16/17
9/15/2015 Linux in My Box: Utorrent Server on Linux, Step by Step How To

Replies

Anonymous May20,2014at3:33AM

anywayIfinallyendedinstallingthe(Iguess)previousversionofyours,itworksjustperfect!congrats!

Anonymous May20,2014at3:49AM

Bytheway...IwaskindofscaredwhenIfirstsawkxrmeinthedownloadtrayafterItriedtodownloaditfirstlyeffortlesslywith404errorat
firstandemptyfileslatertofinallyfinditokandproper.kingtakesrook,asIguessitstandsfor,seemedtomelikeaciberneticgangstalking
joke.I'mabitconcernedaboutthesethingsthosedays...toomanyexperiences!callmeskizo...but...there'ssomethingmorehaha:shave
agoodjourney!

Reply

Anonymous May21,2014at1:34AM

Hi,whenIdoutsctlstopandthentrytoshutdownlinux,itstuckswithblackscreenanddoesn'tshutdown...whatcanbehappening?
Reply

Replies

Anonymous May21,2014at1:38AM
Iforgottotell,whenIforcetheshuttingandstartitover,utorrentdoesn'tworkandutsctlstartgivesmethis:

~$utsctlstart
StartingUtorrentServer..
serverstartedusinglocaleen_US.UTF8
~$serverexitedwith1

Reply

Enteryourcomment...

Commentas: GoogleAccount

Publish
Preview

NewerPost Home OlderPost

Subscribeto:PostComments(Atom)

PictureWindowtemplate.Templateimagesbyrajareddychadive.PoweredbyBlogger.

http://blog.kxr.me/2011/12/utorrent-server-on-linux-step-by-step.html 17/17

You might also like