We are still actively working on the spam issue.

Difference between revisions of "Fedora"

From InstallGentoo Wiki
Jump to: navigation, search
(explaining that fedora 22 does not use yum. i'll fix commands.)
(fixed a grammar mistake, changed yum commands to dnf because yum is deprecated)
Line 3: Line 3:
 
[http://fedoraproject.org/ Fedora] is a fast, stable, and powerful [[GNU/Linux]] distribution for everyday use built by a worldwide community of friends. It's completely free to use, study, and share.
 
[http://fedoraproject.org/ Fedora] is a fast, stable, and powerful [[GNU/Linux]] distribution for everyday use built by a worldwide community of friends. It's completely free to use, study, and share.
  
'''Yum is deprecated as of Fedora 22, and is replaced by ''' dnf '''. Trying to run any yum commands will warrant an explanation of why your command will not work, and then runs the transaction as a dnf command. '''
+
Yum is deprecated as of Fedora 22, and is replaced by ''' dnf '''. Trying to run any yum commands will warrant an explanation of why your command will not work, and then runs the transaction as a dnf command.  
  
 
==Why use Fedora?==
 
==Why use Fedora?==
Line 22: Line 22:
 
Although the default Fedora installation contains most of the packages the average user needs, it's always useful to install the following essentials that are sadly not packaged with Fedora by default:
 
Although the default Fedora installation contains most of the packages the average user needs, it's always useful to install the following essentials that are sadly not packaged with Fedora by default:
  
<pre>sudo yum install wget nano git gcc clang gnome-tweak-tool vim -y</pre>
+
<pre>sudo dnf install wget nano git gcc clang gnome-tweak-tool vim -y</pre>
  
Fedora 20 (appearently) ships with vim, and will complain when running this command. If you're on Fedora 20 run:
+
Fedora 20 (apparently) ships with vim, and will complain when running this command. If you're on Fedora 20 run:
  
<pre>sudo yum install wget nano git gcc clang gnome-tweak-tool</pre>
+
<pre>sudo dnf install wget nano git gcc clang gnome-tweak-tool</pre>
  
 
===Codecs===
 
===Codecs===
Line 33: Line 33:
 
You'll have to install [[Fedora#RPMFusion|RPMFusion]] if you want non-free codecs, as they will not be installed this way when only using the default repositories.
 
You'll have to install [[Fedora#RPMFusion|RPMFusion]] if you want non-free codecs, as they will not be installed this way when only using the default repositories.
  
== How to use yum ==
+
== How to use dnf ==
  
[[Yum]] has four basic commands that you need to remember:
+
[[Dnf]] has four basic commands that you need to remember:
  
* <code>yum install</code>
+
* <code>dnf install</code>
* <code>yum remove</code>
+
* <code>dnf remove</code>
* <code>yum update</code>
+
* <code>dnf update</code>
* <code>yum search</code>
+
* <code>dnf search</code>
  
''See [[Yum|the main article]] for detailed usage.''
+
''See [[Yum|the main article]] for detailed usage.''  
  
 
=== Basics ===
 
=== Basics ===
  
The <code>yum</code> command supports a range of wildcards and other options. For example, to install all the <code>gstreamer</code> plugins, you can run the following command:
+
The <code>dnf</code> command supports a range of wildcards and other options. For example, to install all the <code>gstreamer</code> plugins, you can run the following command:
  
<pre>yum install gstream*plugin*</pre>
+
<pre>dnf install gstream*plugin*</pre>
  
The commonly used <code>-y</code> flag will skip the confirmation process and yum will assume yes for most questions.
+
The commonly used <code>-y</code> flag will skip the confirmation process and dnf will assume yes for most questions.
  
 
==RPMFusion==
 
==RPMFusion==
Line 61: Line 61:
  
 
===Firefox===
 
===Firefox===
After you have Firefox working properly (you can install it using yum):
+
After you have Firefox working properly (you can install it using dnf):
  
 
====Install The Plugin====
 
====Install The Plugin====
  
 
<pre>sudo rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-adobe-linux
 
<pre>sudo rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-adobe-linux
sudo yum install flash-plugin -y</pre>
+
sudo dnf install flash-plugin -y</pre>
  
 
====Verify Your Installation====
 
====Verify Your Installation====
Line 95: Line 95:
 
Gnash is very modular and includes plugins for Mozilla and Konqueror as well as a desktop player. You likely want the Mozilla plugin.
 
Gnash is very modular and includes plugins for Mozilla and Konqueror as well as a desktop player. You likely want the Mozilla plugin.
  
<pre>sudo yum remove nspluginwrapper -y
+
<pre>sudo dnf remove nspluginwrapper -y
 
sudo yum install gnash-plugin -y</pre>
 
sudo yum install gnash-plugin -y</pre>
  
 
If you use Konqueror as your web browser,
 
If you use Konqueror as your web browser,
  
<pre>sudo yum install gnash-klash -y</pre>
+
<pre>sudo dnf install gnash-klash -y</pre>
  
 
If you would like to have a desktop flash player,
 
If you would like to have a desktop flash player,
  
<pre>sudo yum install gnash -y</pre>
+
<pre>sudo dnf install gnash -y</pre>
  
 
==External Links==
 
==External Links==

Revision as of 20:33, 14 June 2015

The Fedora GNU/Linux Logo.

Fedora is a fast, stable, and powerful GNU/Linux distribution for everyday use built by a worldwide community of friends. It's completely free to use, study, and share.

Yum is deprecated as of Fedora 22, and is replaced by dnf . Trying to run any yum commands will warrant an explanation of why your command will not work, and then runs the transaction as a dnf command.

Why use Fedora?

  • Default repos only contain free software
  • More bleeding edge software
  • RHEL-based

NOTE: If you have AMD hardware you might as well install Ubuntu LTS right now. Catalyst will not install correctly with Fedora 20.

New users

If you're new to GNU/Linux and you want to use Fedora then an excellent place to start is easyLife. It sets up essential software, installs some commonly used proprietary software (emphasis on installing propriety software, however, you can customize to not include non-free packages with your installation), installs codecs, installs and configures Adobe Flash, sets up proprietary drivers, sets up Oracle Java and much more. It's only recommended if you are an inexperienced user or if you're REALLY lazy.

When installing easylife use yum instead of rpm as rpm doesn't resolve dependencies.

su -c "yum localinstall </path/to/easylife.rpm> --nogpgcheck"

Basic setup

Although the default Fedora installation contains most of the packages the average user needs, it's always useful to install the following essentials that are sadly not packaged with Fedora by default:

sudo dnf install wget nano git gcc clang gnome-tweak-tool vim -y

Fedora 20 (apparently) ships with vim, and will complain when running this command. If you're on Fedora 20 run:

sudo dnf install wget nano git gcc clang gnome-tweak-tool

Codecs

By default, Fedora doesn't have a lot of codecs installed. You can fix this by running:

sudo yum install gstreamer{1,}-{ffmpeg,libav,plugins-{good,ugly,bad{,-free,-nonfree}}} ffmpeg -y

You'll have to install RPMFusion if you want non-free codecs, as they will not be installed this way when only using the default repositories.

How to use dnf

Dnf has four basic commands that you need to remember:

  • dnf install
  • dnf remove
  • dnf update
  • dnf search

See the main article for detailed usage.

Basics

The dnf command supports a range of wildcards and other options. For example, to install all the gstreamer plugins, you can run the following command:

dnf install gstream*plugin*

The commonly used -y flag will skip the confirmation process and dnf will assume yes for most questions.

RPMFusion

The RPMFusion repos add non-free software to Fedora. This includes a lot of codecs, steam, etc. Installing RPMFusion is extremely easy:

sudo -c 'yum localinstall --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm'

Flash

Flash is not installed by default and is officially not recommended due to the fact that it's non-free software. If you do wish to install the Flash player plugin anyway, follow the steps listed below.

Firefox

After you have Firefox working properly (you can install it using dnf):

Install The Plugin

sudo rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-adobe-linux
sudo dnf install flash-plugin -y

Verify Your Installation

To verify that Adobe Flash has been installed successfully, type the following text in the Firefox address bar:

about:plugins

For further verification, navigate to the Adobe Flash Test Page. There, you should be able to see whether or not Adobe Flash if working properly.

Installing the plugin on Chromium web browser

Follow all of the instructions in the Enabling Flash Plugin section. Then, on 64-bit, create a symbolic link that tells Chromium how to find the 64-bit plugin:

sudo ln -s /usr/lib64/mozilla/plugins/libflashplayer.so /usr/lib64/chromium-browser/plugins/libflashplayer.so

On 32-bit, create a symbolic link that tells Chromium how to find the 32-bit plugin:

sudo ln -s /usr/lib/mozilla/plugins/libflashplayer.so /usr/lib/chromium-browser/plugins/libflashplayer.so

Exit all Chromium windows and restart Chromium. In the Chromium address bar, type "about:plugins" to check whether the plugin loaded. You may have to re-run Chromium with the --enable-plugins command line switch to force Chromium to re-scan its plugins folder.

Installing Gnash

In addition to Adobe Flash, a free and open source alternative exists called Gnash. Gnash plays Flash videos correctly, but audio is often in a proprietary MP3 format. Since Gnash uses Gstreamer, you can install the Gstreamer codecs from RPM Fusion:

sudo yum install http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm  -y
sudo yum install gstreamer{1,}-{ffmpeg,libav,plugins-{good,ugly,bad{,-free,-nonfree}}} ffmpeg -y

Gnash is very modular and includes plugins for Mozilla and Konqueror as well as a desktop player. You likely want the Mozilla plugin.

sudo dnf remove nspluginwrapper -y
sudo yum install gnash-plugin -y

If you use Konqueror as your web browser,

sudo dnf install gnash-klash -y

If you would like to have a desktop flash player,

sudo dnf install gnash -y

External Links

Fedora Project Wiki How to create an RPM package - Details packaging in Fedora, recommended you use Mock to build.