LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 01-31-2010, 02:46 PM   #16
Lordrahl3000
LQ Newbie
 
Registered: Jan 2010
Posts: 21

Original Poster
Rep: Reputation: 15

Is there a way to put the actual download on this page?
 
Old 01-31-2010, 02:47 PM   #17
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
Quote:
Originally Posted by Lordrahl3000 View Post
Were u able to access the nasm download page? It keeps saying page not found. so if i could get that page to come up I may be able to follow some directions.
Sorry I don't know what page you are talking about. Have you been able to work out what linux distribution you are running? The following command may tell you:

Code:
 cat /etc/*release
Evo2.
 
Old 01-31-2010, 02:52 PM   #18
Lordrahl3000
LQ Newbie
 
Registered: Jan 2010
Posts: 21

Original Poster
Rep: Reputation: 15
no ideas on how to get the download link to come up?
 
Old 01-31-2010, 02:53 PM   #19
Lordrahl3000
LQ Newbie
 
Registered: Jan 2010
Posts: 21

Original Poster
Rep: Reputation: 15
It's yellow dog lenux.
 
Old 01-31-2010, 02:56 PM   #20
Lordrahl3000
LQ Newbie
 
Registered: Jan 2010
Posts: 21

Original Poster
Rep: Reputation: 15
Yellow Dog Lenux release 6.2 (Pyxis)
 
Old 01-31-2010, 03:09 PM   #21
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
Quote:
Originally Posted by Lordrahl3000 View Post
Yellow Dog Lenux release 6.2 (Pyxis)
Then, as I suggested earlier, try this:

http://www.yellowdoglinux.com/suppor...nintendo.shtml

I can't answer you about "the download link". That's too vague.

I'm about to head off now. Good luck.

Cheers,

Evo2.
 
0 members found this post helpful.
Old 01-31-2010, 03:15 PM   #22
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
The nasm assembler is an 80x86 assembler. You use a different processor.
From the Wikipedia entry for zsnes:
Quote:
The emulator is written mainly in in low-level assembly language for x86 processors, in order to run more smoothly on slower processors. However, as a result it cannot be ported to devices that do not run on Intel-compatible processors, as such a port would require the majority of the codebase be entirely re-written from scratch. Thus, for example, there is no possibility of ZSNES ever running as homebrew software on the Xbox 360 or Nintendo Wii, which utilize the PowerPC processor.
It goes on to mention the zsnes9x project which is written in C++.
The zsnes9x download page doesn't list any mirrors. The zsnes9x-gtk project does have a source tarball.

http://code.google.com/p/snes9x-gtk/

Look in the gtk or unix directories for the configure file. Without nasm, it doesn't set the assembler core options.

---
Evo. I started researching my answer just after your prior post.

Last edited by jschiwal; 01-31-2010 at 09:56 PM. Reason: code -> quote typo
 
Old 01-31-2010, 04:29 PM   #23
PTrenholme
Senior Member
 
Registered: Dec 2004
Location: Olympia, WA, USA
Distribution: Fedora, (K)Ubuntu
Posts: 4,187

Rep: Reputation: 354Reputation: 354Reputation: 354Reputation: 354
Quote:
Originally Posted by Lordrahl3000 View Post
yes yum is installed. when i used the command 'sudo yum install nasm' it said that its not in the sudoer. and it would be reported.
Instead run su -c 'yum install nasm' and, when prompted, enter the password of "root."

Alternatively, just enter su - and the password of "root" to open a terminal session as "root." Do, however, be careful since you can cause extensive system damage whilst running as "root."
 
1 members found this post helpful.
Old 01-31-2010, 04:43 PM   #24
Lordrahl3000
LQ Newbie
 
Registered: Jan 2010
Posts: 21

Original Poster
Rep: Reputation: 15
I need an accessible download for a nasm.rpm but can't find one. If I go to the link mentioned above it just goes to a page that says: "Page not Found". Does anyone know of a site I can go to for an accessible download?

Last edited by Lordrahl3000; 01-31-2010 at 04:50 PM.
 
Old 01-31-2010, 10:06 PM   #25
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
I was able to build the snes9k-gtk source. If you don't have nasm, it will still build. Some configure options will be disabled.

Are you certain that you downloaded the source for the PowerPC or that it includes PPC support?

Both the snes9k and the binary download links provided earlier are dead ends. You may want to start over with the snes9k-gtk source. Cd to the gtk/ directory and run "./configure --without-assembler"

The nasm assembler if available for the PPC may be used for the purpose of cross compiling. It can generate code that you would install on an Intel based computer.


The Yellow Dog DVD does not supply a nasm package. That avenue sounds like a dead end.

Last edited by jschiwal; 01-31-2010 at 11:07 PM.
 
Old 02-02-2010, 10:44 AM   #26
Lordrahl3000
LQ Newbie
 
Registered: Jan 2010
Posts: 21

Original Poster
Rep: Reputation: 15
I finally found a nasm.ppc.rpm:
http://www.rpmfind.net/linux/RPM/fed....fc11.ppc.html
And using the commands above given by PTrenholme I was able to install nasm!!!

Thanks all for your support!

Lordrahl3000
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
nasm 0.98 vs. 2.03 rob.til Slackware 2 07-04-2008 07:50 PM
Installing NASM jordan28 Programming 5 12-24-2007 12:10 AM
Heap in nasm des_a Programming 2 06-24-2007 11:17 PM
nasm Question Whiteghost Programming 2 09-11-2005 04:40 PM
Nasm essoft478 Linux - Software 2 09-13-2004 04:33 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 03:33 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration