• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Linux Extracting big size files doesnt works. ex(world.zip)

Stellow

C++/C#/PHP/LUA
Joined
Oct 23, 2008
Messages
1,112
Reaction score
221
Location
Germany
GitHub
eubrunomiguel
Ok, I instaled on my linux 7z, Winrar, Zip..

I tried to send my server file any times and didnt work

the last time that I tried was .zip so I got this error:

Archive: Game-Files.zip
End-of-central-directory signature not found. Either this file is not
a zipfile, or it constitutes one disk of a multi-part archive. In the
latter case the central directory and zipfile comment will be found on
the last disk(s) of this archive.
unzip: cannot find zipfile directory in one of Game-Files.zip or
Game-Files.zip.zip, and cannot find Game-Files.zip.ZIP, period.

Why?

- - - Updated - - -

I tried unzip file.zip



I guess I found the problem, how to fix:

I already tried but I cant rememeber what program, the main problem is, didnt work. I guess my problem is, if the file has a big size compressed, it wont work. eg. I can send talkaction.zip to linux and I will unzip. But, if I send my world.zip, it wont unzip.
 
Last edited:
what are you using to archive your files? I use winrar --> add to archive select Archive Format: .Zip and on Compression method i choose Best quality, dont split the files and dont archive archived files.

on my server i use zip

Code:
sudo unzip archivename.zip
 
you need root access to add sudoers.. if you have a root account type: visudo to add otsmanager to the sudoers list

sudoers.jpg
Code:
username ALL=(ALL) ALL

buuuuuut.. if otsmanager has all permissions in the otserv folder you dont need to use "sudo"
 
Then compress it to the format .tar.gz. And then, use this command:
Code:
tar -xvf filename.tar.gz
 
Then compress it to the format .tar.gz. And then, use this command:
Code:
tar -xvf filename.tar.gz

1-) What program do I use to compress like this?

2-) I already tried but I cant rememeber what program, the main problem is, didnt work. I guess my problem is, if the file has a big size compressed, it wont work. eg. I can send talkaction.zip to linux and I will unzip. But, if I send my world.zip, it wont unzip.
 
1-) What program do I use to compress like this?

2-) I already tried but I cant rememeber what program, the main problem is, didnt work. I guess my problem is, if the file has a big size compressed, it wont work. eg. I can send talkaction.zip to linux and I will unzip. But, if I send my world.zip, it wont unzip.

7-Zip
 
Back
Top