rjsNetworks.com - make your data fly...

February 05, 2004

Linux - Virtual Dedicated Hosting

rjsNetworks is currently working on bringin relativly inexpensive virtual dedicated linux hosting to its new product catalog. With Linux quickly becoming an industry and enterprise application standard, virtual dedicated hosting allows each account to access a virtual kernel; allowing full root and application access. Stay tuned for more information and products using Linux.

Posted by jagga at 07:16 PM | Comments (784) | TrackBack

February 01, 2004

Running Background Processes wih Linux

We often get asked several questions about processes and the linux OS. To run a process in the background just add the apersand to the command line. For example:

$ gcc invinitjig.c &
[1] 21457

The above command will run in the background; the gcc complier will compile the c file in a background thread.

Posted by jagga at 11:26 PM | Comments (1087) | TrackBack