mirror of
https://github.com/mikaela/mikaela.github.io/
synced 2025-02-23 08:50:43 +01:00
rpm: merge some commands
This commit is contained in:
parent
3ec5f674bb
commit
6f9150cf73
@ -129,19 +129,14 @@ rpm -ivh http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el&
|
||||
<p>Ensure that it's enabled by looking at /etc/yum/pluginconf.d/priorities.conf ! "enabled" should be 1</p>
|
||||
<p>Edit all .repo files in /etc/yum.repos.d/ and add PRIORITY=X to everything. My priorities are listed on same table as repositories themselves.</p>
|
||||
<h2 id="installing-virtualbox-guest-additions">Installing Virtualbox guest additions</h2>
|
||||
<pre><code>yum install dkms # requires some of the 3rd party repositories, EPEL on CentOS.</code></pre>
|
||||
<pre><code>yum install VirtualBox-guest # Fedora only ( ? ) Requires RPM Fusion</code></pre>
|
||||
<pre><code>yum install dkms # requires EPEL on CentOS.</code></pre>
|
||||
<pre><code>yum install VirtualBox-guest # Requires RPM Fusion</code></pre>
|
||||
<p>Or using guest additions shipped with <a href="https://www.virtualbox.org/">VirtualBox</a>;</p>
|
||||
<pre><code>yum groupinstall "Development Tools"
|
||||
yum install kernel-devel</code></pre>
|
||||
<p>Press HOST + D and cd to the mount point and run the Linux Additions installer and after successful installation, reboot</p>
|
||||
<h2 id="installing-libreoffice-for-people-not-installing-from-dvd-in-fedora">Installing LibreOffice (for people not installing from DVD) in Fedora</h2>
|
||||
<pre><code>yum groupinstall office</code></pre>
|
||||
<h2 id="installing-finnsh-language">Installing Finnsh language</h2>
|
||||
<p>and replacing "finnish" or "fi" with your native language</p>
|
||||
<pre><code>yum groupinstall finnish-support</code></pre>
|
||||
<p>or with KDE</p>
|
||||
<pre><code>yum install kde-l10n-fi</code></pre>
|
||||
<pre><code>yum install @development-tools kernel-devel</code></pre>
|
||||
<p>Press HOST + D and cd to the mount point and run the Linux Additions installer and after successful installation, reboot. These didn't work for me on Fedora 17, but worked on CentOS. With Fedora I recommend installing VirtualBox-guest from RPM Fusion.</p>
|
||||
<h2 id="installing-libreoffice-language-support-for-people-not-installing-from-dvd-in-fedora">Installing LibreOffice & language support (for people not installing from DVD) in Fedora</h2>
|
||||
<p>Remember to replace "finnish" and "fi" with your language</p>
|
||||
<pre><code>yum install @office @finnish-support kde-l10n-fi</code></pre>
|
||||
<h2 id="installing-all-gnome-shell-extensions">Installing all Gnome shell extensions</h2>
|
||||
<pre><code>yum install gnome-tweak-tool "gnome-shell-extension-*" # This might not be a good idea.</code></pre>
|
||||
<p>Use gnome-tweak-tool to enable/disable them. They might need reboot/logging in again before they appear in gnome-tweak-tool.</p>
|
||||
@ -150,7 +145,7 @@ yum install kernel-devel</code></pre>
|
||||
<h2 id="installing-flash">Installing Flash</h2>
|
||||
<pre><code>yum install flash-plugin # requires Adobe Flash repository to be enabled.</code></pre>
|
||||
<h2 id="installing-nvidia-restricted-drivers">Installing NVidia restricted drivers</h2>
|
||||
<pre><code>yum install kmod-nvidia # requires RPM Fusion</code></pre>
|
||||
<pre><code>yum install akmod-nvidia kmod-nvidia # requires RPM Fusion</code></pre>
|
||||
<h2 id="installing-restricted-miscellaneous-things">Installing (restricted?) miscellaneous things</h2>
|
||||
<p>Codecs, restricted font technologies etc.</p>
|
||||
<pre><code>yum install audacious-plugins-freeworld k3b-extras-freeworld xine-lib-extras-freeworld libdvdcss vlc mozilla-vlc unrar freetype-freeworld</code></pre>
|
||||
|
@ -111,40 +111,28 @@ Edit all .repo files in /etc/yum.repos.d/ and add PRIORITY=X to everything. My p
|
||||
## Installing Virtualbox guest additions
|
||||
|
||||
```
|
||||
yum install dkms # requires some of the 3rd party repositories, EPEL on CentOS.
|
||||
yum install dkms # requires EPEL on CentOS.
|
||||
```
|
||||
|
||||
```
|
||||
yum install VirtualBox-guest # Fedora only ( ? ) Requires RPM Fusion
|
||||
yum install VirtualBox-guest # Requires RPM Fusion
|
||||
```
|
||||
|
||||
Or using guest additions shipped with [VirtualBox];
|
||||
|
||||
```
|
||||
yum groupinstall "Development Tools"
|
||||
yum install kernel-devel
|
||||
yum install @development-tools kernel-devel
|
||||
```
|
||||
|
||||
Press HOST + D and cd to the mount point and run the Linux Additions installer and after successful installation, reboot
|
||||
Press HOST + D and cd to the mount point and run the Linux Additions installer and after successful installation, reboot. These didn't work for me on Fedora 17, but worked on CentOS. With Fedora I recommend installing VirtualBox-guest from RPM Fusion.
|
||||
|
||||
## Installing LibreOffice & language support (for people not installing from DVD) in Fedora
|
||||
|
||||
Remember to replace "finnish" and "fi" with your language
|
||||
|
||||
## Installing LibreOffice (for people not installing from DVD) in Fedora
|
||||
|
||||
```
|
||||
yum groupinstall office
|
||||
```
|
||||
|
||||
## Installing Finnsh language
|
||||
|
||||
and replacing "finnish" or "fi" with your native language
|
||||
|
||||
```
|
||||
yum groupinstall finnish-support
|
||||
```
|
||||
|
||||
or with KDE
|
||||
|
||||
```
|
||||
yum install kde-l10n-fi
|
||||
yum install @office @finnish-support kde-l10n-fi
|
||||
```
|
||||
|
||||
## Installing all Gnome shell extensions
|
||||
@ -170,7 +158,7 @@ yum install flash-plugin # requires Adobe Flash repository to be enabled.
|
||||
## Installing NVidia restricted drivers
|
||||
|
||||
```
|
||||
yum install kmod-nvidia # requires RPM Fusion
|
||||
yum install akmod-nvidia kmod-nvidia # requires RPM Fusion
|
||||
```
|
||||
|
||||
## Installing (restricted?) miscellaneous things
|
||||
|
Loading…
x
Reference in New Issue
Block a user