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 |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
|
02-06-2010, 11:26 AM
|
#16
|
LQ Veteran
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809
|
Quote:
Originally Posted by elishac
Well, now that you've understood what my problem is, maybe you'll be able to help me ?
|
Sure!! If you absolutely need this behavior, then use a file manager that has it!
In principle, you can install any file manager on any distro. Here's one list of possibilities:
http://www.linuxlinks.com/article/20...eManagers.html
The only ones not available on my system (Arch) are: Endeavor, Rox-Filer, and 4Pane
|
|
|
02-06-2010, 11:28 AM
|
#17
|
LQ 5k Club
Registered: Sep 2009
Posts: 6,443
|
Quote:
Originally Posted by elishac
Meaning that would be too difficult ?
|
Almost certainly. Unless the Nautilus dev team decides to implement it.
Quote:
Originally Posted by elishac
I'm not familiar with such big applications. How many .exe files are there, and where are they located on my computer ?
|
Executables aren't ".exe"s in Linux. Linux doesn't even have a built-in concept of "extensions". They instead have no extension and are executable because their executable permission is set, not because of the name.
Quote:
Originally Posted by elishac
Is the source code on my computer, or only the compiled version ?
|
You only have the executables, not the source, and you would have to understand Naitilus's code to do this.
|
|
|
02-06-2010, 11:31 AM
|
#18
|
LQ Veteran
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809
|
Quote:
Originally Posted by elishac
Meaning that would be too difficult ?
I'm not familiar with such big applications. How many .exe files are there, and where are they located on my computer ? Is the source code on my computer, or only the compiled version ?
|
How many .exe files to recompile a Linux app? NONE!!---exe is a Windows executable.
You could certainly grab the source code for Nautilus (Google will find it), but my guess is that---unless you already know the source--- you are talking many days or even weeks to make this change.
IMHO, recompiling Nautilus to get this one feature is NOT the way to go. (See my post about all the other choices.)
|
|
|
02-06-2010, 11:33 AM
|
#19
|
Member
Registered: Nov 2009
Posts: 522
Original Poster
Rep:
|
Well if it's too difficult nevermind then.
According to the link given by carbonfiber, may we assume that this 'bug' is being dealt with, and shall be fixed in the next nautilus version? (when is it supposed to be released?)
In order to help me understand better how linux works, can someone answer my questions of the post 13 please (even though it's not directly linked to the issue at hand) ?
edit: nevermind, i think it's been answered while i was writing this. Let me read it.
Last edited by elishac; 02-06-2010 at 11:34 AM.
|
|
|
02-06-2010, 11:34 AM
|
#20
|
LQ 5k Club
Registered: Sep 2009
Posts: 6,443
|
Also, executables do not contain human-readable source code. You cannot modify them. You must get the code to modify it, and then compile it into executables.
|
|
|
02-06-2010, 11:38 AM
|
#21
|
LQ 5k Club
Registered: Sep 2009
Posts: 6,443
|
To understand how Linux works, forget completely about how Windows works. Some things you might think cannot be made different, but they are.
Quote:
Originally Posted by elishac
How many .exe files are there, and where are they located on my computer ?
|
As I explained in another post, there is no such thing as ".exe" in Linux.
They are usually located in /bin (command-line essentials), /usr/bin (most programs go here), or /usr/local/bin (some programs go here, too. Usually when you compile a program it goes here by default).
Quote:
Originally Posted by elishac
Is the source code on my computer, or only the compiled version ?
|
Only the compiled version.
|
|
|
02-06-2010, 11:42 AM
|
#22
|
LQ Guru
Registered: May 2009
Location: Gibraltar, Gibraltar
Distribution: Fedora 20 with Awesome WM
Posts: 6,805
|
Hi,
In addition to MTK358's post, you can find some more information about differences between Linux and Windows, explained in a very comprehensible way on this site:
Linux is not Windows
Kind regards,
Eric
|
|
|
02-06-2010, 11:42 AM
|
#23
|
Member
Registered: Sep 2009
Location: Sparta
Posts: 237
Rep:
|
Quote:
Originally Posted by elishac
may we assume that this 'bug' is being dealt with
|
You may assume what you like.
|
|
|
02-06-2010, 11:43 AM
|
#24
|
Member
Registered: Nov 2009
Posts: 522
Original Poster
Rep:
|
Well I know you guys always get all huffy when someone talks about .exe's in linux. But as far as I've understood (and I'm new to all this), it's just a way of speech. One could say that all files whose permissions are set to executables are called .exe files. There certainly is a difference between a text file that can be read by humans and a .exe file (or whatever you call it) that cannot. That's not my point anyway.
I just wanted to know where are the files that make nautilus run on my computer...
|
|
|
02-06-2010, 11:53 AM
|
#25
|
LQ Veteran
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809
|
Ahem---no one is getting huffy......We are only trying to help based on our knowledge.
In normal usage, any time you say ".xxx file" it means a file with the extension "xxx". There are a long list of common extensions that are used differently (or not at all) by various OSes and apps.
".exe" is the common extension for Windows executables, but I believe that you can add ".exe" to a Linux executable and it will still run (easy to test).
Quote:
I just wanted to know where are the files that make nautilus run on my computer...
|
Do you mean the executables or the source code? The executables will be in /bin, /sbin, /usr/bin, /usr/sbin, maybe /usr/share/*/, and in various /*/*/lib locations. Finding all of them might be a problem.
|
|
|
02-06-2010, 11:57 AM
|
#26
|
LQ 5k Club
Registered: Sep 2009
Posts: 6,443
|
I still think that saying that a file is a ".exe" refers to the fact that it has the extension "exe" and is a Windows executable.
If you want to keep talking like that, at least call them "exe"s (without the dot that implies Windows extension).
Last edited by MTK358; 02-06-2010 at 11:58 AM.
|
|
|
02-06-2010, 12:04 PM
|
#27
|
Member
Registered: Nov 2009
Posts: 522
Original Poster
Rep:
|
ok, thanks. Just one last question before closing this topic :
is there any way to know when the next nautilus version is going to be released, and if it will include a fix for this slight inconvenience ?
|
|
|
02-06-2010, 12:08 PM
|
#28
|
LQ 5k Club
Registered: Sep 2009
Posts: 6,443
|
Quote:
Originally Posted by elishac
ok, thanks. Just one last question before closing this topic :
is there any way to know when the next nautilus version is going to be released, and if it will include a fix for this slight inconvenience ?
|
Well, I wouldn't call it a "bug" as you did before. The program just wasn't intended to do that in the first place. A bug is when a program doesn't behave the way it was intended.
It just depends on whether the developers either decide they want that feature or get enough requests for it. Personally I don't miss it (not that I didn't like it, but I didn't really pay attention to it).
|
|
|
02-06-2010, 12:08 PM
|
#29
|
LQ Guru
Registered: May 2009
Location: Gibraltar, Gibraltar
Distribution: Fedora 20 with Awesome WM
Posts: 6,805
|
Hi,
If you're into customizing Nautilus you might want to have a look at this site:
http://live.gnome.org/Nautilus
It mentions extending functionality, writing extensions for it, and so on.
Kind regards,
Eric
|
|
|
02-06-2010, 12:12 PM
|
#30
|
LQ Veteran
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809
|
Quote:
Originally Posted by MTK358
Well, I wouldn't call it a "bug" as you did before. The program just wasn't intended to do that in the first place. A bug is when a program doesn't behave the way it was intended.
It just depends on whether the developers either decide they want that feature or get enough requests for it. Personally I don't miss it (not that I didn't like it, but I didn't really pay attention to it).
|
Ditto---If I were maintaining Nautilus, adding this feature would probably never get on my "top ten" list.
I recommend that you try Dolphin.....It is the best file manager I have ever seen, and is better than anything I ever saw on Windows (at least up to XP professional)
|
|
|
All times are GMT -5. The time now is 08:54 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|