answersLogoWhite

0

What else can I help you with?

Related Questions

What is the command used to check the pid of all the processes current running in Linux environment?

Type top in a terminal to display Linux processes, which includes PID.


How you will create process in Linux?

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.


How does an ISO image relate to a Linux installation?

It doesn't. ISO is a disk image format that is often used to distribute Linux and other CD images.


Running processes on a Linux system can be reported using which command?

ps aux


What two commands will display the status of processes on a Linux system?

ps top


Where can you find LiveCDs of previous versions of Linux?

Many distributions have older disk images in their archives. Try there.


How do you install Linux Mint 14.1 MATA?

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.


What is the default nice value for processes in Linux?

It's 0, but some of kernel processes run with nice from -2 to -4, sometimes even higher.


What does the ulimit parameter do in Linux?

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.


What are the PS and pstree commands in Linux?

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.


What are the similarities and differences between the way in which Windows and Linux manage processes?

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.


How do you make a Linux boot disk?

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.