FTP down ?

Get support for Unvanquished.
Poil
Posts: 19
Joined: Sun Aug 26, 2012 12:02 pm UTC

FTP down ?

Post 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.
User avatar
Viech
Project Head
Posts: 2139
Joined: Fri Aug 03, 2012 11:50 pm UTC
Location: Berlin

Re: FTP down ?

Post 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.

Responsible for: Arch Linux package & torrent distribution, Parpax (map), Chameleon (map texture editor), Sloth (material file generator), gameplay design & programming, artistic direction

User avatar
ViruS
Granger
Posts: 1020
Joined: Sun Mar 11, 2012 4:24 am UTC
Location: Antartica - West Australian Post shore
Contact:

Re: FTP down ?

Post by ViruS »

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

ImageImageYou[TubeImage

User avatar
Viech
Project Head
Posts: 2139
Joined: Fri Aug 03, 2012 11:50 pm UTC
Location: Berlin

Re: FTP down ?

Post 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.

Responsible for: Arch Linux package & torrent distribution, Parpax (map), Chameleon (map texture editor), Sloth (material file generator), gameplay design & programming, artistic direction

User avatar
ViruS
Granger
Posts: 1020
Joined: Sun Mar 11, 2012 4:24 am UTC
Location: Antartica - West Australian Post shore
Contact:

Re: FTP down ?

Post by ViruS »

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

ImageImageYou[TubeImage

Poil
Posts: 19
Joined: Sun Aug 26, 2012 12:02 pm UTC

Re: FTP down ?

Post 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
Poil
Posts: 19
Joined: Sun Aug 26, 2012 12:02 pm UTC

Re: FTP down ?

Post 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
User avatar
Ishq
Project Head
Posts: 1147
Joined: Tue Mar 06, 2012 8:32 pm UTC

Re: FTP down ?

Post by Ishq »

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

User avatar
Anomalous
Programmer
Posts: 318
Joined: Wed Mar 07, 2012 3:51 pm UTC

Re: FTP down ?

Post by Anomalous »

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

Debian and Ubuntu packages (squeeze, wheezy, sid; 12.04, 12.10, 13.04) may work on derivatives

OFFEND! … no, that's not right… ATTACK!

gnales
Dretch
Posts: 58
Joined: Sat Oct 06, 2012 1:22 pm UTC

Re: FTP down ?

Post 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 ?

Image

Post Reply