This forum has been archived. All content is frozen. Please use KDE Discuss instead.

Torrent Download for KDE Neon

Tags: torrent, download, iso, neon torrent, download, iso, neon torrent, download, iso, neon
(comma "," separated)
tuanphamanh
Registered Member
Posts
1
Karma
0

Torrent Download for KDE Neon

Thu Oct 13, 2016 3:06 pm
Since I haven't found any official torrents download for KDE neon distribution, I make this topic to upload some torrents I've created and collected from friends and Internet. I hope somebody who seeking for a better download finds this useful.

Torrent generated site by shevchuk
KDE neon torrent and magnet download page (always up-to-date, autogenerated from official neon.kde.org/download images)

KDE neon 10:18 23-03-2017 release magnet link
Code: Select all
magnet:?xt=urn:btih:cf0caa1d73cbd82dbf32e20957ff6535eb903977&dn=neon-useredition-20170323-1018-amd64.iso&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.sktorrent.net%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.vanitycore.co%3a6969%2fannounce&tr=udp%3a%2f%2fexplodie.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&ws=https%3a%2f%2ffiles.kde.org%2fneon%2fimages%2fneon-useredition%2fcurrent%2fneon-useredition-20170323-1018-amd64.iso


KDE neon LTS version 22-03-2017 00:19 release
Code: Select all
magnet:?xt=urn:btih:8647b49c8f8d4c920c0689b66f90eb9a749e8c5e&dn=neon-userltsedition-20170322-0019-amd64.iso&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.vanitycore.co%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=udp%3a%2f%2fexplodie.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.sktorrent.net%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a80%2fannounce&ws=https%3a%2f%2ffiles.kde.org%2fneon%2fimages%2fneon-userltsedition%2fcurrent%2fneon-userltsedition-20170322-0019-amd64.iso

New torrents will be updated as soon as possible.

Last edited by tuanphamanh on Mon Mar 27, 2017 4:51 pm, edited 3 times in total.
User avatar
anewuser
Registered Member
Posts
91
Karma
0
OS

Re: Torrent Download for KDE Neon

Fri Oct 14, 2016 12:36 pm
KDE Neon is updated constantly. While you had good intentions, people who find this page through search engines and download it will get an out-of-date version and have to download huge updates after installing the system.

I'd remove the links if I were you, and just request the KDE developers to add official torrents to the download page.
User avatar
shevchuk
Registered Member
Posts
3
Karma
0
OS

Re: Torrent Download for KDE Neon

Tue Dec 13, 2016 11:05 pm
Here is a page with latest KDE neon torrent and magnet links (always up-to-date, autogenerated from official neon.kde.org/download images, updates checked every hour)

Come on devs, please add official torrent files in future, it could be generated with just ~20 lines of code with libtorrent, you don't even have to seed if you add your regular iso link as a webseed.
Code: Select all
#!/usr/bin/env python3

import os, libtorrent

image_dir = '/path/to/the/image/directory/'
image_file = image_dir + 'image-file-name.iso' # simplified, better use os.path.join
torrent_file = '/path/to/the/torrent-file-that-will-be-generated.torrent'

trackers = [] # newtrackon.com is a nice place to look for open trackers with best uptime
webseed =  '' # webseed is a traditional link to the image, so torrent users will always have at least 1 seed
              # i.e. https://files.kde.org/neon/images/neon-[edition]/current/neon-[edition]-[date]-amd64.iso

fs = libtorrent.file_storage()
libtorrent.add_files(fs, image_file)

t = libtorrent.create_torrent(fs)

for tracker in trackers:
    t.add_tracker(tracker, 0)

t.add_url_seed(webseed)

t.set_creator('libtorrent %s' % libtorrent.version)
libtorrent.set_piece_hashes(t, image_dir)
torrent = t.generate()

with open(torrent_file, 'wb') as f:
    f.write(libtorrent.bencode(torrent))


UPD: Thank you tuanphamanh for bringing this link to the first message!
UPD 2: KDE Neon now has official torrent files for some time, so my page above now redirects to official downloads page.
hatomotochi
Registered Member
Posts
1
Karma
0

Re: Torrent Download for KDE Neon

Thu Feb 23, 2023 12:14 am
One problem I got a empty screen when I went to the dl screen. This is the first time I have seen this happen
radilso
Registered Member
Posts
2
Karma
0

Re: Torrent Download for KDE Neon

Thu Feb 23, 2023 12:36 pm
hatomotochi wrote:One problem I got a empty screen when I went to the dl screen. This is the first time I have seen this happen


I have the same problem ..., the kde download website https://neon.kde.org/download looks like this:

Image
User avatar
claydoh
Registered Member
Posts
1170
Karma
9
OS

Re: Torrent Download for KDE Neon

Thu Feb 23, 2023 6:36 pm
You can access files directly:
https://files.kde.org/neon/images/user/


claydoh, proud to be a member of KDE forums since 2008-Oct, and KDE user since 2001
radilso
Registered Member
Posts
2
Karma
0

Re: Torrent Download for KDE Neon

Thu Feb 23, 2023 9:28 pm
claydoh wrote:You can access files directly:
https://files.kde.org/neon/images/user/


Thank you :)


Bookmarks



Who is online

Registered users: bartoloni, Bing [Bot], Google [Bot], Sogou [Bot], Yahoo [Bot]