-
Notifications
You must be signed in to change notification settings - Fork 1
/
torrent-howto.htm
61 lines (56 loc) · 2.34 KB
/
torrent-howto.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8" />
<title>Как раздавать торренты с sourceforge</title>
</head>
<body>
<table><tr><td style="vertical-align:top;">
<h1>Как раздавать торренты с sourceforge</h1>
</td><td style="vertical-align:top;">
<a href="index.htm">Блог Всячепуза</a>
<br />
</td></tr></table>
1. Сначала нужно создать .iso-шник.
<br />
поскольку им всё равно никто пользоваться не будет, то создадим его командой
<br />
dd if=/dev/zero of=/home/user/cheburunix/image.iso bs=1048576 count=3425
<br />
(я не помню, надо ли тут задавать какие-нибудь преобразования conv=, чтобы не было преобразований по-умолчанию)
<br />
<br />
2. Затем надо залить его на sourceforge, чтобы понять, какой будет URL
<br />
<a href="http://sourceforge.net/p/forge/documentation/Mirrors/">http://sourceforge.net/p/forge/documentation/Mirrors/</a>
<br />
Как заливать, написано тут:
<br />
<a href="http://sourceforge.net/p/forge/documentation/Files/">http://sourceforge.net/p/forge/documentation/Files/</a>
<br />
<font style="color:red">(И что конкретно там написано? скопировал бы)</font>
<br />
rsync allows for resuming canceled or interrupted transfers.
<br />
Moving files and creating of symlinks may be accomplished via the shell, but cannot be done with the web file manager.
<br />
<br />
Как может выглядеть линк:
<br />
http://downloads.sourceforge.net/openjade/openjade-0.6.14.tar.gz
<br />
<br />
3. торренты получились такие:
<br />
mktorrent -w http://downloads.sourceforge.net/project/skliss/Rel_1/image.iso image.iso -a http://tracker.openbittorrent.com:80/announce -o image.torrent
<br />
<a href="mktorrent/image.torrent">image.torrent</a>
<br />
<br />
mktorrent -w http://downloads.sourceforge.net/project/skliss/Rel_1/image.iso image.iso -a udp://tracker.openbittorrent.com:80 -o skliss.torrent
<br />
<a href="mktorrent/skliss.torrent">skliss.torrent</a>
<br />
</body>
</html>