How do I set up a BitTornado tracker?
I would like to setup a BitTornado tracker for a local network. At the moment I am using OpenBitTorrent as my tracker but this seems strange as I don't want to do this over the net and I'm not sure how secure or legal it is.
The "server" is running Bodhi Linux.
I found a how-to on TuxCoder using this command to start the tracker
bttrack --port 6969 --dfile ~/.bttrack/dstate --logfile ~/.bttrack/tracker.log --nat_check 0 --scrape_allowed full
However I get back a deprecation warning:
/usr/lib/pymodules/python2.6/BitTornado/__init__.py:8: DeprecationWarning: the sha module is deprecated; use the hashlib module instead
from sha import sha
**warning** could not redirect stdout to log file: <type 'exceptions.IOError'>
It may be that there is a better tracker out there. I'm not an expert, which is why I'm asking this question.
bittorrent
add a comment |
I would like to setup a BitTornado tracker for a local network. At the moment I am using OpenBitTorrent as my tracker but this seems strange as I don't want to do this over the net and I'm not sure how secure or legal it is.
The "server" is running Bodhi Linux.
I found a how-to on TuxCoder using this command to start the tracker
bttrack --port 6969 --dfile ~/.bttrack/dstate --logfile ~/.bttrack/tracker.log --nat_check 0 --scrape_allowed full
However I get back a deprecation warning:
/usr/lib/pymodules/python2.6/BitTornado/__init__.py:8: DeprecationWarning: the sha module is deprecated; use the hashlib module instead
from sha import sha
**warning** could not redirect stdout to log file: <type 'exceptions.IOError'>
It may be that there is a better tracker out there. I'm not an expert, which is why I'm asking this question.
bittorrent
add a comment |
I would like to setup a BitTornado tracker for a local network. At the moment I am using OpenBitTorrent as my tracker but this seems strange as I don't want to do this over the net and I'm not sure how secure or legal it is.
The "server" is running Bodhi Linux.
I found a how-to on TuxCoder using this command to start the tracker
bttrack --port 6969 --dfile ~/.bttrack/dstate --logfile ~/.bttrack/tracker.log --nat_check 0 --scrape_allowed full
However I get back a deprecation warning:
/usr/lib/pymodules/python2.6/BitTornado/__init__.py:8: DeprecationWarning: the sha module is deprecated; use the hashlib module instead
from sha import sha
**warning** could not redirect stdout to log file: <type 'exceptions.IOError'>
It may be that there is a better tracker out there. I'm not an expert, which is why I'm asking this question.
bittorrent
I would like to setup a BitTornado tracker for a local network. At the moment I am using OpenBitTorrent as my tracker but this seems strange as I don't want to do this over the net and I'm not sure how secure or legal it is.
The "server" is running Bodhi Linux.
I found a how-to on TuxCoder using this command to start the tracker
bttrack --port 6969 --dfile ~/.bttrack/dstate --logfile ~/.bttrack/tracker.log --nat_check 0 --scrape_allowed full
However I get back a deprecation warning:
/usr/lib/pymodules/python2.6/BitTornado/__init__.py:8: DeprecationWarning: the sha module is deprecated; use the hashlib module instead
from sha import sha
**warning** could not redirect stdout to log file: <type 'exceptions.IOError'>
It may be that there is a better tracker out there. I'm not an expert, which is why I'm asking this question.
bittorrent
bittorrent
edited Feb 10 at 19:05
Rui F Ribeiro
40.5k1479137
40.5k1479137
asked Mar 24 '11 at 23:09
AllanAllan
1234
1234
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
It's simply a warning, you can just ignore it. There is a command line flag to python to make it ignore that class of warnings: -W ignore::DeprecationWarning
(it's ignored by default starting at version 2.7)
Personally I'm still using bttrack even though it's getting old and does not support the latest improvements to the Bittorrent protocol: it's efficient, easy to use and reliable. I've got a couple of trackers and seeders up and running to support a Linux distribution.
Thanks zarkdav running like a charm. Which distro if you don't mind?
– Allan
Mar 26 '11 at 12:42
You're welcome Allan. I've been using it for Jolicloud.
– zarkdav
Mar 26 '11 at 14:41
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f10063%2fhow-do-i-set-up-a-bittornado-tracker%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
It's simply a warning, you can just ignore it. There is a command line flag to python to make it ignore that class of warnings: -W ignore::DeprecationWarning
(it's ignored by default starting at version 2.7)
Personally I'm still using bttrack even though it's getting old and does not support the latest improvements to the Bittorrent protocol: it's efficient, easy to use and reliable. I've got a couple of trackers and seeders up and running to support a Linux distribution.
Thanks zarkdav running like a charm. Which distro if you don't mind?
– Allan
Mar 26 '11 at 12:42
You're welcome Allan. I've been using it for Jolicloud.
– zarkdav
Mar 26 '11 at 14:41
add a comment |
It's simply a warning, you can just ignore it. There is a command line flag to python to make it ignore that class of warnings: -W ignore::DeprecationWarning
(it's ignored by default starting at version 2.7)
Personally I'm still using bttrack even though it's getting old and does not support the latest improvements to the Bittorrent protocol: it's efficient, easy to use and reliable. I've got a couple of trackers and seeders up and running to support a Linux distribution.
Thanks zarkdav running like a charm. Which distro if you don't mind?
– Allan
Mar 26 '11 at 12:42
You're welcome Allan. I've been using it for Jolicloud.
– zarkdav
Mar 26 '11 at 14:41
add a comment |
It's simply a warning, you can just ignore it. There is a command line flag to python to make it ignore that class of warnings: -W ignore::DeprecationWarning
(it's ignored by default starting at version 2.7)
Personally I'm still using bttrack even though it's getting old and does not support the latest improvements to the Bittorrent protocol: it's efficient, easy to use and reliable. I've got a couple of trackers and seeders up and running to support a Linux distribution.
It's simply a warning, you can just ignore it. There is a command line flag to python to make it ignore that class of warnings: -W ignore::DeprecationWarning
(it's ignored by default starting at version 2.7)
Personally I'm still using bttrack even though it's getting old and does not support the latest improvements to the Bittorrent protocol: it's efficient, easy to use and reliable. I've got a couple of trackers and seeders up and running to support a Linux distribution.
answered Mar 25 '11 at 12:39
zarkdavzarkdav
30813
30813
Thanks zarkdav running like a charm. Which distro if you don't mind?
– Allan
Mar 26 '11 at 12:42
You're welcome Allan. I've been using it for Jolicloud.
– zarkdav
Mar 26 '11 at 14:41
add a comment |
Thanks zarkdav running like a charm. Which distro if you don't mind?
– Allan
Mar 26 '11 at 12:42
You're welcome Allan. I've been using it for Jolicloud.
– zarkdav
Mar 26 '11 at 14:41
Thanks zarkdav running like a charm. Which distro if you don't mind?
– Allan
Mar 26 '11 at 12:42
Thanks zarkdav running like a charm. Which distro if you don't mind?
– Allan
Mar 26 '11 at 12:42
You're welcome Allan. I've been using it for Jolicloud.
– zarkdav
Mar 26 '11 at 14:41
You're welcome Allan. I've been using it for Jolicloud.
– zarkdav
Mar 26 '11 at 14:41
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f10063%2fhow-do-i-set-up-a-bittornado-tracker%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown