»
 

Go Back   ResellerRatings Store Ratings > ResellerRatings Forums > Tech Support

Reply
 
LinkBack Thread Tools Display Modes
Old 06-30-2003, 03:27 PM   #1 (permalink)
Registered User
 
mossopinc's Avatar
 
Join Date: Dec 2002
Posts: 125
mossopinc is on a distinguished road
linux mandrake

ive just installed mandrake (my 1st try at linux ) but am stuck for the mo

how do i know wat files are like windows exe files????? abd just wat do i do wae these files to install em?????? HELP

__________________
If practice makes perfect and nobodys perfect why practice?


<p><p><font face="verdana, arial, helvetica" size="2" >__________________<br>
<a href="mailto:me@shaunrowe.com"><img src="http://www.shaunrowe.com/images/genie_sig.jpg" border="0" alt=""></a></font></p></p>
mossopinc is offline   Reply With Quote
Old 06-30-2003, 04:03 PM   #2 (permalink)
Registered User
 
Scott Tiger's Avatar
 
Join Date: Mar 2002
Location: Roanoke, VA
Posts: 3,379
Scott Tiger is on a distinguished road
Congratulations on getting Linux installed!

Unfortunately the answer to your question is pretty simple to explain but not so easy for a new linux user who grew up using Windows to relate to. Here's a shot at it:

In Linux/Unix you can make files executable just like you can make it readable or writable. So any file can be executable. There are multiple benefits to this. One is that you can make any text file executable just by changing the permissions. You can do much the same thing in Windows buy giving the text file the extension of .bat - the principle is the same.

You can read more about Unix file permissions here:

http://www.linuxjunior.org/cgi-bin/p...=Display&id=60


That being said, most executable files will by convention (but not by neccassity) have the file extension of either .run or .bin. I'm sure there are others that I'm forgetting but those are the two big ones I come across the most. Just keep in mind that you don't need a file extension on the file for it to be executable.

someFile.bin, someFile.run and someFile can all be executable (or than can all be unexecutable just the same.) My point here is that the mime type (the file extension) doesn't govern whether something is executable or not.

HTH's
__________________
Registered Linux User: 288411
Licensed Windows XP User
Scott Tiger is offline   Reply With Quote
Old 06-30-2003, 07:09 PM   #3 (permalink)
Registered User
 
Join Date: Oct 2001
Location: NC in the US
Posts: 3,732
Redwolf is on a distinguished road
Send a message via ICQ to Redwolf Send a message via AIM to Redwolf Send a message via Yahoo to Redwolf
Easiest way to tell:

Go into konquerer and look for programs with gears as their icons!
Redwolf is offline   Reply With Quote
Old 06-30-2003, 07:16 PM   #4 (permalink)
Registered User
 
crouse's Avatar
 
Join Date: Jun 2002
Location: Iowa
Posts: 2,527
crouse is on a distinguished road
Send a message via ICQ to crouse
what version of mandrake??
__________________
The day Microsoft makes something that doesn't suck is probably the day they start making vacuum cleaners. --- Author Unknown.
crouse is offline   Reply With Quote
Old 07-01-2003, 02:18 PM   #5 (permalink)
Registered User
 
mossopinc's Avatar
 
Join Date: Dec 2002
Posts: 125
mossopinc is on a distinguished road
mandrake 9.1
and cheers Scott Tiger ill go mess wae that info now M8

so wat program do i assoitate wae file to load em???? man an lost :'(

right im tryimg this

To install Mozilla by downloading the Mozilla installer,
follow these steps:

1. Create a directory named mozilla (mkdir mozilla)
and change to that directory (cd mozilla).

2. Click the link on the site you're downloading
Mozilla from to download the installer file
(called mozilla-1686-pc-linux-gnu-installer.tar.gz)
to your machine.

3. Change to the mozilla directory (cd mozilla) and
decompress the archive with the following command:

tar zxvf moz*.tar.gz

The installer is now located in a subdirectory of
Mozilla named mozilla-installer.

4. Change to the mozilla-installer directory
(cd mozilla-installer) and run the installer with the
./mozilla-installer command.

5. Follow the instructions in the install wizard for
installing Mozilla.


but in gnome wat program do i type this in
cd mozilla-installer and cd mozilla if i can find that i think ill be ok.......................................well ya like to think so

__________________
If practice makes perfect and nobodys perfect why practice?


<p><p><font face="verdana, arial, helvetica" size="2" >__________________<br>
<a href="mailto:me@shaunrowe.com"><img src="http://www.shaunrowe.com/images/genie_sig.jpg" border="0" alt=""></a></font></p></p>

Last edited by mossopinc; 07-01-2003 at 03:03 PM.
mossopinc is offline   Reply With Quote
Old 07-01-2003, 09:32 PM   #6 (permalink)
Registered User
 
cunokyle's Avatar
 
Join Date: Sep 2002
Location: Iowa
Posts: 1,093
cunokyle is on a distinguished road
Send a message via AIM to cunokyle
Mozilla comes with Mandrake 9.1(just a heads up)...run your Mandrake Control Center, select Software Management, then run RPM Drake...then type in Mozilla...it should pop up, to install it, check the box for the Mozilla browser...you will be prompted for the correct cd...that should take care of it....

If you want to do it the way you asked, you will need to open a terminal window to type the commands into.
cunokyle is offline   Reply With Quote
Old 07-03-2003, 06:53 AM   #7 (permalink)
Registered User
 
nukes's Avatar
 
Join Date: Oct 2002
Location: Scotland, UK
Posts: 2,946
nukes is on a distinguished road
Send a message via AIM to nukes Send a message via Yahoo to nukes
Right, I'll try and explain this in a way a windows user might understand.
Rember the 'path' environment variable in DOS? It contained the list of directories to search for an executable program typed in the command-line. It looked something like this in autoexec.bat:
Code:
set PATH=c:\;c:\dos;c:\windows;%PATH%;c:\mouse;
Now, what that did was cause the computer to search each of these paths for the executable (.com, then .exe) and then run it in the first one it found. The %PATH% entry was important, that made it search the current directory as well, eliminating the need to type .\edit.com or whatever. In Linux, that is not set by default (for security reasons) and means that it only searches the paths configured for your user when you type a program name. NOT the current dir. To launch a program in the current dir, you need to type
Code:
./progname
Now, onto identifying executable types. To understand this, you must have a basic understanding of how Linux (and other *nix systems) handle file permisssions. go to a directory and type "ls -l" in the command line (henceforth reffered to as bash or the bash prompt). You will get a list of filenames and their permissions down the left. they look like:
rwxrwxr--
The r's stand for read access. The w's stand for write access and the x's stand for execute (meaning the file can be executed)
The three sets mean something as well. The first three is for 'owner' meaning the owner listed next to the file. The second is for the listed 'group' and the third set is for everyone else.
So, in this example, the owner can read, write and execute the file, as can the group, everyone else however can only read and execute the file.

I would write more, and will if you want later, but ATM I have just spent 10 mins of my limited time in a cybercafe. Therefore I must dash, but I'll be back to explain more later.
__________________
_____
NuKeS
nukes is offline   Reply With Quote
Old 07-04-2003, 12:06 AM   #8 (permalink)
Registered User
 
soulja's Avatar
 
Join Date: Apr 2003
Location: Petersburg, Va
Posts: 1,791
soulja is on a distinguished road
Send a message via AIM to soulja
same thing problem i had lol
soulja is offline   Reply With Quote
Reply




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Most Active Discussions

Recent Discussions

All times are GMT -6. The time now is 04:45 AM.