File management tool used in Fedora Core 4?
On the regular spin, Nautilus. On the KDE, Dolphin. It all depends on the DE.
What is an issuance of process?
A process is a legal notice. The issuance of processes is a function of the District Clerk in supporting the court system. The processes issued by the Clerk constitute the written instructions of the court.
Can we install rt Linux on Fedora?
RT Linux is a specific distribution of Linux, as is Fedora. You can install RT Linux over Fedora, but RT Linux isn't a program you install in a Fedora installation, but an entirely different installation altogether (and meant for different things; RT Linux is meant for specialty devices where the machine needs to manage devices and calculations in Real-time whereas Fedora is more a desktop/server distribution.)
How can you invert the Fedora desktop colors?
How do i run a disc from command line in fedora?
First you have to mount it using the mount command.
You should google "mounting filesystems" to read more about this.
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.
How do you install a Canon iR2018n printer in Fedora 11?
This printer is supported by the pxlmono driver. Use the CUPS web interface on your computer to install the printer by clicking the link below. Note that this printer is not currently supported for color printing.
Which command-line command will start performance monitor?
To start the System Monitor from the terminal or run window, you can type "gnome-system-monitor" (without quotation marks, of course).
Which Fedora 13 top panel menu provides options for configuring the system and desktop environment?
System Menu
What is the developmental trend of Linux?
Linux in itself, that is, the core OS is being developed with more stability, security and support for devices and software in mind.
Nevertheless, the Linux distributions (or distros) are modeled Linux kernels to fit specific needs and they each have a different trend. They all use the Linux kernel in the core, but the uses and abilities can vary greatly.
Check out the different distros and choose one you like. If you are disappointed or don't like it, don't worry, choose another flavor and download, theyre all mostly free.
check out www.distrowatch.com
What does the kudzu utility do in Linux?
takes care of many hardware changes.
If i install Linux on PC1, and then put the disk onto PC2, Kudzu will actually note the different vireo, network, audio, etc card, ask you if it should remove the "old" software, and install the "correct" software. I move a disk from a rather old machine, to a new one. Kudzo noticed the difference, and mad the corrections. I mist admit, I was impressed, and amazed.
What are the three main tools for configuring a CUPS printer on fedora?
system-config-printer, CUPS web interface, and lpadmin.
Source(s):A Practical Guide to Fedora and Red Hat Enterprise Linux written by Mark G. SobellDemonLord
How do you install OpenSSL in Fedora?
yum install openssl
cd /etc/pki/CA
touch index.txt
echo '01' > serial
echo '01' > crlnumber
cp /etc/pki/tls/openssl.cnf openssl.cnf
from: dir = ../../CA # Where everything is kept
to: dir = . # Where everything is kept
from: certificate = $dir/cacert.pem # The CA certificate
to: certificate = $dir/certs/ca.crt # The CA certificate
from: private_key = $dir/private/cakey.pem # The private key
to: private_key = $dir/private/ca.key # The private key
chmod 600 openssl.cnf
Which commands con you use to determine who is logged on?
There are several commands depending on how much detail you want, and whether or not a certain package is installed on the system.
The command 'who', 'w', 'users' will give varying degrees of information on who is logged in.
The 'finger' command will also give some information but only if the finger software is installed.
How do you backup a file in Fedora Core 4 without using an actual backup program?
cp -a fromfile(s) /todir/
How do you configure Samba with Fedora 7?
Quick and Dirty
1. Read the Manual/Documentation.
2. Search www.Google.com/Linux/
3. Create a backup copy of smb.conf
# CD /etc/samba
# cp smb.conf smb.conf.bak
4. Read/Edit the Samba configuration file.
vim smb.conf
5. Start the Samba daemon.
# service smbd start
6. Check to see if everything works.
(It rarely does the first time!)
7. Troubleshoot
# CD /var/log/samba
# vim smbd.log
(look for key words like 'Failed' or 'Error')
OR
If you followed step 2 you may have found this:
http://www.reallylinux.com/docs/sambaserver.shtml
which walks you through the GUI method of setting up Samba on Fedora.
Where you could locate usb drive in Linux?
The USB drive can be located inside the "computer folder" which can be accessed under the system tab on the task bar of the fedora desktop. It shows the detected USB devices as soon as you plug it in.
What are the advantages of fedora?
Fedora is one of the Linux distributions. Its advantages include a fast boot time of less than 20 seconds, it is stable due to the available bug fixes, offers great virtualization experience, enhanced security and has many graphical tools.
What is path variable and what is its use?
The path (or PATH) variable is a shell environment variable. It describes to the shell which directories should be searched for executable files/programs. The system does not search every directory to find a program; only those directories indicated in the PATH shell environment variable. The same thing is true for Windows.
How about the process scheduling for time sharing processes in Linux?
Most UNIX based Operating systems use a "time slice" method of scheduling. A ready process will operate for it's allocated time slice, then be put on the "ready queue" and the scheduler will first attempt to find the next ready process of highest priority to execute. It may be the same process again if no other process of higher priority is ready. Ready implies that the process is not waiting for resources and is not waiting for a timer or other interrupt. When a process has run until it is no longer ready, it is put on the queue along with a list of resources or interrupts that it needs.
What is the equivalent file in Ubuntu 8.10 to Fedora's inittab?
Ubuntu uses Upstart, as does Fedora 9 and later. There is no direct equivalent to /etc/inittab, as startup scripts run asynchronously. Each script in /etc/event.d serves a similar purpose to a line on a traditional inittab.
How do you play DVDs on Fedora 10?
You can use the Totem player that is preinstalled for this.
However, you cannot play DVD's encrypted with CSS (Content Scrambling System). CSS is used by the movie studios as copy protection measure.
Any version of Linux is quite able to read and unscramble the disc, but the software (called DeCSS) typically used is an unlicensed descrambler. It could be considered an offense to obtain or use an unlicensed descrambler in countries that are parties to certain international copyright and intellectual property treaties, so you should consult with your legal counsel.
Fedora 10 does not include one for this reason, but you can obtain it from another repository such as Livna. A company called Fluendo is working on one that is expected to be certified.
What is the difference between a boot and a root partition?
/boot is where the Linux kernel images, as well as parts of the bootloader are stored. The "root" is simply the uppermost directory in a Unix/Linux file system. Any directory that is not given it's own partition will be placed as a subdirectory in the file system on the "root" partition. Assuming you gave a partition to /etc, /bin, /boot, /usr, and so on, you wouldn't need a "root" partition at all.