Interactive task scheduling (system) ? How do I run a list of tasks consecutively on a server ?

2022-01-21 Thread linux guy
Hi people. I'm using a server to run a bunch of simulations. By bunch I mean hundreds. Each simulation takes from 10 minutes to 10 hours to run. All of the simulations are run from the command line. Every day I generate more simulation cases. I'm looking for a method/system/app that I can giv

Re: ocatve

2022-01-21 Thread linux guy
On Thu, Jan 20, 2022 at 5:01 AM Patrick Dupre wrote: > Hello, > > When I run octave with > > pkg load symbolic > and > syms x > I > get > Symbolic pkg v2.9.0: Traceback (most recent call last): > File "", line 28, in > AttributeError: '_PrintFunction' object has no attribute '__globals__' > Tr

Re: Interactive task scheduling (system) ? How do I run a list of tasks consecutively on a server ?

2022-01-21 Thread Roger Heflin
In the past I have used this one: one called Torque that is in the repo. It has a client piece and a server piece. You would have to define the queue such that it would only run a single job at a time and then submit them in order. On Fri, Jan 21, 2022 at 11:40 AM linux guy wrote: > > Hi peopl

Re: Interactive task scheduling (system) ? How do I run a list of tasks consecutively on a server ?

2022-01-21 Thread Jonathan Billings
On Jan 21, 2022, at 13:08, Roger Heflin wrote: > > In the past I have used this one: > one called Torque that is in the repo. It has a client piece and a > server piece. You would have to define the queue such that it would > only run a single job at a time and then submit them in order. Torq

Re: Interactive task scheduling (system) ? How do I run a list of tasks consecutively on a server ?

2022-01-21 Thread linux guy
Thanks for the replies, I'll look into the mentioned packages. I have never heard of Torque. ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs

Re: ocatve

2022-01-21 Thread Patrick Dupre
Hello,   My understanding is that sympy is part of the python package python3-sympy-1.8-1.fc34 python3-3.9.9-2.fc34.x86_64 octave-6:5.2.0-12.fc34.x86_64   python -V Python 3.9.9 octave -V GNU Octave, version 5.2.0   I never used mathlab   It seems that I may have to do pip3 install s

Re: Interactive task scheduling (system) ? How do I run a list of tasks consecutively on a server ?

2022-01-21 Thread linux guy
Is there anything simpler than Torque ? ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an email to users-le...@lists.fedoraproject.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List

python3dist(sphinx-math-dollar)

2022-01-21 Thread Patrick Dupre
Hello, How can I get python3dist(sphinx-math-dollar) python3dist(wurlitzer) ? Thanks === Patrick DUPRÉ | | email: pdu...@gmx.com Laboratoire interdisciplinaire Carnot de Bo

Re: Interactive task scheduling (system) ? How do I run a list of tasks consecutively on a server ?

2022-01-21 Thread Cameron Simpson
On 21Jan2022 10:39, linux guy wrote: >I'm using a server to run a bunch of simulations. By bunch I mean >hundreds. Each simulation takes from 10 minutes to 10 hours to run. All >of the simulations are run from the command line. Every day I generate >more simulation cases. > >I'm looking for a

Re: Interactive task scheduling (system) ? How do I run a list of tasks consecutively on a server ?

2022-01-21 Thread linux guy
Thought: I'll write a simple one in nodejs and make the user interface a webpage. That way I can log into the webpage from anywhere and check on the status of my simulations as well as add and delete them. I'm not running a cluster. Just my little ole server. Thoughts ? __

Re: Interactive task scheduling (system) ? How do I run a list of tasks consecutively on a server ?

2022-01-21 Thread linux guy
On Fri, Jan 21, 2022 at 12:19 PM Cameron Simpson wrote: > If you can define a task in a single line of text I can define my tasks in a single command line. > you could run > something like this on the server: > > tail -f task_list.txt | while read -r spec; do run the task from > $spec; do

Re: bash line feeds in a variable problem

2022-01-21 Thread ToddAndMargo via users
On 1/20/22 13:42, Cameron Simpson wrote: On 19Jan2022 20:32, ToddAndMargo wrote: into a variable X=$(curl -s ipinfo.io -o -) That is robust (well, it loses trailing whitespace). But I lose all my line feeds when I echo -e $X How do I get my line feeds back? Quotes. echo -e

Re: ocatve

2022-01-21 Thread linux guy
Yes, use pip (or pip3) to install sympy It should install the dependencies too. Don't use the dnf packages for what you want to do. I know it is confusing. I am NOT a Python or pip expert. But I've run into similar errors and have always tracked it down to something not being installed proper

Re: Interactive task scheduling (system) ? How do I run a list of tasks consecutively on a server ?

2022-01-21 Thread James Szinger
On Fri, 21 Jan 2022 11:31:25 -0700 linux guy wrote: > Is there anything simpler than Torque ? There is the standard UNIX batch command. It is about as simple as can be. Certainly much simpler than the VMS and MVS batch systems back in the day. There also seem to be several Node.JS batch que

Re: Interactive task scheduling (system) ? How do I run a list of tasks consecutively on a server ?

2022-01-21 Thread George N. White III
On Fri, 21 Jan 2022 at 13:40, linux guy wrote: > Hi people. > > I'm using a server to run a bunch of simulations. By bunch I mean > hundreds. Each simulation takes from 10 minutes to 10 hours to run. All > of the simulations are run from the command line. Every day I generate > more simulatio

Re: Interactive task scheduling (system) ? How do I run a list of tasks consecutively on a server ?

2022-01-21 Thread Tom Horsley
This is a simple shell script I wrote a long time ago which is invoked by a CGI script on a local web page and notices files that show up in a queue directory. #!/bin/bash # This script is started by the setuid program start-queue so that the # CGI script which makes queue entries can have the qu

Replacement for Armitage?

2022-01-21 Thread ToddAndMargo via users
Hi All, Anyone know of a replacement for Armitage? https://www.offensive-security.com/metasploit-unleashed/armitage/ Many thanks, -T -- ~~ Computers are like air conditioners. They malfunction when you open windows ~~ ___