PDA

View Full Version : Copying New Wad File for Doom


CobraKC
2007-01-26, 03:41
HI! Ive installed Doom for the 770! I have the purchased WAD File and I can't find a way to copy it into the Doom's Wadfile Directory. I keep getting Permission Denied. etc... Ive tried about everything... including Xterm

Any Suggestions???

Thanks,

Cobra

dcarter
2007-01-26, 04:05
In X-term, you have to be root in order to complete the
cp
command.
To become root,
sudo gainroot
and if it denies, install the becomeroot program off maemo applications.

I can confirm that it works, and doom kicks *** with a real .wad!

hope this helps!

dcarter

DennisDale
2007-04-07, 00:42
I recently bought a N800 and I'm trying to get Doom to run on it. I'm afraid I'm quite new to the this environment. I have xTerm running and have LXDoom and maemo-games-startup installed from http://marceloeduardo.com/apt/pool/games/. However, when I try to start Doom, I get a window that says LXDOOM - loading. After about 30 seconds, it closes and nothing happens. I'm thinking that I don't have a WAD file. I have the WAD file from my PC version of Doom and understand I need to install on on my N800. However, I don't know where to put it. With Xterm, I found lxdoom, lxdoom.sh, lxdoom-mp.sh, and lxdoom_server in the /usr/bin. Is this where I put the WAD file?

Thanks, Dennis

james.bottomtooth
2007-05-26, 23:21
still don't get where and how i'm placing the WAD file...

anybody?

brendan
2007-05-27, 00:57
sudo gainroot
find / -name *.wad

james.bottomtooth
2007-05-27, 03:59
sudo gainroot
find / -name *.wad

thanks for the hint, but still no luck. find didn't find anything

dcarter
2007-05-27, 05:44
as far as I remember, you have to put the new wad (the one you want to use) on your mmc card (not in a folder, just on the card).

Do this thru USB connection and transfer it from your PC to the nokia's mmc card.

enter xterm
sudo gainroot
Now, you have to copy (cp) the file from your mmc card (/media/mmc1/name of your .wad) including the .wad extention at the end of it I think
into the doom .wad folder (/usr/share/lxdoom/wad)

something like this command:

cp /media/mmc1/nameofyour.wad /usr/share/lxdoom/wad

try mmc2 if it doesnt find it,
or try the move (mv) command

cd /
(will get you to the base of your file system)
cd media/mmc1
(will get you to the base of your mmc card
ls
will show you the files on your mmc card- check to see if your wad is there...

because you are now navigated to the place of the .wad you want to move,
I think you can just do the move command with the direction of where you want to move the selected file:
mv (nameofyour.wad) /usr/share/lxdoom/wad

and you can even check in the doom wad file to see what is there by
cd /
(will get you to the base of your file system)

cd /usr/share/lxdoom/wad
(will get you to the doom .wad folder)

ls
(will show you the contents of that folder.

I am not sure how familiar you are with navigating and manipulating files via terminal,
but anyone who is familiar is probably laughing their asses off at how lame I am....

Hope this helps, write back if you get error messages!!

dcarter

james.bottomtooth
2007-05-27, 12:38
Hope this helps, write back if you get error messages!!

dcarter

thanks a bunch, i pretty much had it, i just didn't know about /usr/share/lxdoom/wad directory...