How do you display processes in Linux?
There are several commands that can be used to display running processes in Linux:
top - probably the best choice in most situations
PS - very basic. list may be too long on modern systems.
ksysguard - graphical. Found in most KDE desktops.
gnome-system-monitor - graphical. Found in most GNOME desktops.
Which is the Linux kernel image file from the following and what is location in the file system?
The kernel image is the file in /boot that has a name like "vmlinuz" in it.
What is the command to find all of the files which have been accessed within the last 30 days?
find / -type f -atime -30 > December.files
This command will find all the files under root, which is '/', with file type is file. '-atime -30′ will give all the files accessed less than 30 days ago. And the output will put into a file call December.files.
Is there a portable version of Wine?
No. As a general rule, there are no "portable apps" for Linux. Firstly because it is a potential security risk to allow untrusted binaries to be run on a system, thus a competent system administrator will not allow a public Linux computer to run binaries outside a trusted /bin or /usr/bin directory. Secondly, there are simply not that many public Linux computers, so the relative utility of a portable version would be gone anyway.
What are the system requirements for Mandriva?
The system requirements for Mandriva as of the 2010.2 release are:
How do you uninstall Microsoft Office 2003 in Linux with Wine?
You can either run the uninstall program, or you can just delete the folder that it is installed in. Windows programs are placed in /home/yourusername/.wine/drive_c/Program\ Files
Why Linux script does not support comparison using less than or greater than symbols?
The "greater than / less than" symbols, < and >, are used to redirect the output of a command or action somewhere else. For instance
echo "hello" > test
would create a file named test with the word helloin it, rather than simply displaying hello on the console.
Why does XP not run natively on the PS3 while Linux does?
Because the source code for Windows XP is not publicly available, and thus only Microsoft can make the changes necessary to make it work. Microsoft has not deemed this worthwhile, for many reasons, and thus will not make a version that will run.
Use of 'kill'command in Linux?
The 'kill' command sends a signal to a given process. By default without any options it will send the TERM (terminate) signal. Other options may include the KILL signal which forcbly terminates a process without waiting. As far as USR1 and USR2 signals it depends on the kind of application that is in said process.
What is the difference between VxWorks and Linux?
The Bourne Again Shell (bash) was originally written by Brian Fox. It is maintained as part of the GNU project and has several developers, now led by Chet Ramey.
What is the output of ls wc -l command?
wc -l filename It will return no of lines in the provided file. wc stands for word count.
What does the error message 'The directory or file cannot be created' mean?
You may not have the rights to the Directory. ie. Administrator rights some kind people suggested I do a format, bingo, it worked, many thanks, Ron Palmer
Does the Linux operating system offer cloud computing?
The Linux operating system can operate with cloud if you have amazon services. It is not necessarily based on the type of computing system you use at this moment.
How many different commands are there for Linux?
Innumerable. Remember that any program on Linux can be launched from the command line, so there are as many commands as there are programs.
What character is used to delimit most configuration files in Linux?
According to the Linux+ Guide to Linux Certification 2nd ed., most configuration files on Linux systems are delimited using the colon symbol (:) while the awk command uses spaces or tabs as delimiters for each field in a line.
SudoKing, please note that the hash symbol (#) allows the commenting of lines, not the delimiting of lines. This is not to be confused with a hashpling (such as #!/bin/bash) which is located on the first line in a shell script, and specifies the pathname to the shell that interprets the contents of the shell script.
using chmod you can give users certain privileges.
Following are the symbolic representation of three different roles:
Following are the symbolic representation of three different permissions:
ex command: chmod u+x filename
ex command2: chmod u+r,g+x filename
How find boottime of os in Linux?
grab a stopwatch and boot the system up while timing it until it gets to login
Which is better to learn Linux or Unix?
Linux is far more common these days than traditional Unix. But as any old system administrator will tell you, learn to learn, don't learn the system. There are numerous differences between the different Linux distros, differences between Linux and Unix, and differences between each of the Unices. Learning everything about each system is a daunting task, and probably near impossible. Rather than, say, learning all of the different command line switches for "ls" on each system, just know how to access a man page.
How do I set up file sharing between windows 7 and Linux mint 16?
You can set up file sharing between windows 7 and Linux mint 16 by simply installing the Ext2 Installable File System on windows which allow windows to read and write into the Linux file system.