• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Newbie question: how do I run .x86 programs in Linux?

Bengt4

Member
How do I run .x86 programs in Linux?

I have downloaded a .x86 file that is supposed to be an application. But I can't figure out how to run it.
It's not a .x86.run!!! It's just .x86...

I'm using RedHat Linux 9, and I am a newbie!!!

Bengt
 
ya probably got to make it executable.

In linux each file has special permissions, it's not like windows were you just add .exe to the back to make it exacutable...

if you are in command line mode or are using a xterm window then you can see these permisions by using the "ls -l" command...

If you want to learn about it just do a search on google for something like "linux file permission basics" or whatnot...

the easy answer it just to go

chmod 777 whateverthenameis.x86

this will make it exacutable and readable/writable by everybody...
hope it helps..

then while in the xterm just type:

./whateverthenameis.x86

good luck

(don't forget the dot slash (./) part!)
 
Back
Top