LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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-23-2006, 08:29 AM   #1
nsrprasad
LQ Newbie
 
Registered: Jan 2006
Posts: 6

Rep: Reputation: 0
Question Linux OS


Hello,

Where does the front end application programs reside in Linux OS. Will they run in user space?

Thanks
NSR Prasad
 
Old 01-23-2006, 08:48 AM   #2
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
First, what is the context of your question? Are you considering trying Linux? Have you tried it?
What computing environments are you familiar with?

You install applications onto a Linux installation---much as you would in Windows, but with more methods to choose from. For most things, you don't see the "front end"--or the back end. An obvious exception is the printing system, where you have front-end drivers that interface with apps, and back-end drivers that talk to printers.

What do you mean by "user space"? Generally programs will run as part of some parent process--eg the the user's shell. Programs can also be commanded to run in background.
 
Old 01-23-2006, 08:50 AM   #3
Matir
LQ Guru
 
Registered: Nov 2004
Location: San Jose, CA
Distribution: Debian, Arch
Posts: 8,507

Rep: Reputation: 128Reputation: 128
From a virtual-memory and privelege-separation point of view, all programs run in user-space. Only the kernel and kernel modules run in kernel-space. When programs need resources from the kernel, they make use of a system call (handled by libc and a kernel interface) to do so.
 
Old 01-23-2006, 09:03 AM   #4
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
Quote:
Originally Posted by Matir
From a virtual-memory and privelege-separation point of view, all programs run in user-space. Only the kernel and kernel modules run in kernel-space. When programs need resources from the kernel, they make use of a system call (handled by libc and a kernel interface) to do so.
As opposed to my attempts, this guy seems to know what he is talking about....
I don't think or kernel or kernel modules as "programs". By themselves, they don't do anything useful. To many people, I think program is taken as the thing that performs a particular function.

....from the great semantic swamp...
 
Old 01-23-2006, 09:06 AM   #5
Matir
LQ Guru
 
Registered: Nov 2004
Location: San Jose, CA
Distribution: Debian, Arch
Posts: 8,507

Rep: Reputation: 128Reputation: 128
Yes, I would not consider the kernel or modules programs, though they do behave similarly to one. My intent was to clearly define the line between user-space and kernel-space.

Based on the OP's reference to user-space, I assumed his question of where they reside was in the context of process (address) space, and not physical (i.e., disk). I could, however, be way off base here.
 
Old 01-23-2006, 09:11 AM   #6
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
I think you are closer to the base---I'm more like deep left field....
 
Old 01-23-2006, 07:12 PM   #7
tkedwards
Senior Member
 
Registered: Aug 2004
Location: Munich, Germany
Distribution: Opensuse 11.2
Posts: 1,549

Rep: Reputation: 52
Sorry for nit-picking but...

Quote:
I don't think or kernel or kernel modules as "programs". By themselves, they don't do anything useful.
They do do something useful - running the computer and all its hardware components, its just not directly useful to the user, but they are still programs.

Quote:
To many people, I think program is taken as the thing that performs a particular function.
A better word for that would be 'application'. I'd say a program is any piece of software which runs, an application is something that does a specific function for the user, eg. a web browser or a spreadsheet or something like that.

 
Old 01-23-2006, 07:57 PM   #8
Matir
LQ Guru
 
Registered: Nov 2004
Location: San Jose, CA
Distribution: Debian, Arch
Posts: 8,507

Rep: Reputation: 128Reputation: 128
Well, precision can be good and useful at times. No point in being unclear. We're all friends here, right?
 
Old 01-23-2006, 08:56 PM   #9
sundialsvcs
LQ Guru
 
Registered: Feb 2004
Location: SE Tennessee, USA
Distribution: Gentoo, LFS
Posts: 10,659
Blog Entries: 4

Rep: Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941
"The kernel" is a device-control program: if you can pop off the case of your computer and "see something or touch it," then the kernel is what physically controls it. That includes: CPU, memory, the motherboard, peripheral devices, keyboard, mice, displays. The kernel provides the basic environment in which all programs are run. It creates and patrols the notion of "files." But ultimately, hardware control is all that it does.

"The system environment that you interact with every day" is actually composed of many programs, all running at the same time within the environment that the kernel has created. And, unlike Microsoft Windows, you have more control over these and can "see" them. Linux is a loosely-coupled system.

For example, let's say that you are looking at this page in FireFox and you decide to print it. How many programs are "helping" you? ...
  • The graphical display that you're looking at is built by the XWindows (or XOrg) subsystem.
  • The shell, or control-environment including taskbars and icons, might be Gnome, KDE, or something else ... running "under" XWindows/XOrg.
  • The FireFox browser is an application, interacting with each of these.
  • You sent an item to the printer, so the CUPS (or LPD) program is sending that output, a page at a time, to the printer.
  • Oh yes, there's a clock ticking away at the bottom of the screen... yep, another program.
All of these programs are running, simultaneously, in the environment created for all of them by the kernel.
 
  


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
link dies intermittently-seemingly at random- between win<->linux not linux<->linux?? takahaya Linux - Networking 10 03-09-2007 10:37 PM
triple boot linux/linux/linux No Windows involved toastermaker Linux - Newbie 12 03-02-2006 10:40 PM
Redhat (rhel v2.1) bootup problem with linux (linux vs linux-up) namgor Linux - Software 2 06-24-2004 02:49 PM

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

All times are GMT -5. The time now is 04:48 PM.

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