The fork() system call in Unix/Linux creates a new process by duplicating the existing process. The new process (child process) is an identical copy of the parent process except for the process ID and parent process ID. Both processes continue execution from the point of the fork() call. This is fundamental to Unix process creation.