N9 RepoMirror | Current repositories for Nokia N9



Rep: (256)
N9 RepoMirror
Version: 0.7.2

Homepage: https://openrepos.net/content/ancelad/n9-repomirror

Last update of the program in the header:17.04.2015

Description:
Corrected n9repomirror.list containing the following repositories:
1) https://coderus.openrepos.net/n9mirror/(instead of dead nokia repositories)
2) http: //mirror.thecust...rmattan-dev.nokia.com/

This will allow, for example, to turn on developer mode after flashing (resetting) the phone.

ATTENTION! The package was tested on an absolutely clean device (after firmware). If something does not work for you after installing the package, then perhaps you should flash the phone!

Link to download
Attached Image

Post has been editedAncelad - 21.11.15, 20:04



Rep: (4)
Amigo157 @ 11.11.2016, 21:25*
Hold it two times

Thank. And how to connect so as not to manually pump out the packages? For it is not clear where Packages.gz lies.
the error gives Packages.gz 404 Not Found
I managed to connect like this:
deb http://mirror.thecust.net/harmattan-dev.nokia.com/dists/harmattan/41667a5bd857be02f487c2ce806fbf85/nokia-binaries/binary-armel/ /

but not everything is in this branch, there is aegis and the like, for example wget is absent in this branch.

Post has been editeduserLinux - 11.11.16, 23:08



Rep: (1)
coderus repository not available



Rep: (256)
* Lenin2089,
it is under repair, it is necessary to wait



Rep: (4)
I deployed a turnip on the Debian desktop in my LAN. Everyone can easily do this like this:
Create a folder in the directory of your web server (usually Apache in Linux is out of the box) and go into it, for example:
cd / var / www / meego

We pump out the necessary repository branch recursively
wget -r --no-parent http://mirror.thecust.net/harmattan-dev.nokia.com/pool/harmattan/free/

This branch weighs 8 GB. If you do not need archives with source codes, then you can invest in five gigs so
wget -r --no-parent -A .deb .dsc http://mirror.thecust.net/harmattan-dev.nokia.com/pool/harmattan/free/

This command only downloads deb and dsc files. The .dsc files contain dependency lists.
After the download of the repository is completed, it remains to generate the Packages.gz package list file, which for unknown reasons is missing in both mirrors that prompted me.
dpkg-scanpackages -t deb /var/www/meego/mirror.thecust.net/harmattan-dev.nokia.com/pool/harmattan/free | gzip | cat>/var/www/meego/mirror.thecust.net/harmattan-dev.nokia.com/pool/harmattan/free/Packages.gz

But, inside the archive there is a text file, and it contains several thousand lines with absolute paths, such as / var / www / meego / ...... But we don’t need it and you yourself will see an error when you try to install something and there it will be clear what you need to remove, namely, you need to remove all lines from the contents of the file /var/www/meego/mirror.thecust.net/harmattan-dev.nokia.com/pool/harmattan/free/ this can be done by any editor, choose to replace all /var/www/meego/mirror.thecust.net/harmattan-dev.nokia.com/pool/harmattan/free for nothing and back in .gz or if you have enough rights then make changes directly to the archive. Or if you have windows and you are at a loss how to generate Packakes.gz or just don’t want to generate and edit paths then just download my finished file and put it in the free / folder
Now add your repository like this:
echo 'deb http://192.168.1.5/meego/mirror.thecust.net/harmattan-dev.nokia.com/pool/harmattan/free /'>>/etc/apt/sources.list.d/sources.list && apt-get update

And one more thing, if you downloaded the first command with all the contents, then in each directory there will still be index.html which lists the entire contents of the directory, accordingly your generated Packages.gz file is not in this list and the Apache for some reason obeys this file and just does not see your package list file. I stepped on this rake, just delete this file:
rm /var/www/meego/mirror.thecust.net/harmattan-dev.nokia.com/pool/harmattan/free/index.html

That's it :) This method will work for other branches and rap.

Attached files

Attached filePackages.gz(597.69 KB)


Post has been editeduserLinux - 13.11.16, 17:15
Reason for editing: Attached file.



Rep: (256)
* userLinux,
cool, well done



Rep: (14)
So maybe turn on the repository for everyone at least temporarily?



