General :: Notion Of Robbed Task Multiprogramming - Application In Parallel

Mar 17, 2011

Notion of robbed task multiprogramming. I'm looking for information on this concept to better understand its application in parallel

View 1 Replies


ADVERTISEMENT

General :: Launching A Task From Cli And Divorcing It From Terminal Task?

Feb 10, 2011

How do you launch a task from a terminal command line interface and it not be kill'ed if you close the terminal window. Like if I run jedit I type jedit & which launches jedit as a backgorund task. But, if I close terminal window, jedit dies to. How do I laucnch jedit and completely divorce it from the terminal task?

View 6 Replies View Related

Ubuntu :: Startup Application Opening Behind Task Bars?

May 11, 2011

im building a small wallboard machine, using ubuntu 10.10 as 11.4 refuses to load correctly on any of my spare machines.but, anyway, thats not the issue, ive installed chromium-browser, and added it to the startup applications with

Code:

chromium-browser -kiosk http://wallboard
where http://wallboard is the wallboard info thats being displayed.

that works, BUT the browser is opening BEHIND the top 'menu' bar, and the bottom 'task' bar, which obviously, is not what i want. how do i set it to either hide these 'bars' or open the browser in front of them like it does if i manually run the command from a terminal?

View 2 Replies View Related

General :: Evolution Task List Reminder (sync With Phone And Online Task List)

May 19, 2011

I have my task list in evolution (mainly so it can sync with my phone and online task list) but I always forget to look at the task list. Is there an application or plugin which periodically displays the contents of the tasklist or even better, it briefly displays the most urgent/important tasks when I login? Or anything else which automatically displays the most important tasks. Currently I have to open the task list and look at them (which I usually forget). I do not mean some kind of alarm when the task is due but more a daily reminder of what to do.

View 3 Replies View Related

Server :: Samba Shares And The Notion Of Group Of Groups

Feb 9, 2011

this is really a brainstorming thread seeking advise on how to setup some samba shares within a small office network. For the quick judgers:

-no I'm not an IT expect and I'm not even the IT at the office, I just fill in this gap too.
-I have looked into several samba 'by example' tutorials - none seems to fit my needs or answer some of my Qs.

So I seek advise from your experience: What do I know:

-the functionality of the setgid to have subfolders inherit the group owner of the parent folder
-the fact that I don't want samba in 'share' level in order to register the owners of files
-the functionality of acls that enables inheritance of rwx permissions to subfoldrs of a parent folder.
- the groupmod -o option but that doesn't help apparently.

