Fedora 8 Installation Guide

Total Page:16

File Type:pdf, Size:1020Kb

Fedora 8 Installation Guide my-guides.net Fedora 8 Installation Guide Contributed by axel Last Updated Sunday, 06 January 2008 Fedora 8 (Werewolf) has been released! Fedora is a community supported project and is distributed for free. It is a very good choice for developers and high tech enthousiasts using Linux in non critical environments. Red Hat Enterprise Linux ( RHEL ) is based on Fedora but it costs money. The advantange is that you can get support from Red Hat. But enough with RHEL. Just like with Fedora Core 6 and Fedora 7 I wrote this guide to help you with some common installation tasks that might be useful for you. Everything has been tested on my system and it works! Learn how to set up extra repositories, add video/dvd and audio codecs, install useful applications, configure Firefox's plugins, install compiz-fusion and much more! ** Note: If a command starts with a $ it means that it has to be executed as user, whereas if it starts with # it means it has to be executed as root. ** Note: If you are unfamiliare with linux console or if you want to learn more about Linux commands you can take a look at my Basic Linux Commands guide. ** Note: For editing text files in the following guide I use nano, a terminal based editor. You can instead use gedit if you are in Gnome or kedit if you are in KDE. Contents - Configuring sudo - Configuring yum - Basic Commands - Fedora Repositories - Livna Repository - FreshRPMs Repository - ATrpms Repository - Graphical Interface ( yumex ) - yum through proxy - yum plugins http://www.my-guides.net/en Powered by Joomla! Generated: 10 January, 2008, 10:38 my-guides.net - Configuring Services - Installing video drivers - Installing nVidia driver - Installing ati driver - Installing Microsoft fonts - Configuring Firefox - KDE Default browser - Acrobat Plugin - Flash Plugin - Mplayer Plugin - java Plugin - mms streaming play - Set backspace button - MP3 and Audio players - Rhythmbox/Gstreamer - Amarok - Audacious - XMMS http://www.my-guides.net/en Powered by Joomla! Generated: 10 January, 2008, 10:38 my-guides.net - DVD & video players - mplayer - totem - xine - vlc - video lan client - kaffeine - RealPlayer - IRC Clients - konversation - xchat - MSN Messenger Clients - kopete - pidgin - amsn - Author, Burn and BackUp CD/DVDs - gnomebaker - k3b - k9copy http://www.my-guides.net/en Powered by Joomla! Generated: 10 January, 2008, 10:38 my-guides.net - DeVeDe - Download manager - PDF Readers - kpdf - xpdf - acrobatreader - Torrent Clients - KTorrent - Bittorrent - Other Useful Applications - rar - FTP Clients - chm Reader - eMule Client - linuxdcpp - Partition Editor - Google Earth - Skype http://www.my-guides.net/en Powered by Joomla! Generated: 10 January, 2008, 10:38 my-guides.net - Accessing Windows Partitions - FAT32 - NTFS - Accessing Windows Shares - Compiz-fusion - git - unofficial repo - unofficial packages - official packages - KDE - KDE Installation - KDE Country Flags - KDE style in gtk applications - Auto Login - JAVA Installaion - OpenJDK - Sun JAVA http://www.my-guides.net/en Powered by Joomla! Generated: 10 January, 2008, 10:38 my-guides.net 1. Configuring sudo Normally if you want to run a command which requires root privileges you first have to type 'su -', type your root password and then type the command. However you can bypass this by using the 'sudo' command. But first you have to configure it like this: $ su - Password: <- Give your root password here # visudo Now go below the line: root ALL=(ALL) ALL press a, and type the following username ALL=(ALL) ALL where username is the username you use to login. Next press Escape. Now, if you want to be promted for your root password each time you use the sudo command go to this line: # %wheel ALL=(ALL) ALL and with your cursor pointing on # press x If you don't want to be promted for your root password each time you use the sudo command go to this line: # %wheel ALL=(ALL) NOPASSWD: ALL http://www.my-guides.net/en Powered by Joomla! Generated: 10 January, 2008, 10:38 my-guides.net and with your cursor pointing on # press x **Note: Using sudo without having to type your root password may expose your system since anyone that gets access to that user may as well become root. So, be careful! Next, press :wq to save and exit. (type the : as well) Finally type: # gpasswd -a username wheel To test if you have done it correctly as a simple user type: $ sudo whoami If everything is working properly the command should return the word root. **Note: For the rest of the guide I will be using the sudo command when I want to execute a command which requires root previleges. You can still use the normal su -c 'command' way. 2. Configuring yum Basic Commands - Install an application $ sudo yum install application_name - Remove an application $ sudo yum remove application_name - Install an rpm from your hard disk using yum to resolve dependencies http://www.my-guides.net/en Powered by Joomla! Generated: 10 January, 2008, 10:38 my-guides.net $ sudo yum localinstall application_name - Search for an application $ sudo yum search application_name - Find info about an application $ sudo yum info application_name - Update the whole system $ sudo yum update - Enable a repository $ sudo yum --enablerepo=repo_name - Disable a repository $ sudo yum --disablerepo=repo_name Fedora Repositories Fedora has 2 repositories named 'fedora' and 'updates'. To use them and not get errors about unsigned packages you must import their GPG keys. Open a terminal and type: $ sudo rpm --import /etc/pki/rpm-gpg/* Livna Repository In Livna repository you can find additional programs and multimedia codecs. Install it like this: $ sudo rpm -hiv http://rpm.livna.org/livna-release-8.rpm $ sudo rpm --import http://rpm.livna.org/RPM-LIVNA-GPG-KEY http://www.my-guides.net/en Powered by Joomla! Generated: 10 January, 2008, 10:38 my-guides.net FreshRPMS Repository Install it like this: $ sudo rpm -hiv http://ftp.freshrpms.net/pub/freshrpms/fedora/linux/8/freshrpms-release/freshrpms-release-1.1- 1.fc.noarch.rpm $ sudo rpm --import http://freshrpms.net/RPM-GPG-KEY-freshrpms ATrpms Repository This repository is said to provide better mythtv support among others. I can't say for sure since I don't have a card to test it. To install it type: $ sudo rpm --import http://atrpms.net/RPM-GPG-KEY.atrpms $ sudo nano /etc/yum.repos.d/atrpms.repo And paste those lines in the file atrpms.repo [atrpms] name=Fedora Core $releasever - $basearch - ATrpms baseurl=http://dl.atrpms.net/f$releasever-$basearch/atrpms/stable gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms gpgcheck=1 enabled=0** Note: From now on you should better use only one of Livna, FreshRPMs and ATrpms repositories for installing additional packages. Mixing repositories may cause your system to become unstable or even crash it! I prefer the Livna repository and I will use this for the rest of the guide. Therefore my default settings will be Livna repository enabled and freshrpms/atrpms repositories disabled. You can disable the ones you don't want like that: $ sudo nano /etc/yum.repos.d/livna.repo $ sudo nano /etc/yum.repos.d/freshrpms.repo $ sudo nano /etc/yum.repos.d/atpms.repo and change "enabled=1" to "enabled=0". Save (Ctrl+O) and exit (Ctrl+X). Graphical Interface ( yumex ) If you are not familiar with console you can use yumex. Yumex is a GUI (Graphical user Interface) for yum to simplify all the above commands. To install it type: $ sudo yum install yumex http://www.my-guides.net/en Powered by Joomla! Generated: 10 January, 2008, 10:38 my-guides.net ** Note: For the rest of the guide I'll be using yum for installing additional packages. If you prefer it you can enable/disable repos and install packages through yumex. yum through proxy If you are behind an http proxy server and you want yum to connect to the internet through that proxy open a terminal and type: $ sudo nano /etc/yum.conf Add this line in the yum configuration proxy=http://ip:port/ where ip is your proxy's ip address and port is the port the proxy listens to. Don't forget the / after the port number. Save (Ctrl+O) and exit (Ctrl+X). yum plugins - presto Presto is a project that provides faster, smaller size downloads to Fedora users. With presto plugin enabled you use deltarpm repositories to download only the part of the rpm that has change, thus saving you bandwidth and time. To enable it open a terminal and type: $ sudo yum install yum-presto deltarpm Next we have to make some changes to the .repo file to support downloading from deltarpm repositories. $ sudo nano /etc/yum.repos.d/fedora-updates.repo and change it from [updates] name=Fedora $releasever - $basearch - Updates http://www.my-guides.net/en Powered by Joomla! Generated: 10 January, 2008, 10:38 my-guides.net #baseurl=http://download.fedora.redhat.com/pub/fedora/linux/updates/$releasever/$basearch/ mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch enabled=1 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedorato [updates] name=Fedora $releasever - $basearch - Updates baseurl=http://lesloueizeh.com/f8/i386/updates
Recommended publications
  • Nero Burning
    Copyright and Trademark Information This document and all its contents herein are subject to and protected by international copyright and other intellectual property rights and are the property of Nero AG and its subsidiaries, affiliates or licensors. All rights reserved. No part of this document may be reproduced, transmitted or transcribed without the express written permission of Nero AG. All trade names and trademarks and/or service marks are the property of their respective owners. The trademarks mentioned are expressly named for information purposes only. Nero AG rejects any claims that transcend the clauses of the guarantee rights to the fullest extent. Nero AG does not undertake any liability for the correctness of the content of this document. The contents of the software supplied, as well as of this document, may be changed without prior warning. Some applications of the Nero Suites require technologies developed by third-party manufacturers. These technologies need to be activated online (free of charge) or by sending an activation fax to have unlimited use of the respective functionality. Nero will then undertake to release the data necessary to activate technologies licensed by third-party manufacturers for use with the product. It is therefore necessary to have an Internet connection or a fax machine. Unless you own the copyright or have permission from the copyright owner, you may be violating national or international copyright laws and be subject to payment of damages and other remedies, if you duplicate, reproduce, modify, or distribute copyrighted material. If you are unsure of your rights you should contact your legal advisor.
    [Show full text]
  • Adding Support for Jamendo and Magnatune to Rhythmbox on Linux
    Walking in Light with Christ - Faith, Computing, Diary Articles & tips and tricks on GNU/Linux, FreeBSD, Windows, mobile phone articles, religious related texts http://www.pc-freak.net/blog Adding support for Jamendo and Magnatune to Rhythmbox on Linux Author : admin I'm using rhythmbox to play music on my Debian Linux. Rhythmbox is a good substitute for both audacious and xmms. XMMS is already very obsolete and it often crashes because of some of it's plugins. On the other hand audacious is sometimes having problems on my notebook working with it's alsa plugin or pulseaudio especially if I play something in youtube. With audacious my songs sometimes got stucked for some weird reason. With rhythmbox I have never experienced this kind of issues. Considering the fact that I'm a GNOME user rhythmbox is even more attractive for me. During about 2 years ago I've heard about the Jamendo - community of free, legal and unlimited music published under the Creative Commons licenses. Just about 10 months ago I've also discovered magnatune which is also a radio which allows free listening online of it's whole online catalogue. That's why it was really interesting for me to have this two nice music streaming services directly into my rhythmbox. I was very happy to discover that already a plugin that embeds the Jamendo and Magnatune Support to the Rhytmbox program. To enable Rhythmbox to support Magnatune and Jamendo type in your root terminal: debian:~# apt-get install gmpc-plugins gmpc-plugins-dbg debian:~# apt-get rhythmbox-plugins It's very likely that the rhythmbox-plugins might be already installed on your Linux, anyways I put the command above just in case if for some reason it's not installed.
    [Show full text]
  • Ultumix GNU/Linux 0.0.1.7 32 Bit!
    Welcome to Ultumix GNU/Linux 0.0.1.7 32 Bit! What is Ultumix GNU/Linux 0.0.1.7? Ultumix GNU/Linux 0.0.1.7 is a full replacement for Microsoft©s Windows and Macintosh©s Mac OS for any Intel based PC. Of course we recommend you check the system requirements first to make sure your computer meets our standards. The 64 bit version of Ultumix GNU/Linux 0.0.1.7 works faster than the 32 bit version on a 64 bit PC however the 32 bit version has support for Frets On Fire and a few other 32 bit applications that won©t run on 64 bit. We have worked hard to make sure that you can justify using 64 bit without sacrificing too much compatibility. I would say that Ultumix GNU/Linux 0.0.1.7 64 bit is compatible with 99.9% of all the GNU/Linux applications out there that will work with Ultumix GNU/Linux 0.0.1.7 32 bit. Ultumix GNU/Linux 0.0.1.7 is based on Ubuntu 8.04 but includes KDE 3.5 as the default interface and has the Mac4Lin Gnome interface for Mac users. What is Different Than Windows and Mac? You see with Microsoft©s Windows OS you have to defragment your computer, use an anti-virus, and run chkdsk or a check disk manually or automatically once every 3 months in order to maintain a normal Microsoft Windows environment. With Macintosh©s Mac OS you don©t have to worry about fragmentation but you do have to worry about some viruses and you still should do a check disk on your system every once in a while or whatever is equivalent to that in Microsoft©s Windows OS.
    [Show full text]
  • JAM SE User Guide
    The Music Player Remote Control © 2006-2008 Winfried Klum V1.3 B E T A Overview JAM SE is a free mobile application for a range of Java enabled mobile phones that allows you to control your music collection from your phone, using Bluetooth. JAM SE requires a Server supporting the Bemused Protocol and a PC with a Bluetooth adapter. Browse or search your music collection on your phone, play most files supported by your music player including MP3s, CDs, etc. Control your music player. Pause, stop, rewind, forward your playlist, add songs to the playlist, use shuffle and repeat and control the volume of your player. Browse and select songs in your playlist, download songs to your phone, customize the look of your application with skins. JAM SE Installation Jam SE Server Installation The JAM SE Server Installer contains Server, Mobile Installer, and the jlGUI Music Player. There is no need to configure the setup. After installation you can deploy JAM SE to your phone using the Mobile Installer. Mobile Installer From the drop down box you can choose your phone manufacturer. If your manufacturer is not listed use the 'Other' option. IMPORTANT: If you have already installed an older version of JAM SE, please make sure that you delete the old version from your phone prior to installation. On the next wizard page you can choose your model. If you choose 'Other' you can choose a GENERIC version of JAM SE by screen size. You can choose between two deployment types. Bluetooth deployment is the easiest way to install JAM SE on your phone.
    [Show full text]
  • Free of Nero Burner for Xp
    Free of nero burner for xp Old Version of Nero for Windows XP. Website. Developer. Nero Inc. Latest Version. Nero Multimedia Suite & Nero Burning. This new version of Free Easy CD DVD Burner, always edited by This program is the free version of Nero, a popular software suite to burn your. Software version, Compatibility, Release Date, Size, Download. Nero Burning ROM , Windows XP, Windows Vista, Windows 8, Windows 7. CDBurnerXP latest version: A complete free burning solution. CDBurnerXP is a renowned program among recording applications; an excellent tool for burning Posao snimanja cd/dvd medija naj?eš?e obavlja planetarno popularni NERO. Find Nero software downloads at CNET , the most comprehensive source for safe, trusted, and spyware-free downloads on. From Nero: The industry leading burning specialist Nero Burning ROM burns, copies, rips, and protects your multimedia files from CDs, DVDs, and even. Free CD, DVD, ISO, HD-DVD and Blu-Ray burning software with multi-language interface. Everyone, even companies, can use it for free. Download free software trials or find free updates for your Nero software from Nero 12 over Nero 11 to Nero Burning ROM, Nero BackItUp or past products. Nero Burning ROM free download. Get the latest Nero Burning ROM is a fast, reliable, and user friendly CD and DVD recording program. Free 54,53 MB. It can write data on Allows Nero RSS feeds to key in personalized and customized images and text in a simple process. Free. CDBurnerXP. Our software library provides a free download of Nero Burning ROM You can run this PC program on Windows XP/Vista/7/8/ Free Download Nero 9 Free - With support for RSS feeds, this tool helps you 10,, downloads Updated: Mar 13th, Ad-supported use are not so many, as this edition only offers basic data copying and burning features.
    [Show full text]
  • The Perfect Desktop - Linux Mint 3.1 "Celena" FE
    The Perfect Desktop - Linux Mint 3.1 "Celena" FE Version 1.0 Author: Oliver Meyer <o [dot] meyer [at] projektfarm [dot] de> Last edited 10/15/2007 This document describes how to set up a Linux Mint 3.1 "full edition" desktop. The result is a fast, secure and extendable system that provides all you need for daily work and entertainment. Linux Mint 3.1 builds upon Ubuntu Feisty and is compatible to its repositories - about 22.000 packages are available. This howto is a practical guide without any warranty - it doesn't cover the theoretical backgrounds. There are many ways to set up such a system - this is the way I chose. 1 Installation 1.1 Get Linux Mint "Celena" 3.1 FE The cd-image is available at http://linuxmint.com/download.html . 1.2 Live Start/restart your computer and insert the live-cd - be sure that your bios is configured to boot from your cd/dvd drive first. If there are no special reasons to do something else, select "Start Linux Mint" in the first window to boot the live-cd. The live-cd is starting up. A few moments later you'll see the desktop. 1.3 Start The Installation Double-click on the "Install"-button on the desktop. The install wizard appears. Choose your preferred language and proceed. Select the timezone nearest to your location and proceed. Choose your keyboard layout and proceed. Select how you want to partition the disk and proceed. If you chose the manual partition in the window before, you'll see this window.
    [Show full text]
  • Development of Cloud-Based Media Player Using Microsoft Azure Services
    eISSN:2600-7920 INTI JOURNAL Vol.1, 2018 (24) Development of Cloud-Based Media Player using Microsoft Azure Services Chong Fong Kim1, Chan Yong Kai 2 and Deshinta Arrova Dewi3 1,2,3 Faculty of Information Technology and Science, INTI International University, Nilai, Negeri Sembilan, Malaysia. Corresponding Author: [email protected] Abstract Playing songs offline consumes internal storage capacity of a device. Besides, playing songs, most of the time is an individual acting as a hobby and many song listeners do not have a common platform to share their hobby with others. By putting it on the cloud, the internal storage capacity can be reduced and the chance to share the common hobby with others is available. This paper aims to present the development of a Cloud-Based Media Player (CBMP) to ease the users in managing their song files and sharing with others. The CBMP utilizes a website as the main controller and connects to the Microsoft Azure Services to host the music database. Two separate sections are created for the user to upload and download their songs as private and share sections. Accordingly, users can choose the favored section they want to access. Not only features to upload and download songs are provided, but the CMBP also provides a search function that enables users to search songs in both different to make a search process faster. Due to latency in the cloud services, the suggested song format for CMBP is.MP3 files. The .MP3 files promote better compression rate than .MP4. Besides, .MP4 has higher latency that makes users waiting longer for processing the songs.
    [Show full text]
  • The Top 10 Open Source Music Players Scores of Music Players Are Available in the Open Source World, and Each One Has Something That Is Unique
    For U & Me Overview The Top 10 Open Source Music Players Scores of music players are available in the open source world, and each one has something that is unique. Here are the top 10 music players for you to check out. verybody likes to use a music player that is hassle- Amarok free and easy to operate, besides having plenty of Amarok is a part of the KDE project and is the default music Efeatures to enhance the music experience. The open player in Kubuntu. Mark Kretschmann started this project. source community has developed many music players. This The Amarok experience can be enhanced with custom scripts article lists the features of the ten best open source music or by using scripts contributed by other developers. players, which will help you to select the player most Its first release was on June 23, 2003. Amarok has been suited to your musical tastes. The article also helps those developed in C++ using Qt (the toolkit for cross-platform who wish to explore the features and capabilities of open application development). Its tagline, ‘Rediscover your source music players. Music’, is indeed true, considering its long list of features. 98 | FEBRUARY 2014 | OPEN SOURCE FOR YoU | www.LinuxForU.com Overview For U & Me Table 1: Features at a glance iPod sync Track info Smart/ Name/ Fade/ gapless and USB Radio and Remotely Last.fm Playback and lyrics dynamic Feature playback device podcasts controlled integration resume lookup playlist support Amarok Crossfade Both Yes Both Yes Both Yes Yes (Xine), Gapless (Gstreamer) aTunes Fade only
    [Show full text]
  • The Book of Audacity
    THE BOOK OF AUDACITY Record, Edit, Mix, and Master with the Free Audio Editor by Carla Schroder San Francisco THE BOOK OF AUDACITY. Copyright © 2011 by Carla Schroder. All rights reserved. No part of this work may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying, recording, or by any information storage or retrieval system, without the prior written permission of the copyright owner and the publisher. 15 14 13 12 11 1 2 3 4 5 6 7 8 9 ISBN-10: 1-59327-270-7 ISBN-13: 978-1-59327-270-8 Publisher: William Pollock Production Editor: Serena Yang Cover and Interior Design: Octopod Studios Developmental Editor: Tyler Ortman Technical Reviewer: Alvin Goats Copyeditor: Kim Wimpsett Compositor: Serena Yang Proofreader: Paula L. Fleming Indexer: Nancy Guenther For information on book distributors or translations, please contact No Starch Press, Inc. directly: No Starch Press, Inc. 38 Ringold Street, San Francisco, CA 94103 phone: 415.863.9900; fax: 415.863.9950; [email protected]; www.nostarch.com Library of Congress Cataloging-in-Publication Data Schroder, Carla. The book of Audacity : record, edit, mix, and master with the free audio editor / by Carla Schroder. p. cm. Includes bibliographical references. ISBN-13: 978-1-59327-270-8 ISBN-10: 1-59327-270-7 1. Audacity (Computer file) 2. Digital audio editors. I. Title. ML74.4.A84S37 2010 781.3’4536-dc22 2010037594 No Starch Press and the No Starch Press logo are registered trademarks of No Starch Press, Inc. Other product and company names mentioned herein may be the trademarks of their respective owners.
    [Show full text]
  • MPLAYER-10 Mplayer-1.0Pre7-Copyright
    MPLAYER-10 MPlayer-1.0pre7-Copyright MPlayer was originally written by Árpád Gereöffy and has been extended and worked on by many more since then, see the AUTHORS file for an (incomplete) list. You are free to use it under the terms of the GNU General Public License, as described in the LICENSE file. MPlayer as a whole is copyrighted by the MPlayer team. Individual copyright notices can be found in the file headers. Furthermore, MPlayer includes code from several external sources: Name: FFmpeg Version: CVS snapshot Homepage: http://www.ffmpeg.org Directory: libavcodec, libavformat License: GNU Lesser General Public License, some parts GNU General Public License, GNU General Public License when combined Name: FAAD2 Version: 2.1 beta (20040712 CVS snapshot) + portability patches Homepage: http://www.audiocoding.com Directory: libfaad2 License: GNU General Public License Name: GSM 06.10 library Version: patchlevel 10 Homepage: http://kbs.cs.tu-berlin.de/~jutta/toast.html Directory: libmpcodecs/native/ License: permissive, see libmpcodecs/native/xa_gsm.c Name: liba52 Version: 0.7.1b + patches Homepage: http://liba52.sourceforge.net/ Directory: liba52 License: GNU General Public License Name: libdvdcss Version: 1.2.8 + patches Homepage: http://developers.videolan.org/libdvdcss/ Directory: libmpdvdkit2 License: GNU General Public License Name: libdvdread Version: 0.9.3 + patches Homepage: http://www.dtek.chalmers.se/groups/dvd/development.shtml Directory: libmpdvdkit2 License: GNU General Public License Name: libmpeg2 Version: 0.4.0b + patches
    [Show full text]
  • Fedora Core Works--Without the Fluff That Bogs Down Other Books and Help/How-To Web Sites
    Fedora Linux By Chris Tyler ............................................... Publisher: O'Reilly Pub Date: October 01, 2006 ISBN-10: 0-596-52682-2 ISBN-13: 978-0-596-52682-5 Pages: 504 Table of Contents | Index "Neither a "Starting Linux" book nor a dry reference manual, this book has a lot to offer to those coming to Fedora from other operating systems or distros." -- Behdad Esfahbod, Fedora developer This book will get you up to speed quickly on Fedora Linux, a securely-designed Linux distribution that includes a massive selection of free software packages. Fedora is hardened out-of-the-box, it's easy to install, and extensively customizable - and this book shows you how to make Fedora work for you. Fedora Linux: A Complete Guide to Red Hat's Community Distribution will take you deep into essential Fedora tasks and activities by presenting them in easy-to-learn modules. From installation and configuration through advanced topics such as administration, security, and virtualization, this book captures the important details of how Fedora Core works--without the fluff that bogs down other books and help/how-to web sites. Instead, you can learn from a concise task-based approach to using Fedora as both a desktop and server operating system. In this book, you'll learn how to: Install Fedora and perform basic administrative tasks Configure the KDE and GNOME desktops Get power management working on your notebook computer and hop on a wired or wireless network Find, install, and update any of the thousands of packages available for Fedora Perform backups, increase reliability with RAID, and manage your disks with logical volumes Set up a server with file sharing, DNS, DHCP, email, a Web server, and more Work with Fedora's security features including SELinux, PAM, and Access Control Lists (ACLs) Whether you are running the stable version of Fedora Core or bleeding-edge Rawhide releases, this book has something for every level of user.
    [Show full text]
  • Linux: Come E Perchх
    ÄÒÙÜ Ô ©2007 mcz 12 luglio 2008 ½º I 1. Indice II ½º Á ¾º ¿º ÈÖÞÓÒ ½ º È ÄÒÙÜ ¿ º ÔÔÖÓÓÒÑÒØÓ º ÖÒÞ ×Ó×ØÒÞÐ ÏÒÓÛ× ¾½ º ÄÒÙÜ ÕÙÐ ×ØÖÙÞÓÒ ¾ º ÄÒÙÜ ÀÖÛÖ ×ÙÔÔ ÓÖØØÓ ¾ º È Ð ÖÒÞ ØÖ ÖÓ ÓØ Ù×Ö ¿½ ½¼º ÄÒÙÜ × Ò×ØÐÐ ¿¿ ½½º ÓÑ × Ò×ØÐÐÒÓ ÔÖÓÖÑÑ ¿ ½¾º ÒÓÒ ØÖÓÚÓ ÒÐ ×ØÓ ÐÐ ×ØÖÙÞÓÒ ¿ ½¿º Ó׳ ÙÒÓ ¿ ½º ÓÑ × Ð ××ØÑ ½º ÓÑ Ð ½º Ð× Ñ ½º Ð Ñ ØÐ ¿ ½º ÐÓ ½º ÓÑ × Ò×ØÐÐ Ð ×ØÑÔÒØ ¾¼º ÓÑ ÐØØÖ¸ Ø×Ø ÐÖ III Indice ¾½º ÓÑ ÚÖ Ð ØÐÚ×ÓÒ ¿ 21.1. Televisioneanalogica . 63 21.2. Televisione digitale (terrestre o satellitare) . ....... 64 ¾¾º ÐÑØ ¾¿º Ä 23.1. Fotoritocco ............................. 67 23.2. Grafica3D.............................. 67 23.3. Disegnovettoriale-CAD . 69 23.4.Filtricoloreecalibrazionecolori . .. 69 ¾º ×ÖÚ Ð ½ 24.1.Vari.................................. 72 24.2. Navigazionedirectoriesefiles . 73 24.3. CopiaCD .............................. 74 24.4. Editaretesto............................. 74 24.5.RPM ................................. 75 ¾º ×ÑÔ Ô ´ËÐе 25.1.Montareundiscoounapenna . 77 25.2. Trovareunfilenelsistema . 79 25.3.Vedereilcontenutodiunfile . 79 25.4.Alias ................................. 80 ¾º × ÚÓÐ×× ÔÖÓÖÑÑÖ ½ ¾º ÖÓÛ×Ö¸ ÑÐ ººº ¿ ¾º ÖÛÐРгÒØÚÖÙ× Ð ÑØØÑÓ ¾º ÄÒÙÜ ½ ¿¼º ÓÑ ØÖÓÚÖ ÙØÓ ÖÖÑÒØ ¿ ¿½º Ð Ø×ØÙÐ Ô Ö Ð ×ØÓÔ ÄÒÙÜ ¿¾º ´ÃµÍÙÒØÙ¸ ÙÒ ×ØÖÙÞÓÒ ÑÓÐØÓ ÑØ ¿¿º ËÙÜ ÙÒ³ÓØØÑ ×ØÖÙÞÓÒ ÄÒÙÜ ½¼½ ¿º Á Ó Ò ÄÒÙÜ ½¼ ¿º ÃÓÒÕÙÖÓÖ¸ ÕÙ×ØÓ ½¼ ¿º ÃÓÒÕÙÖÓÖ¸ Ñ ØÒØÓ Ô Ö ½½¿ 36.1.Unaprimaocchiata . .114 36.2.ImenudiKonqueror . .115 36.3.Configurazione . .116 IV Indice 36.4.Alcuniesempidiviste . 116 36.5.Iservizidimenu(ServiceMenu) . 119 ¿º ÃÓÒÕÙÖÓÖ Ø ½¾¿ ¿º à ÙÒ ÖÖÒØ ½¾ ¿º à ÙÒ ÐÙ×ÓÒ ½¿½ ¼º ÓÒÖÓÒØÓ Ò×ØÐÐÞÓÒ ÏÒÓÛ×È ÃÍÙÒØÙ º½¼ ½¿¿ 40.1.
    [Show full text]