You are pretty close. You need to have your .map files installed into your /home/eqemu/server/maps directory. Make sure that you are unzipping the files if you are downloading them in a zip or gz format. You should have a couple hundred files in that directory once they are all unzipped.
And, yes, you need to download the peqdb_1119a.sql.gz file and save it in your /home/eqemu/server/database directory. That is a zipped file, so you need to unzip it. I think you can run a command like:
Code:
tar peqdb_1119a.sql.gz
Or something like that to unzip the file. Then, run the "ls" command again and you should see some files that end in .sql without the .gz on the end. There should be 1 or maybe 2 files.
From that point, you just follow the instructions and do mysql -u root and login. Then you need to create your database if you haven't done that yet. Then type "use databasename" and it will tell you it is using the database that you just created. Then all you need to do is type "source peqdbxxxxx.sql" or whatever those .sql file names were that you saw when you did the LS command.