So this is a 25ppl civil engineer consulting office. The physical groups of ppl working here are: engineers, drafters (those who generate the drawings , i'm not sure if thats the correct term), and secretaries. The job usually is done in the following way, once a project commences a project folder gets generated and everything is done in there. incoming mail arrives there (secretaries put it there), engineers do they calculations on speadsheets, write reports and do draft drawings and, finally, drafters take the draft drawings and finalize them. So pretty much everyone of these 3 groups needs write access to the main project folder.

How do I accomplish that? as which group should I create the project folders? It came to mind the notion of group of groups. Now that the actual owner of the file is not so important anymore (several engineers will need to have write access to the folder) and group becomes important, it would be nice to have the ability to add... groups (instead of users) to groups! so that the permissions to a group are inherited by its children groups... Does such functionality exist of can it be implemented somehow?

How do I go about giving access to everyone and at the same time, NOT giving up on the 'user' secutiry level of samba (and NOT just giving rwx permission to 'others'? Is it possible? or Should I instead forget about individuals and match the 'physical groups' to 'linux users' and 'groups of groups' to 'linux groups'? ( This means I should give on ownership of files by individuals )? Since its a small office some work is mixed - engineers might pickup incoming email, a secretary might do abit of drafting work etcetc.

View 4 Replies View Related

Ubuntu :: Disable "opening Application X" Notification In Gnome Task Panel?

Oct 15, 2010

How can I disable that, please?
Everytime I start an app, the task panel will for a while show a new "dummy" entry "Opening Application X", which is extremely annoying and makes no sense, since I know I'm opening it, because I just clicked on it myself.

View 1 Replies View Related

OpenSUSE :: Tasks Overlap In Task Bar (system Tray / Task Manager)?

Jun 26, 2011

Anybody knows how to fix overlapping tasks in KDE system taskbar?Here System Monitor overlaps with digiKamWorkaround to rearrange icons - start any new task.Sorry for taking real photo of the screen. When I do PrintScreen KSnapShot task appears in the list and makes all task to rearrange. The resulting screenshot contains already fixed view.

View 5 Replies View Related

Ubuntu Installation :: Task Manager Or Task Bar, Keeps Changing Length?

May 29, 2011

After upgrading from 10.10 to 11.04 all of a sudden, the task manager or task bar, keeps changing length. The individual window "buttons" themselves keep changing size - flashing even, and the space between them also changes. It is driving me nuts! The little system tray(?) icons no longer appear in the system tray, but all stacked on top of each other in the top left corner.

View 1 Replies View Related

General :: Run Same Script In Parallel From On Session?

Mar 17, 2010

I have a shell script to refresh some databases. Currently I open 5 sessions and to execute the five scripts.

Today, as test, I tried to see if I could run two refreshes simultaneously from one session using the '&':

. /refresh.ksh db1 &
. /refresh.ksh db2

The first one ran and the second one started only after the first one was finished. Could it be that the script refresh.ksh contains many commands and those are not pushed to the background? If so, what's the best approach to getting 5 db's refresh simultanously from on session?

View 6 Replies View Related

General :: Parallel Processing Slower Than Sequential?

Jul 28, 2011

While converting some images using ImageMagick, I noticed a somewhat strange effect. Using xargs was significantly slower than a standard for loop. Since xargs limited to a single process should act like a for loop, I tested that, and found it to be about the same.

Thus, we have this demonstration.

Quad core (AMD Athalon X4, 2.6GHz)
Working entirely on a tempfs (16g ram total; no swap)
No other major loads

[Code]....

View 1 Replies View Related

General :: How To Identify Current CPU In A Parallel Machine

Sep 1, 2010

I do not know much about parallel computing, but I do have access to a few cpus.I am trying to write a program compatible for multiple cpus, but to do it, I need to ensure unique directories. I have figured out that the time of creation, process id, and cpu id form a unique combination I can use to name files (up to the degree of accuracy of the internal timer).Anyway, I am using perl. I know how to find the process id and I know I can get the time pretty easily, but as I said, I do not know much about hardware or parallel computing. All I need is a way to identify each cpu in the system and I am set for half of my program (the other half is significantly more straightforward and is mainly about text parsing.)

So anyway using terminal, perl, etc., I could access this identification? Or could someone at least tell me the name of what I am looking for? I have seen the words "ip" "MAC" "hostid" and a bunch of other "id" things come up in my googling, but I really cannot figure out which is the one relevent to me

View 6 Replies View Related

General :: Lighting LEDS Using Parallel Ports?

Oct 1, 2010

I would like to add a driver to /dev which can light the LEDS using the parallel port. Where I should start from. I am trying to learn device driver programming, which is quite difficult for me now.

View 8 Replies View Related

General :: Printing With Usb To Parallel Adapter With Hp 720c

Mar 25, 2010

I've got a fresh install of ubuntu 9.10 on a fresh disk and everything was going perfectly. I bought a Usb=>parallel cable to connect my old parallel port printer.When I try and print, sometimes it works and sometimes it doesn't. Sometimes the job will go to the print queue and then nothing happens, in this case if I unplug and replug the usb cable a couple of times it usually prints the document. Sometimes the job doesn't show up in the print queue at all and sometimes it prints the document with no problems.

Whenever I use lsusb, I never see the printer in the list of attached usb devices (even when the printer is printing!). Apart from root hubs, the only two devices ever listed with lsusb are my mouse and scanner.

View 2 Replies View Related

General :: Parallel Port Communication With RHEL6 Not Working?

Dec 13, 2010

I was trying out the parallel port communication on RHEL 6 but found it not working:
#echo hello > /dev/parport0
write error :Invalid argument".
#ll > "/dev/lp0"
/dev/lp0:No such device or address

View 2 Replies View Related

General :: Serial And Parallel Data Communication On Fedora 13

Apr 22, 2010

I have been trying out serial and parallel data communication on Fedora 13 Beta. I can easily see the list of serial ports through:

Code:
setserial -g /dev/ttyS[0-3]
And can also write some data through:
Code:
ll > /dev/ttyS0
But I am unable to see parallel ports
I can see something like:
Code:
/dev/parport0
But when I try out:
ll > /dev/parport0
It throws error.

View 3 Replies View Related

General :: Application Called Impact - Paths In Java Application ?

Apr 14, 2010

So, I have this application called Impact, it is an explicit time integration Finite Elements code written in Java...

[url]

I untar the pack, and launch the application calling a script, from within the untarred folder,

Code:

This launches a gui which allows me to setup a case, which needs some setup file, tipically some *.in and a mesh file, tipically some *.msh.

Other mode of executuion consists of calling the setup file as argument to Impact.sh script ( CLI execution mode, for g33k5 )

My problem is : I have packed the whole stuff into a Slackware .tgz, that places it in /usr/local/Impact, and placed a calling script in /usr/local/bin,

Code:

Code:

I decided to hack the ImpactGUI_OGL_linux_amd64.sh script from

Code:

Code:

no avail,

Code:

even after adding /usr/local/Impact/bin to PATH... won't go...

I can run this thing from within its directory... but I do not like messing within the directories of my applications, this is why I sent this to /usr/local, and placed a calling script in /usr/local/bin...

View 4 Replies View Related

General :: Automating GUI For Certain Task?

Jul 29, 2010

For a certain task, everytime I have to open 10 bash terminals and write different commands on them. Any way to automate this? I am running Fedora linux.

View 2 Replies View Related

General :: No Task Bar In My Centos 5.6 Gnome

Apr 16, 2011

I upgraded my Centos 5.5 to 5.6 and now my task bar is missing even the time is not visibal. What could have gone wrong?

View 3 Replies View Related

General :: How To Schedule For A Repeated Task

May 2, 2010

I need to schedule for a repeated task on my Linux, as the followings:

-) Telnet to a remote node
-) Issue a command
-) Capture the output in a log
-) Logout from Telnet
-) Wait for a prescribed time interval
-) Then redo , but append the subsequent output in just on file

