Page 1 of 2

FTP down ?

Posted: Sat Feb 09, 2013 11:46 am UTC
by Poil

Hi,
Your ftp server seem to be down

Code: Select all

Downloading missing or updated files...
Downloading pakB.pk3* to /var/games/unvanquished/main...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
Warning: Transient problem: FTP error Will retry in 1 seconds. 5 retries left.
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
Warning: Transient problem: FTP error Will retry in 2 seconds. 4 retries left.
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
Warning: Transient problem: FTP error Will retry in 4 seconds. 3 retries left.
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
Warning: Transient problem: FTP error Will retry in 8 seconds. 2 retries left.
  0     0    0     0    0     0      0      0 --:--:--  0:00:01 --:--:--     0
Warning: Transient problem: FTP error Will retry in 16 seconds. 1 retries
Warning: left.
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
curl: (22) The requested URL returned error: 404
FAILED.

Re: FTP down ?

Posted: Sat Feb 09, 2013 12:43 pm UTC
by Viech

We don't have a FTP server of our own, this is sourceforge. And yes, it fails pretty often. It seems like some of their mirrors are out of sync (the 404 error means they don't have the file you're requesting). You can try to get the files manually here.

Are you located in france? Another french user had the same problem.


Re: FTP down ?

Posted: Sun Feb 10, 2013 1:13 am UTC
by ViruS

Ohai poil.
Viech: This may answer your question:
If i remember correctly, Poil hosts/manages the quake.fr server?


Re: FTP down ?

Posted: Sun Feb 10, 2013 1:23 am UTC
by Viech
ViruS wrote:

Viech: This may answer your question:
If i remember correctly, you host/manage the quake.fr server?

No I don't. I do manage the Map Test Server but I don't know how the vserver will react to a high bandwidth consumption. It has a 100 mbit/s connection but that is probably restricted to some definition of "fair use" and will get throttled if you stress it too hard. It could also have a negative impact on the game server performance. If we manage to set up a load balancer or choose downloads randomly from a mirrorlist, I could contribute some bandwidth though.


Re: FTP down ?

Posted: Sun Feb 10, 2013 4:24 am UTC
by ViruS

I was refering to poil... meh my fail english fails as usual... (Now fixed)


Re: FTP down ?

Posted: Sat Mar 02, 2013 9:02 am UTC
by Poil

Humm, there is something bad

I've run the script in bash -x

Code: Select all

+ echo 'Downloading map-parpax-d01.pk3* to /var/games/unvanquished/main...'
Downloading map-parpax-d01.pk3* to /var/games/unvanquished/main...
+ test '' '!=' ''
+ curl --retry 5 -fLo $'/var/games/unvanquished/main/map-parpax-d01.pk3\302\240.tmp' $'http://freefr.dl.sourceforge.net/project/unvanquished/Assets/map-parpax-d01.pk3\302\240'

+ test 130 = 0
+ echo 'FAILED.'
FAILED.

Copy paste : failed

Code: Select all

root@game:/var/games/unvanquished/main# curl --retry 5 -fLo $'/var/games/unvanquished/main/map-parpax-d01.pk3\302\240.tmp' $'http://freefr.dl.sourceforge.net/project/unvanquished/Assets/map-parpax-d01.pk3\302\240

Remove extra chars, working

Code: Select all

root@game:/var/games/unvanquished/main# curl --retry 5 -fLo /var/games/unvanquished/main/map-parpax-d01.pk3 http://freefr.dl.sourceforge.net/project/unvanquished/Assets/map-parpax-d01.pk3
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 44.8M  100 44.8M    0     0   104M      0 --:--:-- --:--:-- --:--:--  104M

Re: FTP down ?

Posted: Sat Mar 02, 2013 9:29 am UTC
by Poil

Edit Hum the forum convert the fake whitespace to *??

I've got it, there is a "fake" whitespace returned by md5sum

Code: Select all

md5sum --quiet -c /var/games/unvanquished/md5sums 2>/dev/null | cut -d: -f1 |awk '{ print "|||"$0"|||" }'
|||map-parpax-d01.pk3*|||
|||map-plat23-b9.pk3*|||
|||map-yocto-b1a.pk3*|||
|||pakC.pk3*|||
|||vms-0.13.0.pk3*|||

Yeah that's not a true whitespace :x

Code: Select all

md5sum --quiet -c /var/games/unvanquished/md5sums 2>/dev/null | awk '{ print $1 }'
map-parpax-d01.pk3*:
map-plat23-b9.pk3*:
map-yocto-b1a.pk3*:
pakC.pk3*:
vms-0.13.0.pk3*:

I've fixed like this (adding tr)

Code: Select all

(set -e; cd "$DEST_DIR"; md5sum --quiet -c "$CACHE/md5sums" 2>/dev/null) | tr -cd '\11\12\40-\176' |
  cut -d: -f1 |
  while read i; do

Re: FTP down ?

Posted: Sat Mar 02, 2013 6:24 pm UTC
by Ishq

Hm, we'll take a look at it. Thanks for posting a fix as well.


Re: FTP down ?

Posted: Sat Mar 02, 2013 6:42 pm UTC
by Anomalous

I see no such problem here… could this be locale-specific?


Re: FTP down ?

Posted: Sat Mar 09, 2013 9:06 pm UTC
by gnales

I have the same problem in France, it is a quite strange.
I will replace the asset manually when I have the time.
ps : It is a little out of the subject but have you a link to the assets on blender format ?