|
what is '1000 projects'?
'fullinterview.com' is a educational content website dedicated to finding and realizing final year projects for btech, be, mtech, mca students, here you can search, find your projects and get guidance from experts the below are the different technological projects.
visual Studio projects
.net projects,
asp projects,
c & ds projects,
c++ projects (all),
cold fusion projects,
delphi projects,
java projects,
perl projects,
php projects,
sql projects,
vc++ projects,
visual basic projects.
how it works?
well, everything on this site is submitted by the student and professional community. after you submit your project, it is being verified and approved by our administrator. after approval, other people can read/discuss it, save to favorites.
more number of projects?
here you can find morethan 1000 projects on different technologies, if u want to get more projects please visit our sister sites www.fullinterview.com & Chetanasprojects.com
Category Articles
Using the commands ps, cut, tr and kill, along with pipes, write a command that will find all sleep processes running on the system and kill them?
Added on Tue, Dec 15, 2009
ps: check process status Syntax: ps ?option Option: e: list all currently running processes (A for Linux) f: gives full listing (give ancestry for Linux) l: gives long listing u username: list processes for the user only S: sleeping O: running R: on... Read More
Difference Between Grep and Find command ?
Added on Tue, Dec 15, 2009
Find command is used to search for a file with a specific file name in a set of files. Syntax: find .-name "fileE" -print grep command is used to search pattren within a file. Syntax: grep "pattren" filename Read More
Which of the following commands is not a filter man , (b) cat , (c) pg , (d) head
Added on Tue, Dec 15, 2009
man A filter is a program which can receive a flow of data from std input, process (or filter) it and send the result to the std output. Read More
Write a command to display a file?s contents in various formats?
Added on Tue, Dec 15, 2009
$od -cbd file_name c - character, b - binary (octal), d-decimal, od=Octal Dump. Read More
What are the processes that are not bothered by the swapper? Give Reason.
Added on Wed, Dec 16, 2009
Zombie process: They do not take any up physical memory. Processes locked in memories that are updating the region of the process. Kernel swaps only the sleeping processes rather than the ?ready-to-run? processes, as they have the higher probability... Read More
Explain kill() and its possible return values.
Added on Tue, Dec 15, 2009
There are four possible results from this call: ?kill()? returns 0. This implies that a process exists with the given PID, and the system would allow you to send signals to it. It is system-dependent whether the process could be a zombie. ?kill()?... Read More
Construct pipes to execute the following jobs.
Added on Tue, Dec 15, 2009
1. Output of who should be displayed on the screen with value of total number of users who have logged in displayed at the bottom of the list. 2. Output of ls should be displayed on the screen and from this output the lines containing the word ?poem?... Read More
What is a pipe and give an example?
Added on Tue, Dec 15, 2009
A pipe is two or more commands separated by pipe char '|'. That tells the shell to arrange for the output of the preceding command to be passed as input to the following command. Example : ls -l | pr The output for a command ls is the... Read More
Is it possible to count number char, line in a file; if so, How?
Added on Tue, Dec 15, 2009
Yes, wc-stands for word count. wc -c for counting number of characters in a file. wc -l for counting lines in a file. Read More
What difference between cmp and diff commands?
Added on Tue, Dec 15, 2009
cmp - Compares two files byte by byte and displays the first mismatch diff - tells the changes to be made to make the files identical Read More
Explain the following commands.
Added on Tue, Dec 15, 2009
$ ls > file1 $ banner hi-fi > message $ cat par.3 par.4 par.5 >> report $ cat file1>file1 $ date ; who $ date ; who > logfile $ (date ; who) > logfile Read More
How to terminate a process which is running and the specialty on command kill 0?
Added on Tue, Dec 15, 2009
With the help of kill command we can terminate the process. Syntax: kill pid Kill 0 - kills all processes in your system except the login shell. Read More
What is the use of ?grep? command?
Added on Tue, Dec 15, 2009
?grep? is a pattern search command. It searches for the pattern, specified in the command line with appropriate option, in a file(s). Syntax : grep Example : grep 99mx mcafile Read More
Explain about sh?
Added on Wed, Dec 16, 2009
Sh is the command line interpreter and it is the primary user interface. This forms the programmable command line interpreter. After windows appeared it still retained the programmable characteristics. Read More
Explain about chmod options filename?
Added on Wed, Dec 16, 2009
This command allows you to change, write, read and execute permissions on your file. Changes can be done to the file system but at times you need to change permissions for the file systems. At times files should be executable for viewing the files. Read More
Explain about lpr filename?
Added on Wed, Dec 16, 2009
This command is used to print a file. If you want to change the default print you can change the printer by using the P option. For double sided print you can use lpr-Pvalkyr-d. This is very useful command in UNIX present in many packages. Read More
Brief about the command ff?
Added on Wed, Dec 16, 2009
This command finds files present anywhere on the system. This command is used to find document location where you forgot the directory in which you kept the file but you do remember about the name. This command is not restricted in finding files it... Read More
Brief about ftp hostname?
Added on Wed, Dec 16, 2009
This command lets you download information, documents, etc from a remote ftp. First it is important to configure an FTP for the process to begin. Some of the important commands relevant to the usage of FTP are as follows get, put, mget, mput, etc. If... Read More
What is the significance of the ?tee? command?
Added on Tue, Dec 15, 2009
It reads the standard input and sends it to the standard output while redirecting a copy of what it has read to the file specified by the user. Read More
Explain the steps that a shell follows while processing a command.
Added on Tue, Dec 15, 2009
After the command line is terminated by the key, the shel goes ahead with processing the command line in one or more passes. The sequence is well defined and assumes the following order. Parsing: The shell first breaks up the command line into words,... Read More
What is relative path and absolute path.
Added on Tue, Dec 15, 2009
Absolute path : Exact path from root directory. Relative path : Relative to the current path. Read More
Is ?du? a command? If so, what is its use?
Added on Tue, Dec 15, 2009
Yes, it stands for ?disk usage?. With the help of this command you can find the disk capacity and free space of the disk. Read More
How many prompts are available in a UNIX system?
Added on Tue, Dec 15, 2009
Two prompts, PS1 (Primary Prompt), PS2 (Secondary Prompt). Read More
What does the command ? $who | sort ?logfile > newfile? do?
Added on Tue, Dec 15, 2009
The input from a pipe can be combined with the input from a file . The trick is to use the special symbol ?-? (a hyphen) for those commands that recognize the hyphen as std input. In the above command the output from who becomes the std input to sort... Read More
How does the kernel differentiate device files and ordinary files?
Added on Tue, Dec 15, 2009
Kernel checks 'type' field in the file's inode structure. Read More
How to switch to a super user status to gain privileges?
Added on Tue, Dec 15, 2009
Use ?su? command. The system asks for password and when valid entry is made the user gains super user (admin) privileges. Read More
How is the command ?$cat file2 ? different from ?$cat >file2 and >> redirection operators ?
Added on Tue, Dec 15, 2009
is the output redirection operator when used it overwrites while >> operator appends into the file. Read More
What will the following command do?
Added on Tue, Dec 15, 2009
$ echo * It is similar to 'ls' command and displays all the files in the current directory. Read More
What is redirection?
Added on Tue, Dec 15, 2009
Directing the flow of data to the file or from the file for input or output. Example : ls > wc Read More
Explain about gzip filename?
Added on Wed, Dec 16, 2009
Gzip filename is used to compress the files so that those files take up less space. The size of the file actually gets reduced to half their size but they might also depend upon about the file size and nature of the file systems. Files using gzip... Read More
Explain about lprm job number?
Added on Wed, Dec 16, 2009
This command is used to remove documents from the printer queue. The job number or the queue number can be found by using lpq. Printer name should be specified but this is not necessary if you want to use your default printer. Read More
Explain about the command elm?
Added on Wed, Dec 16, 2009
This command lets you to send email message from your system. This command is not the only one which sends email there are lots of other messenger systems which can facilitate the process of sending a mail. This command behaves differently on... Read More
Brief about the command kill PID?
Added on Wed, Dec 16, 2009
This command ends the process to which it was assigned (ID). This command cannot be used in multi systems in the network. ID can be obtained by the command ps. This command ignores completely the state at which the process is it kills the process. Read More
Brief about the command nn?
Added on Wed, Dec 16, 2009
This command allows you to read the news. First you can read about the local news and then the remote news. "nnl? command makes or allows you to read local news and nnr command is used to read remote news. Manual and help information is available... Read More
What is the difference between cat and more command?
Added on Tue, Dec 15, 2009
Cat displays file contents. If the file is large the contents scroll off the screen before we view it. So command 'more' is like a pager which displays the contents page by page. Read More
Is it possible to create new a file system in UNIX?
Added on Tue, Dec 15, 2009
Yes, ?mkfs? is used to create a new file system. Read More
What is the use of the command "ls -x chapter[1-5]"
Added on Tue, Dec 15, 2009
ls stands for list; so it displays the list of the files that starts with 'chapter' with suffix '1' to '5', chapter1, chapter2, and so on. Read More
State and explain about features of UNIX?
Added on Tue, Dec 15, 2009
UNIX operating system originally was developed in 1969. This is an open source operating system developed by AT&T. It is widely used in work stations and servers. It is designed to be multi tasking, multi user and portable. UNIX has many several... Read More
Brief about finger username?
Added on Wed, Dec 16, 2009
This command is used to give information about the user; it gives out a profile about the user. This command is very useful for administrators as it gives the log information, email, current log information, etc. finger also displays information... Read More
What are shell variables?
Added on Tue, Dec 15, 2009
Shell variables are special variables, a name-value pair created and maintained by the shell. Example: PATH, HOME, MAIL and TERM Read More
Name the data structure used to maintain file identification?
Added on Tue, Dec 15, 2009
?inode?, each file has a separate inode and a unique inode number. Read More
Explain about refer?
Added on Tue, Dec 15, 2009
Refer was written in Bell Laboratories and it is implemented as a troff preprocessor. This program is used managing bibliographic references and it is used to cite them in troff documents. It is offered in most of the UNIX packages. It refers with... Read More
Explain about document formatting?
Added on Wed, Dec 16, 2009
UNIX systems were primarily used for typesetting systems and document formatting. Modern UNIX systems used packages such as Tex and Ghostscript. It uses some of the programs such as nroff, tbl, troff, refer, eqn and pic.Document formatting is very... Read More
Explain about system and user utilities?
Added on Wed, Dec 16, 2009
There are two utilities they are system and user utilities. System utilities contain administrative tools such as mkfs, fsck, etc. Where as user utilities contain features such as passwd, kill, etc. It basically contains environment values. Read More
Explain about the command lynx?
Added on Wed, Dec 16, 2009
This command helps you to browse web from an ordinary terminal. Text can be seen but not the pictures. URL can be assigned as an argument to the G command. Help section can be obtained by pressing H and Q makes the program to quit. Read More
|