Fedora fc5 sp
From
Fedora Core 5 Guia de Inicio
Esta guia es mantenida por el Linux Center de la Universidad de Latvia, y cualquiera que este dispuesto a contribuir.
Contribuidores: orvils fedorajim Mehdi diasdelfenix ...
La Guia para Fedora Core 4 esta aquì!
Mucho de lo que esta explicado en esta guia puede ser hecho automaticamente usando Fedora Frog----
Notas Generales
- Esta es una guìa de inicio de Fedora Core 5.Esta no esta asociada con Fedora y Redhat,inc.
- Esta guia ha sido probada en un computadora personal, en una instalacion por default de Fedora Core 5, con los paquetes por default.
- Si ves un rectangulo azul, esto significa que tienes que ejecutar comandos en modo Terminal (Aplicaciones -> Herramientas del Sistema-> Terminal) o usar el contendio de esos rectangulos, como es mencionado en algunas otras instrucciones.
- Para reducir errores tipograficos, copia y pega los comandos en el modo Terminal (boton derecho sobre los comandos -> "Copiar" o "Pegar". Tambien puedes usar Ctrl+C para copiar y Shift+Insert para pegar )
- Nota: Debes de correr estos comandos como root. Antes de hacer cualquier cosa, debes de teclear
su -
- E ingresar tu contraseña de root.
- O
- Leer #Como conseguir un atajo a la Terminal de Root
- Si no te gusta trabajar en modo Terminal Leer #Como instalar la Interfaz Grafica de Usario para yum
- "yum" and "wget" requieres de una conexion a Internet para instalar/actualizar/bajar programas
- Espero que esta guia te ayude
Comenzando
¿Que es Fedora?
¿Donde ver tomas de pantalla de Fedora?
¿Donde encontrar una lista de todos los progrmas/librerias que vienen con Fedora?
¿Donde descargar Fedora?
¿Donde encontrar ayuda para Fedora?
- Official Documentation website
- Fedora Core 5 Linux Installation Notes
- Unfficial Fedora FAQ
- Fedora Core 5 Tips and Tricks
- Mauriat Miranda's Personal Fedora Core 5 Installation Guide
- Fedora Forum
- Fedora Solved
- Other places
¿Donde buscar nuevos programas?
- http://gnomefiles.org/
- http://freshmeat.net
- http://sourceforge.net/
- http://kde-apps.org/
- Fedora Extras project
- http://rpm.pbone.net/
- http://rpm.livna.org/
¿Donde buscar elementos de estilo para su escritorio?
Repositorios
Como agregar repositorios extras
- Leer #Notas Generales
- Reemplazar tu viejo yum.conf con el nuevo
cd /etc mv -f yum.conf yum.conf.bak wget http://www.fedorafaq.org/samples/yum.conf rpm -Uvh http://www.fedorafaq.org/yum
Adding RPMforge repos
- Read #General Notes
- Read #How to add GPG Keys
Adding the RPM forge repo is a alternative to the repos that get installed from the fedorafaq website. Note: These two groups are mutually incompatible and can cause errors in your installation if used together for automatic updates.
- freshrpms
rpm -ivh http://ftp.freshrpms.net/pub/freshrpms/fedora/linux/5/freshrpms-release/freshrpms-release-1.1-1.fc.noarch.rpm
- dries
gedit /etc/yum.repos.d/dries.repo
- Add the following lines to the new file
[dries] name=Extra Fedora rpms dries - $releasever - $basearch baseurl=http://ftp.belnet.be/packages/dries.ulyssis.org/fedora/linux/$releasever/$basearch/dries/RPMS/ http://apt.sw.be/dries/fedora/fc4/$basearch/dries/RPMS/ failovermethod=priority enabled=0 gpgcheck=1
- newrpms
gedit /etc/yum.repos.d/newrpms.repo
- Add the following lines to the new file
[newrpms.sunsite.dk] name=Fedora Core 5 i386 NewRPMS.sunsite.dk baseurl=http://newrpms.sunsite.dk/apt/redhat/en/$basearch/fc$releasever http://newrpms.atrpms.net/apt/redhat/en/$basearch/fc$releasever failovermethod=priority enabled=0 gpgcheck=1
How to import GPG Keys
- Remember you have to do this as root Read #General Notes
rpm --import http://freshrpms.net/packages/RPM-GPG-KEY.txt rpm --import http://dries.ulyssis.org/rpm/RPM-GPG-KEY.dries.txt rpm --import http://newrpms.sunsite.dk/gpg-pubkey-newrpms.txt rpm --import /usr/share/doc/fedora-release-*/*GPG-KEY*
Fedora Updates
How to manually update Fedora
- Read #General Notes
- Read #How to add extra repositories
yum check-update yum update
- Alternative is to use pup (Package Updater)
pup
- From the menu
Applications -> System Tools -> Software Updater
Add-On Applications
How To use Yum
- Read #General Notes
- Read #How to add extra repositories
Yum is a very powerfull package manager. yum will resolve dependencies for you and makes installing applications a breeze. yum also searches, removes, and lists packages for you.
usage: yum [options] < update | install | info | remove | list | clean | provides | search | check-update | groupinstall | groupupdate | grouplist | groupinfo | groupremove | makecache | localinstall | erase | upgrade | whatprovides | localupdate | resolvedep | shell | deplist > options: -h, --help show this help message and exit -t, --tolerant be tolerant of errors -C run entirely from cache, don't update cache -c [config file] config file location -R [minutes] maximum command wait time -d [debug level] debugging output level -e [error level] error output level -y answer yes for all questions --version show Yum version and exit --installroot=[path] set install root --enablerepo=[repo] enable one or more repositories (wildcards allowed) --disablerepo=[repo] disable one or more repositories (wildcards allowed) --exclude=[package] exclude package(s) by name or glob --obsoletes enable obsoletes processing during updates --noplugins disable Yum plugins
From a first look this can look rather intimidating, but this is rather easy.
- Examples:
- To seach for a application
Yum will search all your enabled repos and tell you where you can obtain the package from
yum search application_name
- Yum can list all available packages from your enabled repos and tell you where you can obtain the package from:
yum list available
- To find out more info about some package
yum info application_name
- Installing applications
Inastalling is as easy as
yum install application_name
- Listing rpms
yum can list installed rpms for you from the repos you have enabled
yum list extras
- Removing rpms
Yum can remove a application and the dependenciesit installed with tat application. it will not remove depenencies if another application installed needs them.
yum remove application_name
- Updating the system
Yum can update the system for you with out user interact if you want it to.
yum update
- Not sure if you have upates?
yum check-update
- Local install
downloaded a rpm and cannot install it with rpm because of dependencies?
yum localinstall /path/to/the/rpm
- Happy yumming...
List out your last update with rpm
- Read #General Notes
rpm -qa --last | tac
How to install Graphical User Interface for yum
- Read #General Notes
- Read #How to add extra repositories
yum -y install yumex
- Applications -> System Tools -> Yum Extender
NetworkManager for Gnome
- Read #General Notes
- Read #How to add extra repositories
Start the services
chkconfig --level 345 NetworkManager on chkconfig --level 345 NetworkManagerDispatcher on service NetworkManager start service NetworkManagerDispatcher start
Click the Radar or connected icon in the system tray and choose "New wireless network".
Enter your information
How to install Menu Editor for GNOME
- Read #General Notes
- Read #How to add extra repositories
yum -y install alacarte
- Applications -> Accessories System Tools -> Alacarte Menu Editor
How to install Clipboard Daemon for GNOME
- Read #General Notes
- first 5 commands are done as root the last is user your user ID.
wget -c http://easylinux.info/uploads/gnome-clipboard-daemon-1.0.bin.tar.bz2 tar jxvf gnome-clipboard-daemon-1.0.bin.tar.bz2 -C /usr/bin/ rm -f gnome-clipboard-daemon-1.0.bin.tar.bz2 chown root:root /usr/bin/gnome-clipboard-daemon chmod 755 /usr/bin/gnome-clipboard-daemon gnome-clipboard-daemon & exit export EDITOR=gedit && crontab -e
- Add the following line at the end of file
@reboot gnome-clipboard-daemon
- Save edited file
How to install Java with Plug-in for Mozilla Firefox
- Read #General Notes
- Download Linux self-extracting file (jre-1_5_0_06-linux-i586.bin) from
Java's Site and save it to your home folder
mv jre-1_5_0_06-linux-i586.bin /opt cd /opt chmod +x jre-1_5_0_06-linux-i586.bin ./jre-1_5_0_06-linux-i586.bin ln -s /opt/jre1.5.0_06/plugin/i386/ns7/libjavaplugin_oji.so /usr/lib/mozilla/plugins/libjavaplugin_oji.so
The Java plugin is now installed Confirm with the command below that the sym links are green
ls /usr/lib/mozilla/plugins
To run Java enabled applictions like limewire continue below
gedit /etc/profile.d/java.sh
- Insert the following lines to the new file
#!/bin/sh JAVA_HOME=/usr/java/jre1.5.0_06 export JAVA_HOME JAVA_BIN=$JAVA_HOME/bin CLASSPATH=$CLASSPATH:$JAVA_HOME:$JAVA_HOME/lib PATH=$JAVA_BIN:$PATH export JAVA_BIN CLASSPATH PATH
- Save edited file
source /etc/profile.d/java.sh /usr/sbin/alternatives --install /usr/bin/java java /opt/jre1.5.0_06/bin/java 2 /usr/sbin/alternatives --config java
- You will see the following screen
There are 2 programs which provide 'java'. Selection Command ----------------------------------------------- *+ 1 /usr/lib/jvm/jre-1.4.2-gcj/bin/java 2 /opt/jre1.5.0_06/bin/java Enter to keep the current selection[+], or type selection number:
- Enter 2
- Test your Java
How to install Flash Player (Macromedia Flash) Plug-in for Mozilla Firefox
- Read #General Notes
- Read #How to add extra repositories
yum --enablerepo=flash install flash-plugin
- Restart Mozilla Firefox
How to install PDF Reader (Adobe Reader)
- You can already view .pdf documents, but if you wish to have Adobe Reader
- Read #General Notes
- Read #How to add extra repositories
wget -c http://ardownload.adobe.com/pub/adobe/reader/unix/7x/7.0.5/enu/AdobeReader_enu-7.0.5-1.i386.rpm yum -y install compat-libstdc++-33 rpm -i AdobeReader_enu-7.0.5-1.i386.rpm rm -f AdobeReader_enu-7.0.5-1.i386.rpm
- Applications -> Office -> Adobe Reader
Link Adobe Acrobat to the mozilla plugins
- Read #General Notes
Linking to the mozilla plugins folder will allow you to view the pdf in the browser instead of viewing with Acrobat Reader
cd /usr/lib/mozilla/plugins ln -s /usr/local/Adobe/Acrobat7.0/Browser/intellinux/nppdf.so
How to install Download Manager (Downloader for X)
- Read #General Notes
- Read #How to add extra repositories
yum -y install d4x
- Applications -> Internet -> Downloader for X
How to install FTP Client (gFTP)
- Read #General Notes
- Read #How to add extra repositories
yum -y install gftp
- Applications -> Internet -> gFTP
How to install File share utility (DC++)
- Read #General Notes
wget -c http://easylinux.info/uploads/linuxdcpp.tar.gz tar zxvf linuxdcpp.tar.gz -C /opt rm -f linuxdcpp.tar.gz gedit /usr/share/applications/dcpp.desktop
- Insert the following lines into the new file
[Desktop Entry] Encoding=UTF-8 Name=DC++ Exec=/opt/linuxdcpp/dcpp Terminal=false Type=Application StartupNotify=true Icon=eyes.png Categories=Application;Network;
- Applications -> Internet -> DC++
How to install P2P BitTorrent Client (Azureus)
- Read #General Notes
- Read #How to install J2SE Runtime Environment (JRE) with Plug-in for Mozilla Firefox
wget -c http://heanet.dl.sourceforge.net/sourceforge/azureus/Azureus_2.3.0.6_linux.tar.bz2 tar jxvf Azureus_2.3.0.6_linux.tar.bz2 -C /opt gedit /usr/share/applications/azureus.desktop
- Add the following to the new file:
[Desktop Entry] Name=Azureus Comment=A Bittorrent client Exec=/opt/azureus/azureus Icon=/opt/azureus/Azureus.png Terminal=false Type=Application Categories=Application;Network;
- Applications -> Internet -> Azureus
How to install P2P eMule Client (aMule)
- Read #General Notes
- Read #How to add extra repositories
yum -y install amule
- Applications -> Internet -> aMule
How to install P2P Gnutella Client (LimeWire)
- Read #General Notes
- Read #How to install J2SE Runtime Environment (JRE) with Plug-in for Mozilla Firefox
wget -c http://easylinux.info/uploads/LimeWireOther.zip unzip -u LimeWireOther.zip -d /opt/ rm -f LimeWireOther.zip gedit /usr/bin/runLime.sh
- Insert the following lines into the new file
cd /opt/LimeWire/ ./runLime.sh
- Save the edited file
chmod +x /usr/bin/runLime.sh gedit /usr/share/applications/LimeWire.desktop
- Insert the following lines into the new file
[Desktop Entry] Name=LimeWire Comment=LimeWire Exec=runLime.sh Icon=/opt/LimeWire/LimeWire.ico Terminal=false Type=Application Categories=Application;Network;
- Save the edited file
- Applications -> Internet -> LimeWire
How to install Messenger (Skype)
- Read #General Notes
wget -c http://download.skype.com/linux/skype_staticQT-1.2.0.18.tar.bz2 tar jxvf skype_staticQT-1.2.0.18.tar.bz2 -C /opt/ ln -s /opt/skype-1.2.0.18/skype /usr/bin/skype cp /opt/skype-1.2.0.18/skype.desktop /usr/share/applications/skype.desktop cp /opt/skype-1.2.0.18/icons/skype_32_32.png /usr/share/pixmaps/skype.png rm -f skype_staticQT-1.2.0.18.tar.bz2
- Applications -> Internet -> Skype
How to install Multimedia Codecs
- Read #General Notes
yum -y install gstreamer-plugins* yum -y install lame yum -y install ffmpeg yum -y install mjpegtools yum --enablerepo=atrpms install w32codec gst-register-0.8
How to install DVD playback capability
- Read #General Notes
- Read #How to add extra repositories
wget -c http://download.videolan.org/pub/libdvdcss/1.2.9/rpm/libdvdcss2-1.2.9-1.i386.rpm rpm -i libdvdcss2-1.2.9-1.i386.rpm
How to install Multimedia Player (MPlayer) with Plug-in for Mozilla Firefox
- Read #General Notes
- Read #How to add extra repositories
- Read #How to install Multimedia Codecs
- Read #How to install DVD playback capability
yum -y install mplayer-gui yum -y install mplayerplug-in
- Applications -> Sound & Video -> MPlayer
- Restart Mozilla Firefox
How to install Multimedia Player (VLC)
- Read #General Notes
- Read #How to add extra repositories
- Read #How to install Multimedia Codecs
- Read #How to install DVD playback capability
yum -y install videolan-client
- Applications -> Sound & Video -> VLC
How to install Multimedia Player (XMMS)
yum -y install xmms yum -y install xmms-mp3 yum -y install xmms-skins
- Applications -> Sound & Video -> XMMS
How to install Multimedia Player (amaroK)
yum -y install amarok
- Applications -> Sound & Video -> amaroK
How to install Multimedia Player (RealPlayer 10)
- Read #General Notes
- Read #How to add extra repositories
yum -y install compat-libstdc++-33
- Download RealPlayer Gold from here.
- Install it.
- Assumed that .rpm file has been downloaded to your Desktop, because Firefox by default downloads everything to your Desktop
rpm -ivh Desktop/RealPlayer10GOLD.rpm yum remove HelixPlayer
- Applications -> Sound & Video -> RealPlayer 10
How to install Stream Directory Browser (streamtuner)
- Read #General Notes
wget -c ftp://ftp.freshrpms.net/pub/dag/dries/packages/streamtuner/fc4-i386/streamtuner-0.99.99-1.2.fc4.rf.i386.rpm rpm -ivh streamtuner-0.99.99-1.2.fc4.rf.i386.rpm rm -f streamtuner-0.99.99-1.2.fc4.rf.i386.rpm
- Applications -> Sound & Video -> streamtuner
How to install ID3 Tag Editor (EasyTAG)
- Read #General Notes
- Read #How to add extra repositories
yum --enablerepo=freshrpms install easytag
- Applications -> Sound & Video -> EasyTAG
How to install Video Editor (Kino)
yum -y install kino
- Applications -> Sound & Video -> Kino
How to install Audio Editor (Audacity)
yum -y install audacity
- Applications -> Sound & Video -> Audacity
How to install DVD Ripper (dvd::rip)
- Read #General Notes
- Read #How to add extra repositories
- Read #How to install Multimedia Codecs
- Read #How to install DVD playback capability
- Read #How to install Multimedia Player (MPlayer) with Plug-in for Mozilla Firefox
- Read #How to install RAR Archiver (rar)
yum -y install perl-Video-DVDRip yum --enablerepo=freshrpms install vcdimager yum -y install cdrdao yum --enablerepo=freshrpms install subtitleripper ln -fs /usr/bin/rar /usr/bin/rar-2.80 gedit /usr/share/applications/dvdrip.desktop
- Insert the following lines into the new file
[Desktop Entry] Name=dvd::rip Comment=dvd::rip Exec=dvdrip Icon=/usr/share/perl5/Video/DVDRip/icon.xpm Terminal=false Type=Application Categories=Application;AudioVideo;
- Save the edited file
- Applications -> Sound & Video -> dvd::rip
How to install Image Viewer (Gwenview)
- Read #General Notes
- Read #How to add extra repositories
yum -y install gwenview yum -y install kipi-plugins yum -y install ImageMagick
- Applications -> Graphics -> Gwenview
How to install Email Client (Mozilla Thunderbird)
- Read #General Notes
- Read #How to add extra repositories
yum -y install thunderbird
- Applications -> Internet -> Thunderbird Mail Client
How to install Newsreader (Pan)
- Read #General Notes
- Read #How to add extra repositories
yum -y install pan
- Applications -> Internet -> Pan Newsreader
How to install RSS/RDF/Atom Newsreader (RSSOwl)
- Read #General Notes
- Read #How to install J2SE Runtime Environment (JRE) with Plug-in for Mozilla Firefox
wget -c http://easylinux.info/uploads/rssowl_linux_1_1_3_bin.tar.gz tar zxvf rssowl_linux_1_1_3_bin.tar.gz -C /opt/ chown -R root:root /opt/rssowl_linux_1_1_3_bin/ gedit /usr/bin/runRSSOwl.sh
- Insert the following lines into the new file
export MOZILLA_FIVE_HOME=/usr/lib/mozilla-firefox
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${MOZILLA_FIVE_HOME}:${LD_LIBRARY_PATH}
cd /opt/rssowl_linux_1_1_3_bin/
./run.sh
- Save the edited file
chmod +x /usr/bin/runRSSOwl.sh gedit /usr/share/applications/RSSOwl.desktop
- Insert the following lines into the new file
[Desktop Entry] Name=RSSOwl Comment=RSSOwl Exec=runRSSOwl.sh Icon=/opt/rssowl_linux_1_1_3_bin/rssowl.xpm Terminal=false Type=Application Categories=Application;Network;
- Save the edited file
- Applications -> Internet -> RSSOwl
How to install CHM viewer (GnoCHM)
- Read #General Notes
- Read #How to add extra repositories
yum -y --enablerepo=dries install gnochm
- Applications -> Accessories -> CHM Viewer
How to install Web Authoring System (Nvu)
- Read #General Notes
- Read #How to add extra repositories
yum -y install xorg-x11-deprecated-libs wget -c http://www.nvu.com/download/linux/1.0/nvu-1.0-RedHat_and_Fedora/nvu-1.0-1.rhel4.fs.i386.rpm rpm -ivh nvu-1.0-1.rhel4.fs.i386.rpm
- Applications -> Programming -> Nvu
How to install Web Authoring System (bluefish)
- Read #General Notes
- Read #How to add extra repositories
yum -y install bluefish
Applications --> Programming --> Bluefish Editor
How to install KDE Web Development Environment (quanta plus)
- Read #General Notes
- Read #How to add extra repositories
yum -y install kdewebdev
- Applications -> Programming -> Quanta Plus
How to install Accounting Application (GnuCash)
- Read #General Notes
- Read #How to add extra repositories
yum -y install gnucash rm -fr /usr/share/gnome/apps/Applications/ gedit /usr/share/applications/GnuCash.desktop
- Insert the following lines into the new file
[Desktop Entry] Name=GnuCash Comment=GnuCash Personal Finance Exec=gnucash Icon=/usr/share/pixmaps/gnucash/gnucash-icon.png Terminal=false Type=Application Categories=Application;Office;
- Save the edited file
- Applications -> Office -> GnuCash
How to install Desktop Publishing Application (Scribus)
- Read #General Notes
- Read #How to add extra repositories
yum -y install scribus
- Applications -> Office -> Scribus
How to install CD/DVD Burning Application (GnomeBaker)
- Read #General Notes
- Read #How to add extra repositories
yum -y install gnomebaker
- Applications -> Sound & Video -> GnomeBaker
How to install CD/DVD Burning Application (k3b)
- Read #General Notes
- Read #How to add extra repositories
yum -y install k3b
- Applications -> Sound & Video -> K3b
How to install Partition Editor (GParted)
- Read #General Notes
- Read #How to add extra repositories
yum -y install gparted
- Applications -> System Tools -> GParted
How to install Firewall (Firestarter)
- Read #General Notes
- Read #How to add extra repositories
yum -y install firestarter
- Applications -> System Tools -> Firestarter
How to install network traffic analyzer (Ethereal)
- Read #General Notes
- Read #How to add extra repositories
yum -y install ethereal ethereal-gnome
- Applications -> Internet -> Ethereal
How to install RAR Archiver (rar)
- Read #General Notes
- Read #How to add extra repositories
yum --enablerepo=freshrpms install rar unrar
- Applications -> Accessories -> Archive Manager
How to install Extra Fonts
- Read #General Notes
- Read #How to add extra repositories
yum -y install xfonts-arabic yum -y install xfonts-chinese yum -y install xfonts-gujarati yum -y install xfonts-hebrew yum -y install xfonts-hindi yum -y install xfonts-japanese yum -y install xfonts-xorg-truetype wget -c http://easylinux.info/uploads/msttcorefonts-1.3-4.noarch.rpm rpm -ivh msttcorefonts-1.3-4.noarch.rpm /etc/init.d/xfs restart
How to install Desktop Applets (gDesklets)
- Read #General Notes
- Read #How to add extra repositories
yum -y install gdesklets
- Applications -> Accessories -> gDesklets
- For more info see: http://gdesklets.gnomedesktop.org/
How to install Basic Compilers
- Read #General Notes
- Read #How to add extra repositories
yum -y install gcc yum -y install gcc-c++
How to set up Development environment
- Read #General Notes
- Read #How to add extra repositories
- Add development repo
gedit /etc/yum.repos.d/fedora-devel.repo
- Add the following lines to the new file
[development] name=Fedora Core $releasever - Development Tree #baseurl=http://download.fedora.redhat.com/pub/fedora/linux/core/development/$basearch/ mirrorlist=http://fedora.redhat.com/download/mirrors/fedora-core-rawhide enabled=1 gpgcheck=0
- Save the edited file
yum groupinstall "Development Tools"
How to install Integrated Development Environment (Anjuta)
- Read #General Notes
- Read #How to add extra repositories
rpm --import /usr/share/rhn/RPM-GPG-KEY yum -y install anjuta
- Applications -> Programming -> Anjuta IDE
How to install 3D modeling tool (Blender 3d)
- Read #General Notes
- Read #How to add extra repositories
yum -y install blender
- Applications -> Graphics -> Blender 3D modeller
How to install game Frozen-Bubble
- Read #General Notes
- Read #How to add extra repositories
yum -y install frozen-bubble
- Applications -> Games -> Frozen-Bubble
- For more games see: http://games.linux.sk/ or http://www.tuxgames.com/
How to install virtual planetarium (Stellarium)
- Read #General Notes
- Read #How to add extra repositories
yum -y install stellarium
- Applications -> Graphics -> Stellarium nightsky renderer
How to install KDE Edutainment applications
- Read #General Notes
- Read #How to add extra repositories
yum -y install kdeedu
- Applications -> Edutainment -> ...
Other Desktop Environments
How to install KDE
- Read #General Notes
- Read #How to add extra repositories
- You may also look at some KDE Screenshots
- Use Desktop -> System Settings -> Add/Remove Applications
- or
yum -y install htdig yum -y install kdebase yum -y install arts yum -y install desktop-printing yum -y install kdegraphics yum -y install kdenetwork yum -y install kdemultimedia yum -y install kdeaddons yum -y install kdeutils yum -y install kdeartwork yum -y install autorun
- Log out
- In Sessions chose KDE
- Log in
Commercial Applications
How to install Windows 9X/ME/2000/XP (Win4Lin)
How to install Windows Applications (CrossOver Office)
How to install Windows Games (Cedega)
Users Administration
Set up Sudo on your PC
- Read #General Notes
gedit /etc/sudoers
- Find this line
# User privilege specification root ALL=(ALL) ALL
- Add your username underneath where it says root and copy the rest of the line as is:
# User privilege specification root ALL=(ALL) ALL your_user_name ALL=(ALL)NOPASSWD: ALL
The NOPASSWD: secition is optional. If you work in a environment that you feel there maybe a security risk DO NOT USE THIS OPTION. Simply remove that section of the line. If you do not use the NOPASSWD: option, when you run a command with sudo, you'll need to enter your password NOT Roots.
How to set/change/enable root user password
- Read #General Notes
passwd root
How to disable root user account
- Read #General Notes
passwd -l root
How to add/edit/delete system users
- Read #General Notes
- Desktop -> System Settings -> Users and Groups
- Users and Groups
Users Tab -> Add User.../Properties/Delete
How to add/edit/delete system groups
- Read #General Notes
- Desktop -> System Settings -> Users and Groups
- Users and Groups
Groups Tab -> Add Group.../Properties/Delete
How to automatic login into GNOME (not secure)
- Read #General Notes
- Desktop -> System Settings -> Login Screen
- Login Screen Setup
General Tab -> Automatic Login -> Login a user automatically on first bootup (Checked) Automatic login username: Select "system_username"
How to change files/folders permissions
- Read #General Notes
Right click on files/folders -> Properties
Permissions Tab -> Read/Write/Execute (Checked the permissions for Owner/Group/Others)
How to change files/folders ownership
- Read #General Notes
chown system_username /location_of_files_or_folders
How to change files/folders group ownership
- Read #General Notes
chgrp system_groupname /location_of_files_or_folders
Hardware
how to get wireless working Intel IPW2200 b,g
- Read #General Notes
- Read #How to add extra repositories
download [1] Agree to the licence and save the file to your desktop then open the terminal and copy & paste each line.
mkdir tmp mv ~/Desktop/*-2.4.tgz ~/tmp cd tmp tar -zxvf ipw2200-fw-2.4.tgz cp * /lib/firmware rmmod ipw2200 modprobe ipw2200 iwconfig
you should now see a access point You can use NetworkManager to control your wireless actvity
#NetworkManager_for_Gnome
How to install Graphics Driver (NVIDIA)
- Read #General Notes
- Read #How to add extra repositories
yum -y install nvidia-glx kernel-module-nvidia-$(uname -r)
- Read #How to restart GNOME without rebooting computer
- If you have any problems see nV News "Linux and nVidia Graphics" forum
- or
How to install Graphics Driver (ATI)
- Read #General Notes
- Read #How to add extra repositories
yum -y install ati-fglrx kernel-module-fglrx-$(uname -r)
- If you have an Intel motherboard, you will have to modify your xorg.conf file after installing the drivers:
gedit /etc/X11/xorg.conf
- Find the following line
Driver "fglrx"
- Add the following line below it
Option "UseInternalAGPGART" "no"
How to identify Modem chipset
- Read #General Notes
- To install Modem chipset identifier
- Read #How to install Basic Compilers (build-essential)
wget -c http://easylinux.info/uploads/scanModem.gz gunzip -c scanModem.gz > scanModem chmod +x scanModem cp scanModem /usr/bin/
- To identify Modem chipset
scanModem gedit Modem/ModemData.txt
How to list partition tables
- Read #General Notes
fdisk -l
How to list filesystem disk space usage
- Read #General Notes
df -T -h
How to list mounted devices
- Read #General Notes
mount
How to list PCI devices
- Read #General Notes
lspci
How to list USB devices
- Read #General Notes
lsusb
How to speed up CD/DVD-ROM
- Read #General Notes
- e.g. Assumed that /dev/cdrom is the location of CD/DVD-ROM
/sbin/hdparm -d1 /dev/cdrom gedit /etc/hdparm.conf
- Insert the following lines in the new file
/dev/cdrom {
dma = on
}
- Save the edited file
How to mount/unmount CD/DVD-ROM manually, and show all hidden and associated files/folders
- Read #General Notes
- e.g. Assumed that /media/cdrom0/ is the location of CD/DVD-ROM
- To mount CD/DVD-ROM
mount /media/cdrom0/ -o unhide
- To unmount CD/DVD-ROM
umount /media/cdrom0/
How to forcefully unmount CD/DVD-ROM manually
- Read #General Notes
- e.g. Assumed that /media/cdrom0/ is the location of CD/DVD-ROM
umount /media/cdrom0/ -l
How to remount /etc/fstab without rebooting
- Read #General Notes
mount -a
CD/DVD Burning
How to blank CD-RW/DVD-RW
- Read #General Notes
- e.g. Assumed that /dev/cdrom is the location of CD/DVD-ROM
umount /dev/cdrom cdrecord dev=/dev/cdrom blank=fast
How to burn files/folders into CD/DVD
- Read #General Notes
nautilus burn:///
- File Browser: CD/DVD Creator
- Drag files/folders into window
File Menu -> Write to Disc... -> Write
How to burn Image (ISO) files into CD/DVD
- Read #General Notes
Right click on Image (ISO) file -> Write to Disc... -> Write
How to duplicate CD/DVD
- Read #General Notes
- Read #How to create Image (ISO) files from CD/DVD
- Read #How to burn Image (ISO) files into CD/DVD
How to create Image (ISO) files from CD/DVD
- Read #General Notes
- e.g. Assumed that /dev/cdrom is the location of CD/DVD-ROM
umount /dev/cdrom dd if=/dev/cdrom of=file.iso bs=1024
How to create Image (ISO) files from folders
- Read #General Notes
mkisofs -o file.iso /location_of_folder/
How to generate MD5 checksum files
- Read #General Notes
md5sum file.iso > file.iso.md5
How to check MD5 checksum of files
- Read #General Notes
- e.g. Assumed that file.iso and file.iso.md5 are in the same folder
md5sum -c file.iso.md5
How to mount/unmount Image (ISO) files without burning
- Read #General Notes
- To mount Image (ISO) file
mkdir /media/iso modprobe loop mount file.iso /media/iso/ -t iso9660 -o loop
- To unmount Image (ISO) file
umount /media/iso/
How to set/change the burn speed for CD/DVD Burner
- Read #General Notes
- Applications -> System Tools -> Configuration Editor
- Configuration Editor
/ -> apps -> nautilus-cd-burner -> default_speed (set/change the burn speed)
How to enable burnproof for CD/DVD Burner
- Read #General Notes
- Applications -> System Tools -> Configuration Editor
- Configuration Editor
/ -> apps -> nautilus-cd-burner -> burnp