Users await a TDE build for it I suppose what, maybe 2-3 weeks? I know the v7 builds have been working nicely with its betas, but it's nice not to need to kludge. :)
I'm not an RPM user (at least not for TDE) so I can't test, but looks to me that the packages for Mageia8 are in the repo now (2021-Mar-02).
Felix (or an other Mageia user reading this message) if you have some spare time, would you mind updating the wiki with the last available info? https://wiki.trinitydesktop.org/Mageia_Trinity_Repository_Installation_Instr...
R14.0.6 vs R14.0.9, instructions for Mageai8, etc.
Le 03/03/2021 à 14:07, gregory guy via tde-devels a écrit :
I'm not an RPM user (at least not for TDE) so I can't test, but looks to me that the packages for Mageia8 are in the repo now (2021-Mar-02).
Felix (or an other Mageia user reading this message) if you have some spare time, would you mind updating the wiki with the last available info? https://wiki.trinitydesktop.org/Mageia_Trinity_Repository_Installation_Instr...
R14.0.6 vs R14.0.9, instructions for Mageai8, etc.
Hello, since the packages have been mirrored, I've updated the wiki, as mentioned by Gregory.
But then, I've found a problem while running the command on my computers.
# urpmi.addmedia trinity http://mirror.ppa.trinitydesktop.org/trinity/rpm/mga8/trinity-r14/RPMS/x86_6... invalid MD5SUM file (downloaded from http://mirror.ppa.trinitydesktop.org/trinity/rpm/mga8/trinity-r14/RPMS/x86_6...)
# urpmi.addmedia trinity http://mirror.ppa.trinitydesktop.org/trinity/rpm/mga8/trinity-r14/RPMS/noarc... invalid MD5SUM file (downloaded from http://mirror.ppa.trinitydesktop.org/trinity/rpm/mga8/trinity-r14/RPMS/noarc...)
Both files actually exist and are valid on the mirrors.
I think something is wrong with the mirror redirection.
The following curl command does not return anything: $ curl http://mirror.ppa.trinitydesktop.org/trinity/rpm/mga8/trinity-r14/RPMS/noarc...
But the same url using wget works as expected: $ wget -q -O - http://mirror.ppa.trinitydesktop.org/trinity/rpm/mga8/trinity-r14/RPMS/noarc...
So; the workaround is to use wget with urpmi (e.g; use 'urpmi --wget'), but I did not have this problem with Mageia 7 ...
I don't know if it's a problem with my internet connection, or if it happens to everyone using Mageia 8.
François
I don't know much about networks but regarding the update on the wiki, thanks very much, It is appreciated! 👍
The following curl command does not return anything: $ curl http://mirror.ppa.trinitydesktop.org/trinity/rpm/mga8/trinity-r14/RPMS/no...
At least that command worked for me, here is the result:
[cethyel@loky ~]$ wget http://mirror.ppa.trinitydesktop.org/trinity/rpm/mga8/trinity-r14/RPMS/noarc... --2021-03-03 22:32:09-- http://mirror.ppa.trinitydesktop.org/trinity/rpm/mga8/trinity-r14/RPMS/noarc... Resolving mirror.ppa.trinitydesktop.org (mirror.ppa.trinitydesktop.org)... 37.205.10.16 Connecting to mirror.ppa.trinitydesktop.org (mirror.ppa.trinitydesktop.org)|37.205.10.16|:80... connected. HTTP request sent, awaiting response... 302 Found Location: http://ftp.fau.de/trinity/rpm/mga8/trinity-r14/RPMS/noarch/media_info/MD5SUM [following] --2021-03-03 22:32:09-- http://ftp.fau.de/trinity/rpm/mga8/trinity-r14/RPMS/noarch/media_info/MD5SUM Resolving ftp.fau.de (ftp.fau.de)... 131.188.12.211, 2001:638:a000:1021:21::1 Connecting to ftp.fau.de (ftp.fau.de)|131.188.12.211|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 98 Saving to: ‘MD5SUM’
MD5SUM 100%[=====================================================>] 98 --.-KB/s in 0s
2021-03-03 22:32:09 (7.50 MB/s) - ‘MD5SUM’ saved [98/98]
On Wednesday 03 of March 2021 21:06:39 François Andriot via tde-devels wrote:
Le 03/03/2021 à 14:07, gregory guy via tde-devels a écrit :
I'm not an RPM user (at least not for TDE) so I can't test, but looks to me that the packages for Mageia8 are in the repo now (2021-Mar-02).
Felix (or an other Mageia user reading this message) if you have some spare time, would you mind updating the wiki with the last available info? https://wiki.trinitydesktop.org/Mageia_Trinity_Repository_Installation _Instructions
R14.0.6 vs R14.0.9, instructions for Mageai8, etc.
Hello, since the packages have been mirrored, I've updated the wiki, as mentioned by Gregory.
But then, I've found a problem while running the command on my computers.
# urpmi.addmedia trinity http://mirror.ppa.trinitydesktop.org/trinity/rpm/mga8/trinity-r14/RPMS/x 86_64 invalid MD5SUM file (downloaded from http://mirror.ppa.trinitydesktop.org/trinity/rpm/mga8/trinity-r14/RPMS/x 86_64/media_info)
# urpmi.addmedia trinity http://mirror.ppa.trinitydesktop.org/trinity/rpm/mga8/trinity-r14/RPMS/n oarch invalid MD5SUM file (downloaded from http://mirror.ppa.trinitydesktop.org/trinity/rpm/mga8/trinity-r14/RPMS/n oarch/media_info)
Both files actually exist and are valid on the mirrors.
I think something is wrong with the mirror redirection.
The following curl command does not return anything: $ curl http://mirror.ppa.trinitydesktop.org/trinity/rpm/mga8/trinity-r14/RPMS/n oarch/media_info/MD5SUM
When you try
curl -I http://mirror.ppa.trinitydesktop.org/trinity/rpm/mga8/trinity-r14/RPMS/noarc...
...you will see that the redirector response is redirection. When you try to add a parameter to follow this redirection:
curl -L http://mirror.ppa.trinitydesktop.org/trinity/rpm/mga8/trinity-r14/RPMS/noarc...
...you will see that curl will follow redirect and shows the expected data. In other words, redirector does what he was designed - redirects the client's request to a specific server.
But the same url using wget works as expected: $ wget -q -O - http://mirror.ppa.trinitydesktop.org/trinity/rpm/mga8/trinity-r14/RPMS/n oarch/media_info/MD5SUM
Because wget this redirect follows automatically, it gives the data as you expected.
So; the workaround is to use wget with urpmi (e.g; use 'urpmi --wget'), but I did not have this problem with Mageia 7 ...
I don't know if it's a problem with my internet connection, or if it happens to everyone using Mageia 8.
Is it possible that urmpi is not ready to follow the redirection?
François ____________________________________________________
Cheers