0
votes
1answer
523 views

Post-installation process of PostgreSQL 8.4 in FreeBSD?

I have installed PostgreSQL 8.4 with pkg_add -r postgres84-server. I added 'postgresql_enable="YES"to/etc/rc.conf, and executed/usr/local/etc/rc.d/postgresql initdb`. And when I run psql to start, it ...
0
votes
2answers
82 views

Process in windows that does not have a console window?

I have many processes in a pipeline style application. Each time I launch the application there will be a different number and order of the processes that make up the pipeline. My intent is to start ...
4
votes
4answers
307 views

Linux process management

I started a long running background-process (dd with /dev/urandom) in my ssh console. Later I had to disconnect. When I logged in, again (this time directly, without ssh), the process still seemed to ...
2
votes
3answers
2k views

Running a scheduled task as SYSTEM with console window open

I am auto creating scheduled tasks with this line within a batch windows script: schtasks /Create /RU SYSTEM /RP SYSTEM /TN startup-task-%%i /TR %SPEEDWAY_DIR%\%TARGET_DIR%%%i\%STARTUPFILE% /SC ...