Type top in a terminal to display Linux processes, which includes PID.
A user doesn't directly create processes themselves, instead processes are created anytime a program is run. So, short, but not entirely accurate answer: Do ANYTHING on Linux and you'll cause processes to be created and destroyed.
It doesn't. ISO is a disk image format that is often used to distribute Linux and other CD images.
ps aux
ps top
Many distributions have older disk images in their archives. Try there.
Download the ISO images from Linux Mint's website, and burn it to a DVD or a flash drive and boot from it. Once it boots in a live session, on the desktop there is a icon named "Install Linux Mint" and click on it. Then follow the instructions and you'll be on your way to install Linux Mint.
It's 0, but some of kernel processes run with nice from -2 to -4, sometimes even higher.
The ulimit parameter in Linux is set so the user can only use a set number of processes which is authorised by the server. The ulimit parameter can be changed accordingly if needed.
PS (see "man 1 PS") in Linux is a program that generally comes with the operating system that allows you to see information about the running processes. pstree is a program that lets you see the processes as a tree, to see which process started which other process, for example.
Linux allows full access to the source code. Windows does not. The command line has always proven useful when altering software. Windows differs from Linux in command line limitations as well. Linux provides a centralized location in which software and application can be controlled.
Find out the image named boot.img. It can be located at different locations on different distributions on the CD:Red Hat / Fedora Linux : /images/boot.imgDebian Linux: /install/floppy/boot.img2. Now, to write an Linux install disk, you can use dd command and type this:# dd if=/images/boot.img of=/dev/fd0 bs=1440k or#dd if=/install/floppy/boot.img of=/dev/fd0 bs=1024 conv=sync ; sync.if you are getting problem to create then you can Easily download it from its website.