make menuconfig
Usually the compilation is done using the "make" command if the developer hasn't created a .sh file that includes the "make" inside of it.
And most of the times "make install" is the command you can see for installing the compiled program on the system. This could differ from program to program, developer to developer, language to language.
However, if you get a Makefile, it definitely uses the "make" command and if you use "cat Makefile" you may be able to get an idea on how to use "make" commands for compilation and installation.
After installation, the program could be run just by typing the program name on the terminal.
The ls command doesn't show everything in directory what's wrong?
Nothing. By default, ls will not show configuration files or directories that begin with a . These can be displayed by passing the -a parameter to ls. Ex. ls -a
What is the command to switch between the CUI mode to GUI mode and vice versa?
A GUI is typically not operated using text commands, so your question makes little sense. To start the "GUI" on most Unix and Linux systems, you need to launch the X server. Most systems include a simple script, "startx", that will do everything automatically for you. You can also launch the name of the display manager, such as KDM or GDM, manually. When you start the GUI, you are, of course, expected to actually use a GUI, not the command line. Most interfaces will provide some sort of button or link for you to click and shut down the system or exit to the command prompt.
What is the most graceful way to get to run level single user mode?
The most graceful way is to use the command:
init s
If you want to shut everything down before going to single user mode then do init 0 first and from the ok prompt do a boot -s.
In Linux What user ID is associated with a new user?
It depends on system to system. Basically you can find that out by looking at the file "/etc/passwd"
You can filter out the username you want to check using "cat /etc/passwd | grep username"
Can you hack your goldfish with Linux?
yes you can.
first you must buy this hardware, set the cup over the selected goldfish and "voila"
Blue Swirl/Gold Fish Teacup $16.99 Teavana
What command can be used to start a program with a lower scheduling priority?
Use the nice command.
For some reason i do not know, "niceness" is measured backwards from -20 (very high), to 19 (very low).
To use it just do:
/bin/nice -n
This is for LINUX systems only, I think. I am not responsible for what it might or might not do on Windows, Mac OS X or anything else!
What is the yum meanning in red hat?
yum means - YELLOWDOG UPDATER MODIFIER.
It is a software package manager that install, removes and update packages on RPM based system.
the advantage of using yum is - During installation of Packages, it also installs the dependent packages needed with them.
Other are :-
Write a shell script to check whether the given input is prime or not?
echo "input any number:"
read no
no=`expr $no`
i=`expr 2`
while [ $i -lt $no ]
do
if [ `expr $no % $i` -eq 0];
then
echo "$no is not a prime no.."
break 2
fi
i=`expr $i +1`
done
if [ $i -eq $no ];
then
echo "$no is a PRIME no..."
fi
-20
Which Linux command can be used to create and reset password for a user?
$ passwd to change your own password:
Log in as root to change the password for a user named fred:
# passwd fred
Commands to add a new user and then set a password for a user named fred:
# adduser fred
# passwd fred
What is multimedia used for in Linux?
Multimedia has the same purpose in Linux as it does in Windows or Mac OS X. Multimedia is commonly used for entertainment, but also for educational / instructional purposes.
What are the advantages and disadvantages of Xenix?
There are no advantages or disadvantages to Xenix, since it has no practical application for use in today's world. Like CP/M or System 1 on the Macintosh, Xenix cannot even be compared properly to modern systems.
What should you consider before developing a public presentation?
Who is the audience?What does the audience want to know?What is the best way to provide the audience with the information they want?
How will systems receive IP addresses on Linux?
The same as any other platform - dynamic assignment via DHCP, or statically assigned.
Where do you execute command on Linux?
From the terminal
to access the terminal go to system tools or type terminal in the search field.