Rep: (256)
* oleg_rem,
it's easier to wait while the old repository is fixed



Rep: (4)
So maybe turn on the repository for everyone at least temporarily?

Are you talking to me? I just deployed a repository in my local network, i.e. it is not visible from the Internet, I do not have a white ip and the outgoing speed is less than megabit: blush:
Maybe someone has a web server and an extra five gigabytes of space ...

Ancelad @ 11/13/2016, 10:13*
it's easier to wait while the old repository is fixed

Well, judging by mistake, the web server itself is alive and responding, just for some reason access is denied. Was it not easier for CODeRUS to make a 302 redirect to a live mirror? Yes, there is no Packages.gz file there, but for those who did not do apt-get update, everything should work and will not notice anything, provided that CODeRUS has the same directory structure. Or even better, if there is a connection with the owner of the mirrors, drop my Packages or CODeRUS to him and make a 302 or 301 redirect in .htaccess and fix it as much as he wants, 99% have CODeRUS mirrors and they would not notice anything even if you did the update. And so the newcomers who recently purchased this gadget will simply get rid of it, the experienced ones too, having decided that everything, the last turnip is dead ...



Rep: (4)
And I forgot to say that for each package there are also i386.deb files for several versions for some reason, so if someone knows regular expressions normally, then you can add this expression to exclude i386 in the construction of the download command, so you can fit in a couple of gigs. Unfortunately, I am not good at regular expressions.
And yet, if for some reason the download was interrupted, then in order not to download again - just add -c to the end of the command and the download will continue from the interruption point.

I came up with how to try without regular expression. All files end with either armel.deb or all.deb or i386.deb.
Then with this command you can try:
wget -r --no-parent -A armel.deb all.deb .dsc http://mirror.thecust.net/harmattan-dev.nokia.com/pool/harmattan/free/

but not sure if there are no useful files ending with anything else.

Post has been editeduserLinux - 14.11.16, 00:18
Reason for editing: Overno



Rep: (256)
The coderus repository is active again



Rep: (4)
Everything turned out to be even simpler! No need to wait for coderus server repair, repositoryhttp://mirror.thecust.net/full-fledged, just coderus is registered for everyone in the first lines, when it crashes, apt still remembers that the requested package is present in the first repository and stubbornly just writes an error that the server is unavailable even after apt-get update, while apt knows that there is such a package on a full mirror, which is also registered for everyone, but does nothing. And if you comment out the fallen repository, then even apt-get update is not necessary, then apt pulls the package from the mirrorhttp://mirror.thecust.net/. And with the list of packages this turnip has all the rules, they just lie in a strange place, well, the coderus repository itself is micro, there are only three hundred and three packages there.
Have a commotion here: D



Rep: (37)
the infection does not work .... the installation is interrupted. the installation error



Rep: (0)
Brothers and sisters) this device has been lying idle for 3 years already, I decided to give it to my nephew, but I need to install Andrew, got stuck on the fact that when I turn on the developer mode and download additional files 2.2mb pops up "developer-mode Unable to download. Connection to the application provider is interrupted. Please try again later. " I check the Internet on the device - it works. can tell me what and how to do)? I am writing here for the last relevant topic (not like all 2013 and all)



Rep: (1)
n9repomirror_0.7.2_armel.deb delivered? Everything should be in order with him. Is Andryusha an Android? Why is he on n9? Glitches to catch?



Rep: (256)
Everything should work. Checked recently.



Rep: (11)
dropped it.
went tohttps://coderus.openrepos.net/n9mirror/
downloadedhttps: //coderus.openre...ode_1.48+0m6_armel.deb
when you try to install - "Unable to download. Connection to the application provider is interrupted. Try again later"

Can I somehow cut the devmod? for example, with your hands to pump in the missing packages (which ones?)?



Rep: (11)
Norm It was stitched by winflasher. Everything worked. : rofl:



Rep: (14)
So what, do repositories have a final end or is there still a chance that the server will come to life?
Attached Image



Rep: (256)
* Sgrat
included, it works



Rep: (0)
Tell me how / which team to add the Coderus repository to Warehouse? Repomirror is installed, the developer mode is turned on. I will be very grateful for step-by-step instructions!


Full version    

Help     rules

Now: 08/16/19, 14:07