know which options do we have to write such a task?

View 7 Replies View Related

General :: Freeze The Clock For A Specific Task?

Dec 27, 2010

For example,

# clock-pause
# touch a
# touch b
# convert -draw `date` text_draw.gif
# clock-resume

Or, simply

# freeze-exec sh -c 'touch a; touch b; convert -draw `date` text_draw.gif'

The expected result is the timestamps of a and b, and the text drawn to the image, are exactly the same.

View 3 Replies View Related

General :: Find What Task Is Running On A Particular Cpu Core?

Sep 17, 2010

I am using Kernel 2.6.35.4 on an Intel Core2Duo based system.

1) I have to find on which core a particular task is running on .
OR
2) I have to just log whenever my task is scheduled on any of the cores with the cpu core number & timestamp info. I am ready to modify the kernel to do printk or some logging . I guess there used to be 2 fields called 'processor' and 'last_processor' in task_struct in older kernels which probably had this information .

So what do I do to find out on which core a particular task is running on ?

Or ,

Are there any utilities that are simple-to-use and can display the tasks that are running on each of the cores , including the cpu core info ? top , mpstat etc do not tell you on which cpu core a task is running on .

View 2 Replies View Related

General :: To Spawn A Task That Runs For Hours?

Nov 2, 2010

I have been doing this for quite sometime now, yet lately I wonder if this is what everybody does...I have a task that will run for hours. In order to not to interrupt that task when I logoff for the day, I issued the command:

Code:
at now 'sh ~/a-long-task'
Is this what everybody else does?

View 2 Replies View Related

General :: Enter Task In Sleep Mode?

Jun 26, 2010

How would i place a task in sleep mode then restart it?

View 1 Replies View Related

General :: Pull Up The Task Manager And Hit Ctrl+Alt+Esc

Mar 25, 2011

I was trying to pull up the task manager and hit Ctrl+Alt+Esc.

A white X came up, and now my desktop is a big black screen. How do I revert back??

View 4 Replies View Related

General :: Lost Task Bar In Linux Light

Oct 26, 2009

just to make it easier i am a complete linux newbie i have an aspire one running linux lite the task bar does not show on my screen ,i am not sure how to bring it back.i have tried to use the alt+f2 but this does not bring up anything

View 1 Replies View Related

General :: Missing Menu And Task Bar In Mint.

Jan 22, 2011

I am in the process of learning Mint, but need help with a missing Menu and task bar. I have obviously deleted something, but have no idea what.Terminal is a problem, as it does not appear correctly but enlarged and incomplete.I do have a dock, with a number of icons and an application icon.

View 2 Replies View Related

General :: My Computer And Task Bar Missing In Suse 11.2

Nov 13, 2009

i have missing icons for the computer icon and mozilla icon and the start menu and and task bar are gone as well. i tried running the kicker and plasma command but will not execute type the command after pressing alt + f2. im running kde 4.3.

View 4 Replies View Related

General :: My Ubuntu 10.04 Restarts As Perform A Certain Task

Aug 24, 2010

Am have a little problem with my ubuntu 10.04 which restarts as i do some task for example..as i am copying...playing music..and any operation task.

View 1 Replies View Related

General :: Accessing Windows Partition And Task Manager

Sep 21, 2010

1.) I have several versions of ubuntu installed on my computer. Technically, all but one are incomplete installs which I would like to delete if possible?

2.) I would like to access my files from the Windows partition, but it doesn't show up under "system." Is it for some reason impossible to access Windows files?

3.) My computer's performance has dipped substantially in the last two days. I am trying to figure out why this is, if there is a task manager or the like or a performance diagnosis tool. Also, my computer does not have an anti-virus program, that might also be the cause of the poor system performance.

View 6 Replies View Related

General :: Display Stretched With No Task Bars Showing

May 21, 2011

i have a hp laptop with a cracked screen so i'm using and external monitor. It is an HP vs15c. Now it was working fine.. perfect even.. until i was working on a second virus infect pc in bed with the keyboard connection to this pc next to me. What happened next is a bit embarrassing and also why i have no idea what i did or how to fix it. Well i found the virus in the laptop i was repairing (god i hate vista.) when i wiggled in excitement .. only the keyboard slide under my breast and the next thing i know my screen looks stretched and i have no bars. i can move my mouse beyond the right and the bottom edges of the screen and i can't change anything cause i can't get any option.. or least i don't know how to get them without the bars.. i can't even reboot if i wanted to cause my task bar is GONE. the bottom active bar is there.. off screen where i can see it but if i drag my mouse down far enough it is there to click on things. However the top bar that i need is gone. I am NOT good with terminal.. nor do i know how to open it without the top task bar. Right now i'm cursing a storm and being very angry about being a woman.

View 14 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved